I’m creating a bindableevent in another script and then I’m waiting for it to exist in another script, but the problem is I think it’s firing to fast and the listening is being setup before, anyways to solve this?
1 Like
If the event is being fired before the handler is attached, then you can either use instance attribute or a BoolValue that indicates that this event was already fired.
2 Likes
Yeah what I did is I ended up just doing a task.delay
with a wait time of .1 seconds
and this seems to work and the event didnt really have to fire instantly
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.