Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you configure a tool that when stepped on or touched doesnt go into players backpack?

Asked by 2 years ago

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?

2 answers

Log in to vote
0
Answered by 2 years ago
Edited 2 years ago

-- 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)()

Ad
Log in to vote
0
Answered by 2 years ago

this might be only me, but properties of tool > can touch > false

Answer this question