#Why doesn't for loop wait

8 messages · Page 1 of 1 (latest)

cerulean drift
#
for i = 15,0,1 do
  print("ende")
  wait(1)
end
``` Try this?
snow ridge
#

but just want to deal with a range

#

example timers

#
local startTime = 15

for currTime = 15, 0, -1 do
  task.wait(1)
  currTime -= 1
  print(currTime)
  
end
wind stag
#

no i want it to wait 15 seconds and then print

#

thanks tho i fixed it