Unity Tutorials w/ mono

I’m following the tutorial on Roll A Ball, and i set up everything until the scripts came along it went down hill.

I’m following the video to a T, rewinding to make sure I have caught everything yet I don’t know what I’m doing wrong.

Here is the code so far.

using UnityEngine;
using System.Collections;

publicclass PlayerController : MonoBehaviour {

//Usethisfor initialization
void Start (){

}

//Updateiscalledonceper frame
void FixedUpdate (){

float moveHorizontal = Input.GetAxis (“Horizontal”);
float moveVertical = Input.GetAxes (“Vertical”);

}
}

Under most of them such as Input i get an error stating that Input does not exist. I also cant use the Ctrl Method to search up on unity key words. Help would be awesome.

“FIXED” by reinstalling unity and removing my IDE to allow unity to install its own version.

You spelt axis incorrectly on the moveVertical variable. Check out my signature for interactive tutorials and Codey’s Lab, an interactive coding platform that teaches you to code and runs directly inside the editor

Here is some info for Codey’s Lab below: