repeat
is never used? Where are you getting this from?
imo it IS used
pretty much, people dont usually use it since While can do the same thing
I also don’t usually see people use it in code except those rare cases
Variable = true
repeat wait()
print("p")
until Variable == false
while Variable == true do
wait()
print("p")
end
Honestly, I do use it sometimes. It depends on how I’m thinking as I’m typing out the code.
Either way, they are loops no matter what, they do the same thing. loop. repeat
is the least used , while for
, and while
are used frequently.