How can I add smooth gui animations

https://gyazo.com/67f243997edfadff7c06799b4292cf57

This link shows a video on how my animation is weird and choppy, I have the animation but I want to know how to make it so it’s smooth and not when I have to put a while true loop to loop through every indvidual frame

1 Like

This can help you i think.

[TweenService | Documentation - Roblox Creator Hub]
(Tweens)

GuiObject:TweenPosition(UDim2.new(XX, XY, YX, YY), EasingStyle, EasingDirection)

Example, connected to a hover event:

ButtonObject.MouseEnter:Connect(function()
    GuiObject:TweenPosition(UDim2.new(0.5,0,0.5,0), Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
end)

Ik what tween service is it’s just in some games they have this little animated character that is smoothly animated I just want to know how to do something like that

1 Like

I want something like this
https://gyazo.com/760a81f06ab19094d68b112a426e5256

1 Like