GUI Menu Display Help

I am trying to create a simple GUI starting menu with buttons for “Start Game”, “Help”, and “Quit”. The start game button is working-
if (GUI.Button (Rect (20,40,80,20), “Play”)) {
Application.LoadLevel (1);
}
However I want to display a text box with tips when the help button is clicked and I can’t seem to get that to work. I can get all three buttons to display I just can’t get the help one to display text on the screen or the quit button to quit the application.

Ok so did you add ur help scene so when you click the button “Help” it will load another scene if you haven’t just do the same coding as the play button but just put Application.LoadLevel(2);

Now for your quit button just type Application.Quit; and that should work. Hope I helped you.

Quit button doesn’t work in editor. it only works in a build. and for the help button. try activating a text box. or gameobject that contains the help advice