xxxxxxxxxx
repeat
someThing()
someOtherThing()
until not c
xxxxxxxxxx
--// Basic while true do loop
while true do
--// Looped text
print("Looped Text")
--// Time the loop waits before looping again
wait(1)
end
xxxxxxxxxx
local can_do = true
local countdown = 0.85 --you can choose whatever you want
while can_do do
--here your code
wait(countdown)