#Why doesn't for loop wait
8 messages · Page 1 of 1 (latest)
Never really understood this type of for loop, https://create.roblox.com/docs/education/coding-4/intro-to-for-loops
it's just for when you are not dealing with a table
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