Citizen.Wait is Weird

Hello, so the problem is when i use citizen.wait(x) idk why but it wait 2 times X.
Example:

Citizen.Wait(5000)
print("wait is finished")

It will print 10 seconds later but normally it shuld print only 5 seconds later. I think you understand what i mean so someone can tell me why ?

You might have another wait in the thread. What’s the whole script…

1 Like

Thx i was having a Wait(0) and not Citizen.Wait(0) so it was pause whole script.