k I think I found a fix for the script. This should be inside of a local script:
function onActivated(mouse)
target = mouse.Target
if not target then return end
if target.Name == "Dirt"
target:Remove()
end
end
function onEquipped(mouse)
script.Parent.Activated:connect(onActivated)
end
tool.Equipped:connect(onEquipped)
This may or may not work, I'm betting it will though let me know what happens and the output. |