Main Menu don't disappear

Hi,

I have a simple script to the main menu. What changed to make the menu disappear when I press “start game”?

var areaHeight : float= 200;
 var areaWidth : float= 200;
 var layoutCenter : float = 100;
 var firstLevel : String = "First";
 var buttonSpacing : float = 25;
 var customSkin : GUISkin;
 var layoutStyle : GUIStyle;
 var textureTop : Texture2D;
 function OnGUI(){
 GUI.skin = customSkin;
 GUILayout.BeginArea(Rect(Screen.width/2-areaWidth/2,Screen.height/2-areaHeight/2,areaWidth,areaHeight),layoutStyle); GUILayout.Space(25);
 GUILayout.Label(textureTop); GUILayout.Space(buttonSpacing); if(GUILayout.Button("Start Game")){ Application.LoadLevel(3);
 }
 GUILayout.Space(buttonSpacing);
 if(GUILayout.Button("Quit")){
 Application.Quit();
 }
 GUILayout.EndArea();
 }

If your script exists in your level 3… simply remove it from this level.

If you use DontDestroyOnLoad on it you can try to

enabled = false;

on it.