local RS = game:GetService("ReplicatedStorage") local NET = RS:WaitForChild("Network") local RF = NET:WaitForChild("RemoteFunctions") local RE = NET:WaitForChild("RemoteEvents") local sd = RF:WaitForChild("StartDigging") local ed = RE:WaitForChild("EndDigging") local ps = RE:WaitForChild("PawnShopInteraction") while task.wait(0.1) do pcall(function() sd:InvokeServer() end) task.wait() pcall(function() ed:FireServer("Succeeded") end) task.wait(0.1) pcall(function() ps:FireServer("SellInventory") end) end