Find any script for Roblox

Enter the name of the game or script.

Script – Drill digging simulator

Thank you for using our website
Your script:

NO KEY

local localPlayer = game:GetService("Players").LocalPlayer
local character = localPlayer.Character
game:GetService("RunService").PreSimulation:Connect(function()
    character = localPlayer.Character
    local tool = character:FindFirstChildWhichIsA("Tool")
    local handdrill
    if tool and tool:GetAttribute("Type") == "HandDrill" or tool and string.find(tool.Name,"Hand Drill") then
        handdrill = tool
    end
    if handdrill and tool then
        for i = 1,100000 do
            game:GetService("ReplicatedStorage").Packages.Knit.Services.OreService.RE.RequestRandomOre:FireServer()
        end
    end
end)