Tool Deletion after use

How would I have tools be deleted after use (Clicking)

Help

4 Likes

In your script, just write: tool:Destroy() after an activation script.

2 Likes

It didnt work, sorry, is there another way

local Tool = path.to.tool

Tool.Activated:Connect(function()
	Tool:Destroy()
end)

Would destroy your tool immediately after clicking.

1 Like

local Tool = path.to.tool

path has red underline

“path.to.tool” is where your tool is placed. For example, if your script is directly underneath the tool you would do:

local Tool = script.Parent
2 Likes