Put this script into Workspace:
~~~~
game.Players.PlayerAdded:connect(function(p)
p.CharacterAdded:connect(function(char)
if script:findFirstChild("Switcher") ~= nil then
script.Switcher:clone().Parent = char
wait()
end
end)
end)
~~~~
Then put THIS script into THAT script and name it "Switcher" without the quotes
~~~~
color = "DA COLOR YOU WANNA CHANGE TO WHEN U DIEEe"
wait(1)
script.Parent.Humanoid.Died:connect(function()
if game.Players.LocalPlayer.TeamColor == "Bright red" then
game.Players.LocalPlayer.TeamColor == color
else
print("Already that!")
end
end) |