I want to be able to hide a GUI when i open another one in game when the game is published, like for example: I open rebirth frame and then I open shop frame, and the rebirth frame disappears.
Something like this.
rebirthframe = --reference where rebirth frame is shopframe = --reference where shop frame is script.Parent.MouseButton1Click:Connect(function() rebirthframe.Visible = true shopframe.Visible = false end)