Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Help with fire death effect?

Asked by 3 years ago

So I need help with this death effect, whenever the player dies from the fire sword, they should have fire death effect but its not working. Please help.

local Players = game:GetService('Players') local toolName = 'FIreSword'

Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Character) local Humanoid = Character:WaitForChild('Humanoid') Humanoid.Died:Connect(function() if Character:FindFirstChild(toolName) or Player.Backpack:FindFirstChild(toolName) then

            local.player torso = fire effect
        end 
    end) 
end) 

end)

Answer this question