I've tried a lot of scripts, but none work. I would like to know to how to only delete the tool that the player is holding, not any tools in the backpack though
When the player has the tool in their hands, the tool location is in the character. So, simply you would only need to delete the tool with the function :FindFirstChildWhichIsA()
Example:
local char -- char location char:FindFirstChildWhichIsA('Tool'):Destroy()