I have sprites spawning off screen and coming on screen at the player.
The event is basic and looks like this EveryTick >Sprite1> MoveForward -4 Pixels.
Then another event that creates them off screen Every 1 Second>Spawner>Create Object>Sprite1.
Works great every 1 second it spawns the sprite and the sprite moves through the screen.
I get into the pause function, On Key Pressed >P>Set Time Scale 0.
The spawning event stops spawning which is great, the player stops moving, but the Sprite1's that were already spawned keep on whizzing by. After looking through the forums I found a semi solution which is to put a bullet behavior on the sprites and get rid of the EveryTick event. If that is the best way to go about it I can change that. Just wondering if I'm missing something or if anyone happens to know why timescale would stop a bullet behavior, but not a system event, if that makes sense.