So if you move the mouse fast over the gui the frame that tweens stays on the same spot when the mouse leaves why?
script.Parent.ButtonsHolder.Shop.MouseEnter:connect(function() wait(0.01) script.Parent.ButtonsHolder.Shop.Frame:TweenPosition(UDim2.new(0, 100,0, 10),"Out", "Bounce", 0.2) end) script.Parent.ButtonsHolder.Shop.MouseLeave:connect(function() wait(0.01) script.Parent.ButtonsHolder.Shop.Frame:TweenPosition(UDim2.new(0, 0,0, 10),"InOut", "Quad", 0.2) end)
Hey ObStactionD3stroy4r,
local gui = script.Parent; gui:TweenPosition(UDim2.new(0, 0.05, 0, 0.1), Enum.EasingDirection.In, Enum.EasingStyle.Linear, 2, true); gui:TweenSize(UDim2.new(0, 0.2, 0, 0.3), Enum.EasingDirection.In, Enum.EasingStyle.Linear, 2, true); gui:TweenSizeAndPosition(UDim2.new(0, 0.2, 0, 0.3), UDim2.new(0, 0.05, 0, 0.1), Enum.EasingDirection.In, Enum.EasingStyle.Linear, 2, true);
~~ KingLoneCat