I see my cursor at the screen when I test my game.

Hello. I’m new to Unity and the Forum.
I want to make a FPS game. I have all the required assets, and I’m set my environment.
But when I test the game, I see my cursor in the screen.
How I fix it?
(I’m sorry for bad English.)

I can’t find this script in Unity. How I add this script?
Edit: I added the script, but I’m receiving this error.

You might of already figured this out, but the name of your script is Cursor. If you just copy pasted that script, then you need to change the class name to match the file name:

using UnityEngine;
using System.Collections;

public class Cursor : MonoBehaviour
{//-------------^
    // Use this for initialization
    void Start()
    {
        //Set Cursor to not be visible
        Cursor.visible = false;
    }
}