is there any kind of GUI tutorial

I’d like to learn how to make buttons etc that would open up scenes etc.

function OnGUI () {
	if (GUI.Button(Rect(10,10,100,50),"Press me")) {
		Application.LoadLevel(0);
	}
}

Also check out the GUI scripting guide: http://unity3d.com/support/documentation/Components/GUI%20Scripting%20Guide.html

cheers mate~

I found Nicholas’ presentation from unite 07 quite useful:
http://unity3d.com/support/resources/unite-presentations/in-game-gui-made-easy

And quite some stuff which Shaun has posted on the forum.