This version of Unity is unsupported.

GUISkin.button

Switch to Manual
public GUIStyle button;

Description

Style used by default for GUI.Button controls.

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the button style of the current GUISkin

GUIStyle style;

void OnGUI() { GUI.skin.box = style; GUILayout.Button("This is a button."); } }