📅  最后修改于: 2022-03-11 14:54:55.987000             🧑  作者: Mango
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)