#why wait not work
1 messages · Page 1 of 1 (latest)
There shouldn't be any issues based on the block shown here. Are you sure it's actually looping?
@opal knoll
It looks like it's waiting for about a second before it goes to "doing5"
Doesn't look like the wait was skipped
well its a second, not 4, so clearly something's wrong
Could you send the entire script?
dont mind the nesting 
anyways, tell me what you can, i gotta leave
Hmm.. the only thing I can think of is that the MainEvent remote is being called repeatedly and causing unpredictable behavior
Try making a debounce for it so that, if a scenario is already playing, it can't play another one temporarily
How wait cant be working
** You are now Level 13! **
The only issue that i can see is OnClientEvent spam so it looks like that task.wait not working
MainEvent is being called repeatedly, you can fix this by adding a debounce
create a global variable debounce = false
then put if debounce == true then return end debounce = true
i... dont get it...
do you know what debounce is