I have two issues that I hope I can get help with.
First is, I’m missing Debug.Log for some reason, it also pops an error up if I attempt to run the game.
I’m using the tutorial - Simple Clock which uses DateTime but to make a reference to DateTime I have to use System.DateTime, is this right as the tutorial shows different?
You need to import System in order to use classes from it. At the top of your script add: using System;
Also, statements like a Debug.Log call have to be inside a method. They can’t just be in the class, at the same level as the field/property declarations and methods. They need to be inside a method (for example, the Update() method).