Delete local part on death

You should do:

if game.Workspace:FindFirstChild(v.Name) then
    game.Workspace:FindFirstChild(v.Name):Destroy()
end

You can’t pass an object as an argument for FindFirstChild

2 Likes