GUI.Label not working / Showing up at all [Walker Boys]

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?

It might be that you didn’t capitalize OnGUI properly.

@clxyeah: the OnGui() should be OnGUI(). Hope that helps.