i am a newer for unity, and this is my first project with the problems of first person controller.
when i started with a project from tutorial, building a cube (x=100, y=1, z=100), than i delete main camera in Hierarchy. i put first person controller into scene view, on the cube, and want to see what happened. in game view, i could not move, look around, or jump. there is an error below
"NullReferenceException: Object reference not set to an instance of an object
FirstPersonControl.Update () (at Assets/Standard Assets (Mobile)/Scripts/FirstPersonControl.js:64)"
i don't know what happen, it is just a simplest project.
It means that a in line 64 of the FirstPersonControl script you have an unassigned variable. I don't know what's in line 64, but maybe you could post the code. (not the whole script, just the relevant parts)
As a quick check you could look at the inspector for the FirstPersonControl script and see if there are any variables set to "none".
You're using the (Mobile) assets and that's probably not what you want just now. Try Standard Assets / Character Controllers / First Person Controller and everything should work okay. :)
The standard First Person Controller prefab actually requires several parts--a Character Controller physics component, a Character Motor script, and an FPSInputController script. It's often used with an optional Mouse Look script. The prefab comes packed with everything so you can see how it works... then transfer the parts you need over to the GameObject you actually wanted to control.