I need help making a hammer(Tool) that only destroys a certain part called WoodBlock with click detector Please if you could help, it would be appreciated
Inside that WoodBlock you could add a script:
script.Parent.Touched:Connect(function(hit) -- Detects if its because touched if hit.Parent:FindFirstChild("Handle") then -- The tool needs a part called handle script.Parent:Destroy() end end