Cropped Label Problem - Big Font - Unity3D

i get this problem:

i get this problem:

The text in the label is cropped.

This is my code:

public var MenuSkin:GUISkin;

function OnGUI () {
GUI.skin = MenuSkin;
GUI.skin.font = myfont;
GUI.Label ( new Rect (Screen.width-310,Screen.height/2,300,50), "Number is 16");
}

The label is cropped. How do i fix it without changing the font because i need bigger font. Thank you …

Your rect is based on screen size, which will change for different people, and will sometimes cause clipping. Either set it to a fixed size, or make it big enough that it will fit in any screen size.