I'm doing the Roll-A-Ball tutorial and I entered the Player Controller script exactly as the tutorial has it, but I put mine in Unitron and errors are occurring that I don't know how to fix.

[18091-screen+shot+2013-11-11+at+8.34.17+am.png|18091]

You need to add some Vector to your Vector3

Vector3(x,y,z)

Looking at it, you’ve simply dropped the wrong word into the function, putting in the Type rather than the actual variable you’ve created of that type.

On line 14 of your script you should add your variable “movement” instead of the type “Vector3”:

rigidbody.AddForce(movement);