I've been working on this game for 1 week. And now I have a problem with repeat until. My code is like this:
while true do wait(10) ***
repeat wait() until game.Workspace.Events.END.Event end
And it just ignored the loop. What happened!?
Because it's already exists.
Repeat loops until the condition is truthy. Your condition was truthy, so it "skipped" the loop.