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)