Changing font on numbers?

I have a score system in my game on the top left corner, but I cannot seem to change the font or side of it. Code looks like this:

function OnGUI()
{
GUI.color = Color.red;
GUI.Label(Rect(30,10,100,20),“Score :”+score);
GUI.Label(Rect(30,25,100,35),“Time :”+gameTime);

}

I also tried adding texture but the whole thing gets replaced by the texture and does not show the numbers :frowning:

Please help!
Thank you
Belal

Sorry just realized I posted this earlier before going to bed. I dont know how to delete posts

Dynamic scaling of fonts doesn’t always work. You can set a GUI.Style and use that to change font sizes. That’s what I had to do for my Android game.