If you were to use repeat wait() until, you would do it like:
repeat
-wait()
-code
until [condition statement here]
However, repeat until is not recommended unless you're making the code loop until a certain event happens. Instead, use:
while wait() do
-code
end
OR
while true do
-wait()
-code
end |