Update: ROBLOX has actually added a way to get proper unix time natively! The os.time
function will return proper UNIX time in UTC.
There are two time functions in ROBLOX.
tick
returns the current server time in "Unix Time Format". It is not proper Unix time. It's a very large number, and this number is affected by timezones as servers in ROBLOX are misconfigured and return the wrong time, based on the timezone that they are in.
You can divide this number out and get the current time, then compensate for timezones by adding up to 12 or subtracting up to 11. This number could be slightly different on the client than on the server, as it queries the operating system for the time, and is not synchronized across the network.
time
is a function in ROBLOX that returns the game time. This is the number of seconds that the server has been running, and is synchronized across the network, meaning it will be the same in local scripts as it is in server scripts. If you are doing anything that doesn't require accurate real-life time or saving it outside of the game instance, then this is the preferred method.
How to get proper UNIX time
If you would like to get the proper, true UNIX time that is not affected by timezones, you will have to use HttpService. I have set up a resource URL here, free to anyone to use:
http://scriptinghelpers.org/resources/unix_time
You can use this code to retrieve the proper UNIX time:
2 | local http = game:GetService( "HttpService" ) |
3 | if not http.HttpEnabled then |
4 | error 'Please enable HttpService' |
7 | return tonumber (time_str) |
This function will return nil/false if there is an error.
Here is another version which should be faster on all subsequent calls:
02 | local http = game:GetService( "HttpService" ) |
03 | if not _G.__cache_time then |
04 | if not http.HttpEnabled then |
05 | error 'Please enable HttpService' |
08 | if not tonumber (time_str) then |
09 | error ( "An error occurred while fetching the time" ) |
11 | _G.__cache_time = tonumber (time_str) |
12 | _G.__fetched_time = tick() |
14 | local cache = _G.__cache_time |
15 | local fetched = _G.__fetched_time |
17 | return (tick() - fetched) + cache |
This answer has been updated as the information on the ROBLOX Wiki Article was actually wrong, and the tick
function does, in fact, not return proper unix time.
Locked by adark and Articulating
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?