To make coordination easier, I am deciding to use UTC (Universal Coordinated Time) among my group. What I want do do is make a clock inside of the game that reads UCT. Is there any way I can get that time inside of a game?
I tried what Articulating said in the comments -- using os.time() I actually managed to create a working script that finds the UCT with os.time()
For future reference, here are the algorithms for calculating the time with os.time(), assuming that Time = os.time()
math.floor((Time%86400)/3600) Calculates the hours after midnight, UCT, 24 hour format. math.floor((Time%3600)/60) Calculates the minutes after the hour. Time%60 Calculates the seconds after the minute.