Help with TweenService on Billboard Gui

Heres the current tweenservice script im using.

script.Parent.MouseEnter:Connect(function()
	script.Parent:TweenSize(UDim2.new(0, 65,0, 63),"In","Quad",0.5)
end)

script.Parent.MouseLeave:Connect(function()
	script.Parent:TweenSize(UDim2.new(0, 56,0, 57),"In","Quad",0.5)
end)

script.Parent.MouseButton1Click:Connect(function()
	script.Parent:TweenSize(UDim2.new(0, 56,0, 57),"In","Quad",0.5)
end)

Please help quick.

Please help quick guys. I want to continue working on the game im making.

Try put :Play() after every tweening code

script.Parent:TweenSize(UDim2.new(0, 56,0, 57),"In","Quad",0.5):Play()
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.