Don't tell me to turn off the filtering enabled because when I do that people exploit my game but when it is on my gui won't shop up this is the open close script can you help me
the script is:wait() local button=script.Parent local animframe=button.Parent.Parent.Animations local on=false function action() if on then animframe:TweenPosition(UDim2.new(0,-150,0,15),"In","Quad",.5,true) on=false else animframe:TweenPosition(UDim2.new(0,-10,0,290),"Out","Quad",.5,true) on=true end end button.MouseButton1Down:connect(action)