Is it possible to convert os.time() to a specific time zone for example : Central Daylight Time? (GMT-5)
You are able to get the UTC time with this
local time = os.date("!*t",os.time()) --UTC Time
You can add time to this to sync it with different timezones.