Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- local myTime = os.time()
- local hour = math.floor(myTime)
- local minute = myTime - hour
- if ( hour > 12 ) then hour = hour - 1 end
- minute = math.floor(minute * 60)
- print(hour ..":"..minute)
- os.sleep(60)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement