Can't move character and nothing's working after reopening unity?

Everything was fine before closing unity the next day i try to open unity no error in console and the character not moving at all i tried to add an other fps controller and was able to look around with mouse but the keyboard inputs with wsad didn’t work at all…

Does anyone having any idea?>

  1. Check tags. Your moving script may be looking for object with tag “Player” but your tag has been reset somehow.
  2. Use Debug.Log ("some message") to check if script does work and there’re variables actually changing when you press WASD.
  3. If the script uses CrossplatformInputManagerto get inputs, try to use direct keyboard inputs instead. if (Input.GetKey (KeyCode.W)) //move forward code.