local Players = game:GetService(“Players”)
Players.PlayerAdded:Connect(function(player)
if player:IsInGroup(2750566) then
player.TeamColor = “Maroon”
player:LoadCharacter()
end
end)
Why doesn’t it work?
local Players = game:GetService(“Players”)
Players.PlayerAdded:Connect(function(player)
if player:IsInGroup(2750566) then
player.TeamColor = “Maroon”
player:LoadCharacter()
end
end)
Why doesn’t it work?
Maybe you should do player.Team instead of player.TeamColor
TeamColor is a BrickColor, do player.TeamColor = BrickColor.new("Maroon") instead.