Assets\Scripts\Player.cs(16,43): error CS1002: ; expected

  1. use code tags:
    Using code tags properly

  2. read your error, it says a line number (16) and what is expected (you’re missing a semi-colon)

look.x += Input.GetAxis("Mouse X")

No semi-colon.

Same for the next line.

Start is also mispelled as ‘start’, but that won’t cause it to not compile. That’ll just make it not get called by Unity.

2 Likes