is this a bug?

I am trying to make this realy simple score counter, but I have a problem, when the score moves to the line under every time the score gets to 3000, 4000, 5000 (etc) untill it gets to 10000 when the score stays on the wrong line

I used this code (javascript):

static var SCORE = 0;
var CustomGUI : GUISkin;

function OnGUI () {

GUI.skin = CustomGUI;

GUI.Label (Rect (10, 10,100, 100), "Score: " + SCORE);
}

is it a bug or am I doing it wrong:face_with_spiral_eyes:

thanks in advance:)

Make your label wider.

–Eric

Thanks:)