Mouse Issue

When I press play from my game my mouse is hidden and does not show on the screen. All i am using is the first person controler that comes with unity. How do i make it so my mouse shows?

The global Screen object has a property called showCursor. This is a boolean valued property. When set to true, the cursor is shown. When set to false, the cursor is hidden. It sounds like the property is false and you want to set it to be true.

See:

http://unity3d.com/support/documentation/ScriptReference/Screen-showCursor.html