To check if your gui text was clicked on Unity - Scripting API: GUIElement.HitTest
and to change the level
Unity - Scripting API: Application.LoadLevel
if (guiText.HitTest(Input.mousePosition))
Application.LoadLevel("YourSceneName");
However, do read up on the documentation ![]()