how to make a script loop on 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: loop true childs roblox
for i,v in pairs(game.Players:GetChildren()) do
-- v is your player
end