how to repeat a script roblox code example
Example 1: repeating loop roblox
while true do
-- Your script here
-- Every loop needs a wait increment, or your game might crash
wait(1)
end
Example 2: how to loop something in roblox
while true do print("Looping...") wait(0.5)end