Hello, I am trying to make a battle royale game, I understand everything but how to make players drop there tools on death. I wanted it to be so it is in the center of there body when they drop it but cant figure out how to do it. I went to toolbox to observe and got scripts that made players drop there tools on death, but they did not work and make sense to me. Can someone help me, thanks
well I cant put the tool that they are holding but if you want a specific tool or a specific item you could use this: (make sure to put it in StarterCharacterScripts) Put the thing you want them to drop in lighting and rename Handle to whatever you need
script.Parent = local Torso = script.Parent:FindFirstChild('Torso') function onDied() print ("Script Loaded.") wait(1) local n = game.Lighting["Handle"]:Clone() n.Parent = game.Workspace n.Position = Torso.Position n.Handle.Position = script.Parent.Torso.Position end while true do wait(0.00000001) if script.Parent.Humanoid.Health == 0 then onDied() end end