softie = 1
script.Parent.WholeSoft.Frame.Options.MouseButton1Down:connect(function()
if softie == 1 then
softie = 2
script.Parent.WholeSoft:TweenPosition(UDim2.new(0,0,.42,0),"In","Linear",1)
script.Parent.WholeSoft.Frame.Options.Text = "Close"
elseif softie == 2 then
softie = 1
script.Parent.WholeSoft:TweenPosition(UDim2.new(-.2,0,.42,0),"In","Linear",1)
script.Parent.WholeSoft.Frame.Options.Text = "Options"
end
end)
--LAU
script.Parent.WholeSoft.LAU.MouseButton1Down:connect(function()
if softie == 2 then
script.Parent.LAUHehe:TweenPosition(UDim2.new(0.3,0,.2,0),"In","Linear",1)
end
end)
--X
script.Parent.LAUHehe.X.MouseButton1Down:connect(function()
script.Parent.LAUHehe:TweenPosition(UDim2.new(0.3,0,-1,0),"In","Linear",1)
end) |