**What i Mean Is Like I Make A Frame Then I Add Button One That Says Open And One That Says Close But When You Press The Close It Closes The Gui And Also Displays The Open Button Then When You Press That It Displays The Gui And Close Button
Can Someone Help Me?**
Well the better way to do it is one button opens and closes it,
shop = INSERT GUI DIRECTORY button = INSERT BUTTON DIRECTORY open = false button.MouseButton1Down:connect(function() if open == false then shop.Visible = true button.Text = "Close" open = true else shop.Visible = false button.Text = "Open" open = false end end)