--// Basic while true do loop
while true do
--// Looped text
print("Looped Text")
--// Time the loop waits before looping again
wait(1)
end
local can_do = true
local countdown = 0.85 --you can choose whatever you want
while can_do do
--here your code
wait(countdown)
while i < n do
print(i^2) -- Same here
i = i+1 --Stick your own here
end
Open while loops can potentially crash your program so be careful!