Anyone know how to pause temporarily from script then continue in like a few seconds?
Hope this helps!
stop() // stops/pauses
// the stopframe to work your frames must be 12 fps otherwise it wont work
this.frames = 0; // how many frames you have to wait
this.stopframe = 12; // 12 - 1 second, 24 - 2 seconds, 36 - 3 seconds (more seconds, you have to multiply by 12, or your fps)
this.eplaying = false // if its enabled
this.frames += 1
if (this.frames === this.stopframe) {
play()
}
make sure you put this part…
… in the update tab.
Alright makes sense but wouldnt that move me to 1 then move throught till it hits 12 then play?