of     1   

LuaCymru
#228338732Saturday, December 02, 2017 6:57 PM GMT

Can somone script a timer that will count up (which includes numbers to 2 decimal places) I've tried this but it will not count accurately
TheCaptainTeach
#228338814Saturday, December 02, 2017 6:58 PM GMT

while wait(1) do ######################### = ######################### + 2 end
Aliics
#228338971Saturday, December 02, 2017 7:00 PM GMT

startTime = tick(); while (wait()) do local _lapsed = startTime - tick(); print(_lapsed); end -- I dunno, something like this?
BeatableChicken
#228343312Saturday, December 02, 2017 8:22 PM GMT

import time seconds = 0 while True: time.sleep(1) seconds +=1 print(seconds) # tested and works
BeatableChicken
#228343743Saturday, December 02, 2017 8:32 PM GMT

if you want the 2 decimals you can do something like this import time seconds = 0 while True: time.sleep(.01) seconds += .01 print(seconds)
128Gigabytes
#228343868Saturday, December 02, 2017 8:35 PM GMT

import time start = time.time() while True: print(round((time.time() - start) * 100) / 100)

    of     1