Go into your tool and select all the part objects. Next, go the the properties tab and go to CanCollide. Under CanCollide, you’ll see CanTouch. Uncheck it and you won’t be able to pick it up.
That’s not what he wants. Read the script and see that it only disables the ability to equip it, but keeps it in inventory. The OP wants to just disable the picking up of the tool when you walk over, as indicated in the post’s name. To do so, just change the name of the Handle to something else, and then put it back once you want to be able to enabling picking up
For my game I had to make a custom tool pick up and tool dropping system, If you need something like that let me know.
Disable Handle.CanTouch
or all your parts in your tool.
Disable CanTouch on the handle of the tool
Well, there are many solutions to that, you either change the tool into a part or change the name to anything other than “Handle”.
simple, turn off the CanTouch property in the handle of the tool
for i,v in pairs(script.Parent:GetDescendants()) do
if v.ClassName == "TouchTransmitter" then
v:Destroy()
end
end
this should work