EDIT: Solved.
I want a GUI in my game that just says “Press ‘R’ to Restart”. I don’t need it to pup-up at a specific time or to be clickable, I just need it to be consistently in the top right corner.
This is all I have:
function OnGUI ()
{
GUI.Label (Rect (25, 25, 100, 30), "Label");
}
I got this from this page: Unity - Manual: Controls
Later on I will have it so that you can’t see it in the main menu and such, but until then I just want a working GUI.