Tweenservice pausing/changing values

Hello again forum, today’s question is what if i need to change tweening speed - what should i do?

• Is there way to change values nonstop?
• Is there way to pause and change values?
• If I need to fire new tweenservice, How can I cancel current tweenservice and keep part in final position?

There is a little bit about pausing tweens in here: Tween | Documentation - Roblox Creator Hub

However as i understand this is not that pause i need because it does not let me to change tweenvalues.

TweenService does not let you change variables for a tween once it has been created. If you wish to change the tween variables, you can pause the tween and then create a new tween with any modified values.

Okay, thanks. But what about tween resets position. It just don’t let me to use part in that position, that i want.

Stop will reset the position, Pause should keep the part in the position it was in at the time of the method call.