[SOLVED]I need help with this GUI.

Hi, How can i make something that looks like this without the Box and stuff.
Rust

this is what i have done.(I know it’s pathetic)

#pragma strict

function OnGUI () {
	if (GUI.Button (Rect (10,10,150,100), "Play Multiplayer")) {
		print ("Clicked Play Multiplayer");
	}
	
}

use GUIStyle
1st you create a public GUIStyle varible (named myStyle for example),
2nd you add your style to your button (or box)

if (GUI.Button (Rect (10,10,150,100), "Play Multiplayer",myStyle)) {
       print ("Clicked Play Multiplayer");
    }

3rd you go to the inspector and play with your style background, if you keep it empty then you will only see your text without the box, GUIs are a bit complicated in the beginning so feel free to ask if you found any difficulties