of     1   

jeremylittlemars
#182201678Saturday, January 23, 2016 2:43 AM GMT

I want the Frame to be deleted when the text button is Clicked I also want to know how will you access a GUI's properties to be Viable or not script.parent.Visible = false doesn't seem to work Here's the setup ScreenGUI>Starter(Frame)>TextBox,TextButton>Script In the script inside the TextButton is function D () script.Parent.Parent:Destroy() end if script.Parent:MouseButton1Down:connect then (D) end ---------------------- -God Of Technology
Lucas1270z
#182202106Saturday, January 23, 2016 2:48 AM GMT

function D() script.Parent.Parent:Destroy() end script.Parent.MouseButton1Down:connect(D) or more efficiently you could do script.Parent.MouseButton1Down:connect(function() script.Parent.Parent:Destroy() end)

    of     1