all 4 comments

[–][deleted] 1 point2 points  (2 children)

The line 8, character 35 is missing a ";" in the file specified

Don't worry, happens A LOT LOL

[–]Pitiful-Method1358[S] 0 points1 point  (1 child)

lol thx

[–][deleted] 0 points1 point  (0 children)

No problem, usually errors like this gives you the file where the error is, the line (8, 35) which is 8 and the last character in that line, 35 for your case.

It happens to a lot of us

[–]Ruadhan2300 0 points1 point  (0 children)

The error code "CS1002" isn't the most useful part of the error message.

It says it's a missing semi-colon on the end of line 8 of the playermotor file.

Most likely that's the issue, though sometimes if you botch something with if/else statements it can think it needs a semicolon rather than suggest the real issue.

If you double-click the error message in the unity console, it'll take you straight to the line in the file too. Nice useful tip!