xxxxxxxxxx
local Table = {"Hello", 1234, "Whatever"}
for i, Entry in pairs(Table) do
print(i)
print(Entry)
end
--> 1
--> Hello
--> 2
--> 1234
--> 3
--> Whatever
xxxxxxxxxx
while wait() do
print("Looping...") -- This Will Loop
wait() -- Make Sure The Script Doesnt Crash
end)
-- Another Method
while true do
print("Looping...") -- This Will Loop
wait() -- Make Sure The Script Doesnt Crash
end)