How would I have tools be deleted after use (Clicking)
Help
How would I have tools be deleted after use (Clicking)
Help
In your script, just write: tool:Destroy()
after an activation script.
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.
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