This script's purpose it so that the button is only visible if there are no players on the governor team, but once someone joins the team the button disappears.
if game.Teams.Governer.Players == 0 then script.Parent.Visible = true elseif game.Teams.Governor.Players == 1 then script.Parent.Visible = false end