of     1   

WorqsGreat
#183006400Thursday, February 04, 2016 11:22 PM GMT

Hello, I own a USA and on my Washington DC I need a Group Team change GUI. Can anyone show me how to do that? Thanks,
ez_street
#183007565Thursday, February 04, 2016 11:38 PM GMT

groupId1 = 0 -- Put your US group id here groupId2 = 0 -- Put your DC group id here game.Players.PlayerAdded:connect(function(player) if player:IsInGroup(groupId1) then player.TeamColor = BrickColor.new("Bright blue") elseif player:IsInGroup(groupId2) then player.TeamColor = BrickColor.new("Bright red") end end)
WorqsGreat
#183015325Friday, February 05, 2016 1:41 AM GMT

But how do I do it? I need a ScreenGUI and what script do I put that into?

    of     1