So the default settings for a tool is when touched that the tool reappears into the players backpack but i want to stop that How do i do that? Is there some kind of code i have to put inside my tool?
-- You Could Just Make A Script Saying
local Tool = script.Parent local Handle = Tool.Handle coroutine.wrap(function() while wait() do if Handle:FindFirstChild("TouchInterest") then Handle.TouchInterest:Destroy() end end end)()
this might be only me, but properties of tool > can touch > false