Bounce Animation on Dynamic Island

Please take a look at this Animation.

I’m talking about the island being extended in a bouncy and smooth way for this topic, which you can see when I closed the app in order to let it show on the top.

Instead of extending a button in Roblox (using TweenService of course, I’m aware that’s the only way to animate this), I want to make it bounce like that to the side as in Position.
The EasingStyle Bounce and Back do not help me as they don’t stop smoothly.

Example shown here:
https://gyazo.com/02dde1c0b93af7b20eb07d69abbf2db9
The “leave” button does bounce a little using Back as the EasingStyle but not smoothly, it just stops without slowing down at the end, minor thing yeah but a big deal for me.

Script:

tweenService:Create(prompts.hubPrompts.error.leave, TweenInfo.new(.6, Enum.EasingStyle.Back, Enum.EasingDirection.Out, 0, false, 0), {Position = UDim2.new(0.487, 0, 0.836, 0)}):Play()
task.wait(.05)
tweenService:Create(prompts.hubPrompts.error.rejoin, TweenInfo.new(.6, Enum.EasingStyle.Back, Enum.EasingDirection.Out, 0, false, 0), {Position = UDim2.new(0.693, 0, 0.836, 0)}):Play()

you should try elastic, it’s bouncy and smooth as far as i am aware.