How to Tween instances from Specified Time? (Playing Tween In Middle of Progress)

Hello, fellow developers! :wave:
I’m recently working on the project which uses a lot of tween, but I just don’t know how do I tween instances from specified time, such as:

image

As you can see, this is a EasingStyle.Sine, EasingDirection.InOut.
What I want to do is playing from t=0.5 (which is middle of tween progress) and ending at t=1.
Do you have any ideas for it? thanks in advance!

I’m not sure what you want to do, but I think you want one of these two things.

  1. You only want the “Out” tween animation

There’s 3 times of tween animation, In, Out and InOut. Out should do

  1. You want the first 0.5s to be inactive and then start with the Out/InOut animation

A simple wait(0.5) should do