Is it possible to make a tool (screwdriver) which has exactly the same function as if you do not have a tool equipped. So it is still possible to click on eg "Clickdetector" when you have the tool equipped. I am noob in the script making, but try to learn and are unfortunately not the type who learns by reading but more the type who learn by doing! I have created a tool and inserted a Localscrip with the following contents.
RBXScriptSignal Button1Down () local bin = script.Parent bin.Selected:connect(function(Mouse) Mouse.Button1Down:connect(function() print("Button1Down") end) end)