‘moveHorizontal’ and ‘moveVertical’ are never declared. You can just add ‘float’ at the front of lines 17 and 18 to fix the problem.
float moveHorizontal = Input.GetAxis("Horizontal");
float moveVertical = Input.GetAxis("Vertical");
Note for futures posts, don’t post an image of your code. Instead past a copy of the code into the question, select your code, and use the 101/010 button to format the code.