error CS0117: `Time' does not contain a definition for `deltaTime'

when I created an other object with the name Time it gave me these errors:

error CS0117: `Time' does not contain a definition for `deltaTime'

first it worked. but after that I couldn’t get it working again.

It would be nice if somebody could help me out!

thanks,

Of course it wont work. It will be trying to call your decleration of Time. Either rename your decleration of Time or use UnityEngine.Time.deltaTime

Good Luck