Is there a way to do this?
local Tool = script.Parent Tool.Equipped:Connect(function(Mouse) Mouse.Button1Down:Connect(function() if mouse.Target and mouse.Target.Parent then Parent:remove() end end) end)
Use Activated
for tools, this is fired whenever the mouse is pressed
script.Parent.Activated:Connect(function() -- do stuff end)