local button = script.Parent
local lobbyUI = button.Parent.Parent -- LobbyUI ScreenGui
local hostMatch = lobbyUI:WaitForChild("HostMatch")
button.MouseButton1Click:Connect(function()
hostMatch.Visible = not hostMatch.Visible
end)
chatgpt give me this