I put an aspect ratio on my gui for the first time and decided to start attempting to work with it. When I went over to trying to tween it, no changes were made, and I am unsure why. Any help would be greatly appreciated
No errors were shown in the output also.
My code -
local button = script.Parent
local Frame = script.Parent.Parent.Frame
script.Parent.MouseButton1Click:Connect(function()
Frame:TweenSize(
UDim2.new(0.215 , 0 , 0.2 , 0),
Enum.EasingDirection.Out,
Enum.EasingStyle.Bounce,
0.5,
true
)
end)