is it possible to make GUI text a link to a new scene? If so what's the script

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 :slight_smile: