How to make a tool not go away when dying

yeah you read the title i dont need to explain

I believe Scripting Support is not for asking for scripts, you have to try something first and ask if you need any help with fixing bugs and stuff, but I believe you would have to make a custom backpack or something similar.

Not really sure about it.

1 Like

the backpack in a player is replaced every time they die. Use a script to parent the tool to the StarterGear. Or just place it in starter pack.

local Tool = (tool here)
Tool:Clone().Parent = Player.Backpack
Tool.Parent = Player.StarterGear

1 Like