I am trying to figure out how to loop a group of lines. Help?

5 answers

while true do
(code here)
end
Thanks. Im assuming if i use wait(integar) it would make a wait between looping? yes?
That is correct, wait() is the smallest you can do, it is not recommended as it is poorly optimized and can cause crashes or bugs
Depends on what ur programming, u can use different methods for looping code such as while wait do
well if you want full optimization do
while wait do
wait()
end
end