local function TimeFormat(Time)
local Round = math.round
local Hours = Round(Time / 3600)
local Minutes = Round((Time / 60) % 60)
local Seconds = Round(Time % 60)
return ('%d:%d:%d'):format(Hours, Minutes, Seconds)
end
Example: When it’s at 0:13:30, it turns into 0:14:30, and I’m not sure why it does that, it shouldn’t.
I’ve been trying to find a solution but none of them seem to explain my issue.