RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a pickaxe script to hack away specific dirt"
-- script for pickaxe local tool = script.Parent local player = game.Players.LocalPlayer local mouse = player:GetMouse() local hacking = false tool.Activated:Connect(function() hacking = true while hacking do local target = mouse.Target if target and target.Name == "Dirt" then target:Destroy() end wait(0.5) end end) tool.Deactivated:Connect(function() hacking = false end)