Assets\player_movement.cs(26,20): error CS1002: ; expected does anybody know how to fix this

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PlayerMovement : MonoBehaviour
{
public float MovementSpeed = 1;
public void Start()
{

}

public void Update()
{
Var movement = input.GetAxis(“Horizontal”);
transform.position += new Vector3(movement,0,0) * Time.deltaTime * MovementSpeed;
}
}

6568612–744712–PlayerMovement.cs (409 Bytes)

The error does not reference this script. Do you have a script named player_movement.cs?

oh wait i still had my old script in the files thx

yw