Why does this script stop working when I die?
This is a serverscript inside Workspace. When I die, the particleemitter leaves, I know why, but I don't know how to fix it.
01 | game.Players.PlayerAdded:connect( function (player) |
02 | repeat wait() until player.Character |
03 | local torso = player.Character:WaitForChild( "Torso" ) |
04 | local newParticle = game.ServerStorage.ParticleEmitter:Clone() |
05 | newParticle.Parent = torso |
06 | local Humanoid = player.Character.Humanoid |
07 | Humanoid.HealthChanged:connect( function (NewHealth, player) |
08 | if NewHealth < 25 then |
09 | torso.ParticleEmitter.Enabled = true |
11 | torso.ParticleEmitter.Enabled = false |