of     1   

Cromunus1
#194022912Tuesday, July 19, 2016 9:21 AM GMT

The one where you automatically spawn on the defenders side if you are in the group.
hawai_i
#194022965Tuesday, July 19, 2016 9:22 AM GMT

theres lots in free models dude
Dr_Protato
#194022995Tuesday, July 19, 2016 9:23 AM GMT

function OnEntered(player) if player:IsInGroup(*ID*) then print("Friendly") player.TeamColor = game.Teams["*DEFENDING TEAM NAME*"].TeamColor else print("Hostile") end end game.Players.PlayerAdded:connect(OnEntered) BHB| Head Developer
Cromunus1
#194023017Tuesday, July 19, 2016 9:24 AM GMT

Cheers.
pyth_n
#194023504Tuesday, July 19, 2016 9:39 AM GMT

function OnEntered(player) if player:IsInGroup(*ID*) then print("Friendly") player.TeamColor = game.Teams["*DEFENDING TEAM NAME*"].TeamColor else print("Hostile") end end who the hell puts the "then" on a seperate line wtf - Isostae
Beakil
#194042340Tuesday, July 19, 2016 5:01 PM GMT

Where do I put the ID and the Team name? Hail Killicide || Rip Armadyne 2k15 || Warsaw 2k16 ||
Beakil
#194042425Tuesday, July 19, 2016 5:02 PM GMT

I literally just put this into a local script function OnEntered(player) if player:IsInGroup(2815038) then print("Friendly") player.TeamColor = game.Teams[":\\Capital Forces"].TeamColor else print("Hostile") end end game.Players.PlayerAdded:connect(OnEntered) is it correct? Hail Killicide || Rip Armadyne 2k15 || Warsaw 2k16 ||
maoamo
#194042887Tuesday, July 19, 2016 5:08 PM GMT

put it in a normal script in serverscriptservice
Contriox
#194043060Tuesday, July 19, 2016 5:11 PM GMT

game.Players.PlayerAdded:connect(function(player) if player:IsInGroup(2815038) then player.TeamColor = game.Teams[":\\Capital Forces"].TeamColor end end)
Beakil
#194045011Tuesday, July 19, 2016 5:35 PM GMT

Is it just inserted into workspace cause serverscriptservice won't allow is to be inserted. Hail Killicide || Rip Armadyne 2k15 || Warsaw 2k16 ||
Beakil
#194045093Tuesday, July 19, 2016 5:36 PM GMT

nvm :s Hail Killicide || Rip Armadyne 2k15 || Warsaw 2k16 ||

    of     1