Hello,
I have a timer that has a millisecond display on it. My milliseconds however take more than 1 second to make a second. I am not sure why, if anyone could assist me that would be greatly appreciated.
local milli = 00 while true do local passed = wait() milli = milli + math.ceil(passed) end