local player = game.Players.LocalPlayer local button = script.Parent button.Visible = false local teamA = game.Teams.A -- Имя команды "А" if player.Team == teamA then button.Visible = true else button.Visible = false end