How to get system time?

Is there anyway i can get the time of day from the system, and if so how?

Yes:

DateTime.Now

For this to work, you need to have the namespace that provides DateTime available. There's a few options. You could use the fully qualified class name which includes the namespace. So that would be:

System.DateTime.Now

Or, at the beginning of your file, you could add a using directive:

C#

using System;

UnityScript/JavaScript:

import System;

For full documentation of DateTime, see API documentation of DateTime on MSDN