local player = game.Players.LocalPlayer local char = player.Character repeat wait() until char:FindFirstChild("Humanoid").Health == 0 if char:FindFirstChild("Humanoid").Health == 0 then local all = char:GetChildren() for i,v in pairs(all) do if v.ClassName == "Tool" then v:Clone().Parent = player.Backpack end end end
this script does not work. it is a script so that if the player has a tool in character it then this script will clone that tool when players health = 0.