Okay, so, I'm writing a plugin that does some stuff, and I want to make it so when it's done loading, it says "PluginName loaded! Time loaded: ", but i can't figure out how to get the time. I know it has something to do with tick(), and i know it's possible because I've seen someone do it before. Does anybody know how?
Okay, I kind of ripped this script off of Kohltastrophe, but if you use this script in a LocalScript it should give local time, otherwise it will give time in Central time.
1 | hour = math.floor((tick()% 86400 )/ 3600 ) |
2 | minute = math.floor(((tick()% 86400 )/ 3600 -math.floor((tick()% 86400 )/ 3600 ))* 60 ) |
3 | if minute< 10 then minute = "0" ..minute end |
Long math equation isn't it?