Time.realtimeSinceStartup

Hi guys
Can anyone tell me why this is not working i try it with a double variable and the same happend

coding problems should go on Scripting session.

Ok, first:
Change thisTime.time.realtimeSinceStartup
To thisTime.realtimeSinceStartup
Second:
If you created a variable named Time, be aware that this word is already in use by UnityEngine! So you should do this:

this.Time.text = UnityEngine.Time.realtimeSinceStartup;

Hope this helps.

Thank you