#Guys how do I make each loop of a For loop wait 1 second before starting the next?
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
So my script shoots a projectile, I want it to shoot 3 projectiles using a for loop but with a 1 second delay in between.I know how to make the for loop, but how do I make it wait before the next projectile is shot?
you want a Coroutine
Coroutines are for times when you want to want to wait for things / not "instantly" run code yes
if you google Coroutine "waiting for seconds" im sure you will find some help
Thanks I will try