Answers for "roblox lua untill this do"

Lua
5

loop true childs roblox

for i,v in pairs(game.Players:GetChildren()) do
-- v is your player
end
Posted by: Guest on August-09-2020
4

for loop roblox

for i,v in pairs() do

end

-- or

for i,v in next,  do

end
Posted by: Guest on January-25-2021
0

how to loop something in roblox

while true do	print("Looping...")	wait(0.5)end
Posted by: Guest on November-18-2020

Browse Popular Code Answers by Language