GUI.Label Scale

Hi, I want to scale Gui label, wich will make scaling on every resolution
C#

			GUI.Label (new Rect(30, 10, 100, 40), "" + Mathf.CeilToInt(Speed));

i searched but couldn’t find the method that works

You can do this:

GUI.DrawTexture(new Rect(0, 0, Screen.width, Screen.height), aTexture);