Please help me this is my simple code :`using UnityEngine;
using System.Collections;
public class PlayerMovement : MonoBehaviour {
public float moveSpeed;
private Vector3 input;
void Start () {
}
void Update () {
Input = new Vector3(Input.GetAxis ("Horizontal"),0, Input.GetAxis ("Vertical"));
print (input);
}
}
`
ANd i get the The left-hand side of an assignment must be a variable, a property or an indexer Error Please Help!