This version of Unity is unsupported.

GUIStyle.none

Switch to Manual
public static GUIStyle none;

Description

Shortcut for an empty GUIStyle.

This style contains no decoration and just renders everything in the default font.

using UnityEngine;

public class Example : MonoBehaviour { void OnGUI() { // Make a button with no decoration GUI.Button(new Rect(0, 0, 250, 100), "Basic Button", GUIStyle.none); } }