Need help with destroying a tool

Hello,

So as most of you know that when the player equips the tool it dissapears from the Backpack. And thats the issue cause now the script can’t destroy it cause it isn’t there.

Does anyone know how I can make it that the script DOES destroys the tool?

check the players character too.

local tool = plr.Backpack:FindFirstChild("toolname") or plr.Character:FindFirstChild("toolname")
tool:Destroy()
4 Likes

You can use FindFirstChild().

Works perfectly thanks for your help!

3 Likes