In what i mean is you create a gui that in which your in the blue team it gives you a certain type of uniform, and when your in the red team it gives you a a different type of uniform. How do you do this?
Yes, this is possible.
I think that what you mean should be in plugins on Roblox Studio you can use find plugins( grey button in plugins part) and search for ArmorMaker or Character Animations (usually the first ones to come up) take them for free and close your Roblox Studio and open again and in the plugins side should appear a blue armor to make decals and blocks that players will have or Character Animations (next to the blue icon) and choose the colors and all players will enter with that specific Shirt or Uniform or body color and just simply connect that to the Player's Teams by setting the armor as the name of the color team or team name if changed to an specific name or use a more efficient script that will connect the Armor or the Character Animations to the change of Teams that would occur in your game. Hope it helped :D
wait(2) if script.Parent.Parent.TeamColor == BrickColor.new("COLOR HERE") then if workspace:FindFirstChild(script.Parent.Parent.Name):FindFirstChild("Shirt") == nil then if workspace:FindFirstChild(script.Parent.Parent.Name):FindFirstChild("Pants") ~= nil then workspace:FindFirstChild(script.Parent.Parent.Name).Pants:remove() a = Instance.new("Shirt") a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE") a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) b = Instance.new("Pants") b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE") b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) else a = Instance.new("Shirt") a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE") a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) b = Instance.new("Pants") b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE") b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) end else if workspace:FindFirstChild(script.Parent.Parent.Name):FindFirstChild("Pants") ~= nil then workspace:FindFirstChild(script.Parent.Parent.Name).Shirt:remove() workspace:FindFirstChild(script.Parent.Parent.Name).Pants:remove() a = Instance.new("Shirt") a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE") a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) b = Instance.new("Pants") b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE") b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) else workspace:FindFirstChild(script.Parent.Parent.Name).Shirt:remove() a = Instance.new("Shirt") a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE") a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) b = Instance.new("Pants") b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE") b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name) end end end
After making teams and choosing a color for them, insert this script in StarterGui ..... Then change "COLOR HERE" to the color of the team and change "ID HERE" to the ID of the clothes. NOTE: If you have 2 teams, then you must add this script 2 times in SterterGui. Please accept the answer.