How to move a group of sprites?

I am trying to make a town game where people move in the background, I added a timer to spawn people and add them inside a group, but I didn’t find how to move it except with a tween. but in order for all people to move I have to put the tween in the update but when I try to stop the tween it won’t stop because tweens are created in the update. so is there a way to move the group’s children without a tween, or is there a better way to do this without groups. I read about containers but I can’t change the people’s animation like in groups with group.playAnimation().
I’m sorry about bad english :slight_smile:

Add a tween, only once, that moves multiple targets.

Or use IncX() etc.

1 Like

thanks a lot, I used IncX()