Hello, I would like to create a live clock that will show the current time in EST in all game servers. It would also be good if the timer is not influenced by a players fps.
Down below is my attempt of trying to do it. The timer functions, but I believe that it only shows the time in EST because I am located in that timezone.
while true do
local timer = script.Parent
local unixTime = os.time()
local unixFormat = "%I:%M:%S %p EST"
local result = os.date(unixFormat, unixTime)
timer.Text = result
wait(1)
end
No, unfortunately I’m fairly new to scripting (1 - 2 months experience) and I’ve just been creating small projects. I’ve yet to encounter having to use Localization Service. Can I have some help on how it is done?