How to add TouchInterest to a tool

I am creating a throwable tool but am having a problem where the same player picks up the tool right after throwing it because they are touching it. My idea is to delete the touch interest temporarily and then reinsert the touch interest about .1 seconds later so the tool has some time to travel away from the player. Thanks.

1 Like

Temporarily disable the CanTouch property on the tool, this will prevent .Touched from triggering I believe

This should work:

local touchinterest = -- your touchinterest path here
wait(1) -- the one second you wanted to wait
local clone = touchinterest:Clone() -- clone the touchinterest
touchinterest:Destroy() -- destroy the original touchinterest
clone.Parent = -- put the path of your original touchinterest here