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
Please help!
Thank you
Belal
Sorry just realized I posted this earlier before going to bed. I dont know how to delete posts