I was starting to understand Unity creating a video game, until this error just popped up, if know what happen and the solution, please let me know. 
The error is clearly telling you that the error is on line 18 (the first number in the brackets), and if you look at that line you should be able to see that you have typed something wrong. float InputMovimiento = Input GetAxis("Horizontal");
You have put a space between Input and GetAxis instead of putting a .
You need to type everything 100% correct.
In future, please do not post images of your code - use the code tags that are part of the forum. Otherwise people responding have to type everything out again just to help you.
1 Like

