I am doing the first Lab Game and am up to the point where i make the score and the timer gui.
This is my function :
function OnGui()
{
GUI.Label(Rect(10,10,100,20),"Score : " + score);
GUI.Label(Rect(10,25,100,35),“Time” + gameTime);
}
It looks like the one straight from the video? Whats wrong?