Code not moving past repeat until section

I have created a dialogue system so far that works perfectly fine :>
It all runs smoothly, but doesn’t actually run anything past it, even though I swear it should have ran past the until. I’ve gotten no errors either…

Code:


1 Like

next takes two parameters, a table and an index. You’re only passing one, a table, implicitly making the 2nd parameter nil.

To fix it, read up on next online to see how to use it.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.