Hey! I'm making a game, and let's say I change my team to Red(Or Blue lol). When I reset, I want it so that it'll change to a Neutral Team. Anyway possible to do that? Thanks! Idk what needs to be fixed, so please help (:
Simpler Version: 1. Change Team Red 2. Reset from Menu 3. Team Changes to Gray (For Neutral)
function onTouch(hit) local hum = hit.Parent:findFirstChild("Humanoid") if hum ~= nil and hum.Health > 0 then local player = game.Players:findFirstChild(hit.Parent.Name) if player ~= nil then player.TeamColor = script.Parent.TeamColor end end end script.Parent.Touched:connect(onTouch)
-LukeGabrieI
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) char.Humanoid.Died:connect(function() plr.Team = neutralteam end) end) end)