Player:SetTeam
Description
Sets the player to the chosen team.
Arguments
Example
Sets the players team to the first argument when writing "set_team" into the console and respawns the player afterwards, ex. "set_team 1".
concommand.Add( "set_team", function( ply, cmd, args )
local Team = args[1] or 1
ply:SetTeam( Team )
ply:Spawn()
end )
Output: Sets the player to team 1 and respawns them.