(Solved) Apply different tween to multiple same objects

Is it possible to tween multiple same objects to different positions?

Like this…?

EDIT PART
Read what Keith wrote below
I did understand your question wrongly
What i wrote was for multiple tweens to single object
Where you ask for multiple objects running tweens at the same time

Multiple tweens on single object

You can tween X and Y position at the same time
Where all you need to do is not give tweens same identifiers which are names on end in double quotes

Then idk if you care to do cascade effect or just tween from position A to B

If its cascade
Like your image imply that it will change position 3 times
Then you can have one event to run 1st tweens
And then event to run same tweens if they already played
There is condition to check if tween finished playing so you would use that and play same tween again

2 Likes

You can use the same identifier for different instances and objects. If you use the same identifier for an object that already has a tween with that identifier then it replaces the previous tween.

Here’s an example that uses a local variable to spread them out.

ScreenRecorderProject49

This might be closer. It doesn’t move the first object

ScreenRecorderProject50

Edit: I’m still unclear if you want multiple objects or multiple positions for the same object.

4 Likes

Multiple positions for the same objects :smiling_face:. This is perfect! thank you!

1 Like

Thank you, too @ZeroX4! :smiling_face: