We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Not sure you're still maintaining this repo but I'm using it and found this issue. This code:
t = tick.delay(function() print("cat") end, 1) :after(function() print("dog") end, 1) t:stop()
seems to cause t:stop() to fail and t to be executed anyways.
t:stop()
t
Thanks!
The text was updated successfully, but these errors were encountered:
This syntax solves the issue
t = tick.delay(function() print("cat") end, 1) t:after(function() print("dog") end, 1) t:stop()
Sorry, something went wrong.
No branches or pull requests
Hi! Not sure you're still maintaining this repo but I'm using it and found this issue.
This code:
seems to cause
t:stop()
to fail andt
to be executed anyways.Thanks!
The text was updated successfully, but these errors were encountered: