toclipboard([[ https://discord.gg/bKPRWatprk ]]) local Player = game:GetService("Players").LocalPlayer local RunService = game:GetService("RunService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local cd = 0 RunService.RenderStepped:Connect(function(delta) cd += delta local character = Player.Character local tool = character:FindFirstChildWhichIsA("Tool") if cd > 0.1 and tool and string.find(string.lower(tool.Name),"pickaxe") then cd = 0 for _,v in workspace.Rendering:GetChildren() do if v:GetAttribute("tycoon") and v:GetAttribute("tycoon") == Player.UserId then for _,a in v:GetChildren() do if a:FindFirstChildWhichIsA("MeshPart") and (character.HumanoidRootPart.Position - a:FindFirstChildWhichIsA("MeshPart").Position).Magnitude < 25 then print(a.Name) ReplicatedStorage.Modules.KnitClient.Services.ToolService.RF.Use:InvokeServer(tool,a) end end end end end end)