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)