Is there any way to change GUI btn font?

I was just wondering if there is any way to change the font of a GUI button. Thanks!

Use a GUIStyle. You can set up the font, background image, colour, everything.

var myStyle : GUIStyle;

function OnGUI()
{
    GUILayout.Button("Click Me", myStyle);
}

Then you just set up 'myStyle' in the inspector.