What do i want to achieve? A simple tween
What is the issue The Gui only tweens once
local frame = script.Parent.Parent.Menu
local button = script.Parent
local TweenService = game:GetService('TweenService')
button.MouseButton1Click:Connect(function()
frame.Visible = true
frame:TweenPosition(UDim2.new(0.289, 0,0.217, 0), "Out", "Quad", 0.25, true)
frame.Outline:TweenPosition(UDim2.new(0.056, 0,0.078, 0), "Out", "Quad", 0.25, true)
frame.Close:TweenPosition(UDim2.new(0.944, 0,-0.072, 0), "Out", "Quad", 0.25, true)
frame:TweenSize(UDim2.new(0.423, 0,0.567, 0), "Out", "Quad", 0.25, true)
frame.Outline:TweenSize(UDim2.new(0.888, 0,0.851, 0), "Out", "Quad", 0.25, true)
frame.Close:TweenSize(UDim2.new(0.101, 0,0.149, 0), "Out", "Quad", 0.25, true)
end)
There is no errors in the output