I am making a Project.. The project name is Lights On, basically you need to hide with the lights off in under 1 minute and once the 1 minute is done, a monster will seek you, you will give a remaining of 3 minutes, once the 3 minutes are done you get 10 points.
I am trying to figure out how to make a gamer timer, I'd really appreciate if anyone could help me out, and I do not have a script. (idk how to script)
Game timer would be:
local timer = 60 -- Amount of seconds while timer > 0 do -- while the timer is more than 0 it will keep subtracting one every minute wait(1) -- every 1 second timer = timer - 1 -- subtract 1 from the timer end
Hope it helped!