Here is my code that attached with the game object that I want to click
void Update () {
if (Input.GetMouseButtonDown (0))
{
Application.LoadLevel("option");
}
And it seems like I can click anywhere on screen for make "Application.LoadLevel("option");" run.
How can I solve this problem?