Skip to main content

Dig To China Script Roblox - Infinite Points -

Warning: using or distributing scripts that modify game behavior in Roblox can violate Roblox’s Terms of Service and the rules of individual games, leading to account suspension or bans. Use this information for learning and development only (e.g., understanding scripting concepts, creating your own Roblox games). Do not use scripts to exploit other developers’ games.

Why are players obsessed with the "Infinite Points" variant of the Dig to China script? Because points are the bottleneck.

A standard auto-farm script might give you 10,000 points per minute. An infinite points script exploits a vulnerability in the game's remote event handling. It sends a falsified "claim reward" packet to the Roblox server, tricking the game into thinking you just completed a milestone (e.g., reaching 10,000m depth) repeatedly.

Result: Your points counter jumps from 0 to 9,999,999 in under 3 seconds.

To make a more "infinite" points system or significantly alter the game's points, you might consider modifying the game's logic directly. For example, you could override the points deduction mechanism or ensure points are constantly being added. Dig to China Script Roblox - Infinite Points

However, creating a truly "infinite" points system might look something like this:

-- Services
local Players = game:GetService("Players")
-- Function to set points to max (This can be very high)
local function setMaxPoints(player)
    local leaderstats = player:FindFirstChild("leaderstats")
    if leaderstats then
        local pointStat = leaderstats:FindFirstChild("Points")
        if pointStat then
            pointStat.Value = 999999999 -- Very high number
        end
    end
end
-- Set max points for all current and future players
for _, player in pairs(Players:GetPlayers()) do
    setMaxPoints(player)
end
Players.PlayerAdded:Connect(function(player)
    -- Wait for the player to load
    player.CharacterAdded:Connect(function()
        wait(1) -- Small delay
        setMaxPoints(player)
    end)
end)

Using scripts in Roblox always carries risks.

Using a script in Roblox requires a third-party exploit executor. Note: We do not host these executors; you must find a reputable one online.

Step 1: Get an Executor Download a reliable Roblox executor. There are free and paid options available. (Always be cautious of malware when downloading free software). Warning: using or distributing scripts that modify game

Step 2: Launch the Game Open Roblox and start Dig to China. Wait until the game has fully loaded and you are in the server.

Step 3: Open the Executor Open your executor program, click "Inject," and attach it to the Roblox process.

Step 4: Paste the Script Copy the script code you want to use (an example is provided below) and paste it into the executor’s text box.

Step 5: Execute Click the "Execute" button. A GUI (Graphical User Interface) should appear, or the script will start running automatically. Toggle the options you want (like "Infinite Points") and enjoy! Using scripts in Roblox always carries risks

Are you tired of grinding for hours in Dig to China just to upgrade your shovel? Do you want to reach the Earth’s core (and beyond) at lightning speed?

If you are looking for the best Dig to China script to get infinite points and dominate the leaderboard, you have come to the right place. In this post, we are breaking down how these scripts work, the features they offer, and how to use them safely.

While "Infinite Points" is the headline attraction, modern scripts for this game often come packed with other quality-of-life features:

Roblox is actively closing the door on script execution. By 2026, expect Hyperion to block all user-mode executors permanently. The era of "Infinite Points" scripts is already fading.

For now, the Dig to China developer releases an update every two weeks that breaks most public scripts. By the time you find a working "Dig to China Script Roblox - Infinite Points" today, it will likely be patched by next weekend.