Hey, I have done this before, I know this has been posted before, I just can’t find it, I don’t know how to make team 1 spawn at counter t side, and team 2 spawn at t side
I can only assume it’s like this
[lua]
function team_1( ply )
ply:SetTeam( 1 )
ply:Spawn() -- Somewhere in here...
end
function team_2( ply )
ply:SetTeam( 2 )
ply:Spawn() -- Also somewhere in here...
end
[/lua]