of     1   

shish_kebab4
#190152582Tuesday, May 31, 2016 11:38 AM GMT

I need to put certain people into a certain team. How? Halo, Owner of Hydra Studios.
Andyliu5000
#190158403Tuesday, May 31, 2016 2:31 PM GMT

This should be moved to Scripting section but anyways you'll have to do following stuff. This should be easily possible for you if you know: -> game:GetService("Players").(PutPlayersNameHere).TeamColor = BrickColor.new("(PutTeamColorHere)")
shish_kebab4
#190158497Tuesday, May 31, 2016 2:33 PM GMT

Thanks, but this is the right section since in the scripting forum description it reads "No help requests" where this section is primarily for that. Halo, Owner of Hydra Studios.
Andyliu5000
#190158602Tuesday, May 31, 2016 2:35 PM GMT

Oh, but I've seen people usually putting help requests up there. Sorry if I was wronged.
shish_kebab4
#190159312Tuesday, May 31, 2016 2:51 PM GMT

It says expected identifier got '(' where it says ("Players").("halo3mastermin18145") Halo, Owner of Hydra Studios.
Andyliu5000
#190162600Tuesday, May 31, 2016 3:58 PM GMT

You forgot to put a bracket in your code. Please send your code for further inspection if you're unable to fix it.
shish_kebab4
#190162676Tuesday, May 31, 2016 4:00 PM GMT

game:GetService("Players").("halo3mastermin18145", "SenpaiHam", "StickMasterOzane").TeamColor = BrickColor.new("Deep Orange") Halo, Owner of Hydra Studios.
Andyliu5000
#190163211Tuesday, May 31, 2016 4:09 PM GMT

Use this instead: local PlayersAllowedToChangeTeam = {["PlayerName1"] = true, ["PlayerName2"] = true} function ChangeTeamOfFollowingTable(Table) for i,v in ipairs(game:GetService("Players"):GetChildren()) do if Table[v.Name] then v.TeamColor = BrickColor.new("Orange") end end end game:GetService("Players").PlayerAdded(connect ChangeTeamOfFollowingTable(PlayersAllowedToChangeTeam)) This will change the team of the allowed table when they join the game.

    of     1