What to change in my script to make guiskin ?

Hello,
I have created script that shows points, it shows in game i have tested but its ugly :frowning: i would change the font and stuff but i need GUISkin
what to change in this script to make it work :smile: ?

static var points : int = 0;

var offsetY : float = 40;
var sizeX : float = 100;
var sizeY : float = 40;

function Start () {
	points = 0;
}

function OnGUI () {
	GUI.Box (new Rect (Screen.width/2-sizeX/2, offsetY, sizeX, sizeY), "Score: " + points);
}

Thanks!!

Dont worry i get it :smile:
this helped me :smile: