Article

+1 Mine Per Click scripts 2026 – NO KEY (Auto Click, Auto Upgrade)

Views: 0

This page lists working scripts, key status, features, and update notes for this Roblox game.

Reviewed by RobScript Team Source status checked:

+1 Mine Per Click is a Roblox mining clicker where progress comes from building Strength, breaking blocks, selling loot for Cash, upgrading your Pickaxe, and rebirthing to push deeper. The scripts on this page are made for players who want to reduce the slow parts of that loop: constant clicking, repeated mining, running back to sell, and manually buying upgrades.

Game link: https://www.roblox.com/games/74193805629461/1-Mine-Per-Click

Video guide

Watch the video if you want to see how a +1 Mine Per Click script menu looks before testing it yourself.

Best Scripts at a Glance

Quick picks for different play styles in +1 Mine Per Click. Choose based on what slows you down most: clicking, mining, selling, rebirths, or upgrades.

r4lzyNo Key
Best all-round pick here: Auto Mine, Auto Sell on surface, Auto Rebirth, best Pickaxe, Speed + Slots upgrades, and Auto Best Aura.
View script
Best for upgrade-heavy grinding with Auto Click, Auto Rebirth, mine speed changer, Sell all, GoTo Surface, and multiple upgrade options.
View script
WENTSMOKENo Key
Best for mining movement and travel. It lists Auto Mine, Auto Click, Auto Sell, Auto Rebirth, upgrades, and teleports.
View script
Best simple option if you only want an Auto Clicker without a huge menu or many extra toggles.
View script

Script comparison table

Compare the no-key +1 Mine Per Click scripts by access type, best use case, and main features.

ScriptAccessBest forMain features
Zero HubNo KeySimple upgrade loopAuto Click, Auto Rebirth, Auto Upgrades
r4lzyNo KeyAll-round farmingAuto Mine, Auto Sell on surface, Auto Rebirth, best Pickaxe, Speed + Slots, Best Aura
GUGUAGANo KeyMining and StrengthSemiFastAutoMine, AutoStrength
WENTSMOKENo KeyMining with travel toolsAuto Mine, Auto Click, Auto Sell, Auto Rebirth, upgrades, teleports
KonyScriptsNo KeyBasic click spamAuto Clicker
AlexandriaNo KeyUpgrades and surface tripsAuto Click, Auto Rebirth, mine speed changer, Sell all, GoTo Surface, Auto Upgrades

+1 Mine Per Click scripts NO KEY / KEYLESS

Zero Hub
Zero Hub script preview

Zero Hub

Developer
kaustubh
Created
Created
v2
NO KEY MOBILE PC
  • Auto Click
  • Auto Rebirth
  • Auto Upgrades
Copies 0
Details

Functions

  • Auto Click
  • Auto Rebirth
  • Auto Upgrades
Access
NO KEY
Tags
MOBILE PC
Languages
English
Compatibility
Other Codex Arceus X Delta

Change history

  • – Added to page!
Script code
--MADE BY ZERO HUB--
loadstring(game:HttpGet("https://pastebin.com/raw/qTasYg78"))()
r4lzy
r4lzy script preview

r4lzy

Developer
r4lzy
Created
Created
v2
NO KEY MOBILE PC
  • Auto Mine
  • Auto Sell (only working in the surface)
  • Auto Rebirth
  • +3 more
Copies 0
Details

Functions

  • Auto Mine
  • Auto Sell (only working in the surface)
  • Auto Rebirth
  • Auto Buy best Pickaxe
  • Auto Upgrade (Speed + Slots)
  • Auto Best Aura
Access
NO KEY
Tags
MOBILE PC
Languages
English
Compatibility
Other Arceus X Delta Codex

Change history

  • – Added to page!
Script code
loadstring(game:HttpGet("https://raw.githubusercontent.com/R4lzy/-1mine/refs/heads/main/typeshit.lua"))()
GUGUAGA
GUGUAGA script preview

GUGUAGA

Developer
GUGUAGA
Created
Created
v2
NO KEY MOBILE PC
  • SemiFastAutoMine
  • AutoStrength
Copies 0
Details

Functions

  • SemiFastAutoMine
  • AutoStrength
Access
NO KEY
Tags
MOBILE PC
Languages
English
Compatibility
Other Arceus X Delta Codex

Change history

  • – Added to page!
Script code
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

local Window = Rayfield:CreateWindow({
   Name = "Pixelated",
   LoadingTitle = "Pixelated",
   LoadingSubtitle = "Scripts Loaded",
   ConfigurationSaving = {
      Enabled = false,
   },
   Discord = {
      Enabled = false,
   },
   KeySystem = false,
})

-- Instantly overlaying notification
Rayfield:Notify({
   Title = "Guide",
   Content = "AutoMine Will help you mine faster so you have to mine first",
   Duration = 10,
   Image = 4483362458, -- Built-in Rayfield Info Icon
   Actions = {
      Ignore = {
         Name = "Okay",
         Callback = function()
            -- Closes when clicked
         end
      },
   },
})

local MainTab = Window:CreateTab("Main Script", nil)

-- Services
local RunService = game:GetService("RunService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

----------------------------------------------------------------------
-- 1. SemiFastAutoMine Implementation
----------------------------------------------------------------------
local autoMineConnection = nil
local latestRemote = nil
local latestArgs = {}
local firingOurself = false

-- Metatable hook strictly listens, never spams on its own
local oldNamecall
oldNamecall = hookmetamethod(game, "__namecall", function(self, ...)
    if firingOurself then 
        return oldNamecall(self, ...) 
    end

    local method = getnamecallmethod()
    local args = {...}
    
    if (method == "FireServer" or method == "fireServer") and self.ClassName == "RemoteEvent" then
        if string.find(self.Name, "HitWall") then
            latestRemote = self
            latestArgs = args
        end
    end
    
    return oldNamecall(self, ...)
end)

MainTab:CreateToggle({
   Name = "SemiFastAutoMine",
   CurrentValue = false,
   Flag = "AutoMineToggle",
   Callback = function(Value)
      if Value then
         -- Turn ON instantly
         autoMineConnection = RunService.Heartbeat:Connect(function()
            if latestRemote and latestRemote.Parent and #latestArgs > 0 then
               firingOurself = true
               for i = 1, 5 do
                  latestRemote:FireServer(unpack(latestArgs))
               end
               firingOurself = false
            end
         end)
      else
         -- Turn OFF instantly
         if autoMineConnection then
            autoMineConnection:Disconnect()
            autoMineConnection = nil
         end
      end
   end,
})

---------------------------------------------------------------------
-- 2. AutoStrength Implementation
--------------------------------------------------------------------
local autoStrengthConnection = nil
local clickRemote = nil

-- Task spawn prevents the script from freezing if the remotes aren't found instantly
task.spawn(function()
    pcall(function()
        clickRemote = ReplicatedStorage:WaitForChild("Remotes", 5):WaitForChild("Server", 5):WaitForChild("Click", 5)
    end)
end)

MainTab:CreateToggle({
   Name = "AutoStrength",
   CurrentValue = false,
   Flag = "AutoStrengthToggle",
   Callback = function(Value)
      if Value then
         -- Turn ON instantly
         autoStrengthConnection = RunService.Heartbeat:Connect(function()
            if clickRemote then
                for i = 1, 5 do
                    clickRemote:FireServer()
                end
            end
         end)
      else
         -- Turn OFF instantly
         if autoStrengthConnection then
            autoStrengthConnection:Disconnect()
            autoStrengthConnection = nil
         end
      end
   end,
})
WENTSMOKE
WENTSMOKE script preview

WENTSMOKE

Developer
WENTSMOKE
Created
Created
v2
NO KEY MOBILE PC
  • Auto Mine ( All Walks )
  • Auto Mine near walls
  • Auto Click
  • +5 more
Copies 0
Details

Functions

  • Auto Mine ( All Walks )
  • Auto Mine near walls
  • Auto Click
  • Auto Sell
  • Auto Rebirth
  • Autofarm Rude
  • Auto Upgrade carry and walkspeed
  • Teleports
Access
NO KEY
Tags
MOBILE PC
Languages
English
Compatibility
Other Codex Arceus X Delta

Change history

  • – Added to page!
Script code
loadstring(game:HttpGet("https://pastebin.com/raw/nwhKbBt1"))()
KonyScripts
KonyScripts script preview

KonyScripts

Developer
KonyScripts
Created
Created
v2
NO KEY MOBILE PC
  • Auto Clicker
Copies 0
Details

Functions

  • Auto Clicker
Access
NO KEY
Tags
MOBILE PC
Languages
English
Compatibility
Other Codex Arceus X Delta

Change history

  • – Added to page!
Script code
-- Auto Clicker +1 Mine Per Click -- made by KonyScripts

local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Patskorn/GUI/main/Copy-SynapOver.lua"))()
local GUI = library:new("Auto Clicker","[ RightControl ]")
local Tab = GUI:Tap("Main")

local Event = game:GetService("ReplicatedStorage").Remotes.Server.Click
local Spammer = nil
local IsSpamming = false

Tab:Button("Start Spam",function()
    if not IsSpamming then
        IsSpamming = true
        Spammer = task.spawn(function()
            while IsSpamming do
                Event:FireServer()
                task.wait()
            end
        end)
    end
end)

Tab:Button("Stop Spam",function()
    if IsSpamming then
        IsSpamming = false
        if Spammer then
            task.cancel(Spammer)
            Spammer = nil
        end
    end
end)
Alexandria
Alexandria script preview

Alexandria

Developer
Alexandria
Created
Created
v2
NO KEY MOBILE PC
  • Auto Click
  • Auto Rebirth
  • Mod Mine Speed with mine speed changer
  • +3 more
Copies 0
Details

Functions

  • Auto Click
  • Auto Rebirth
  • Mod Mine Speed with mine speed changer
  • Sell all
  • GoTo Surface
  • Auto Upgrades: auras, pickaxe, carry, walkspeed
Access
NO KEY
Tags
MOBILE PC
Languages
English
Compatibility
Other Codex Delta Arceus X

Change history

  • – Added to page!
Script code
loadstring(game:HttpGet("https://raw.soteria.rip/7757345559394931"))()

Robscript team opinion:

+1 Mine Per Click is a simple but grindy mining clicker: click for Strength, dig down, collect loot, sell it for Cash, upgrade your pickaxe, and rebirth to go deeper. That is why the most useful scripts on this page are not random extras — Auto Click and Auto Mine reduce the constant clicking, Auto Sell keeps the Cash loop moving, Auto Rebirth helps with long progression, and Auto Upgrade makes your pickaxe, aura, carry, or walkspeed upgrades less annoying to manage. For a full setup, r4lzy and Alexandria look the most complete. If you only need basic Strength farming, KonyScripts or Zero Hub are easier to test.

Frequently Asked Questions

Are these +1 Mine Per Click scripts no key?
Yes. The scripts listed on this page are marked as NO KEY in their script cards. Still, always check the card before using because script access can change after updates.
What do these scripts help with in +1 Mine Per Click?
They mainly help with the boring loop: clicking for Strength, mining blocks, selling loot, rebirthing, and buying upgrades. That is useful because the game gets slower when you need more Strength and better pickaxe upgrades.
Why is Auto Upgrade important in this game?
Cash is used to improve things like pickaxe power, carry capacity, speed, or auras depending on the script. Auto Upgrade saves time because you do not need to stop mining every few minutes to buy the next upgrade manually.
Why does one script say Auto Sell works only on the surface?
The r4lzy card says Auto Sell only works on the surface. That means you may need to return to the top before selling, so a teleport or GoTo Surface option can be useful with that kind of setup.
Can I use these scripts on mobile?
The listed cards include MOBILE and PC tags, but real support still depends on your executor, Roblox updates, and whether the script source is still working.
Do scripts keep working after game updates?
Not always. +1 Mine Per Click, Roblox, or an executor update can break auto click, auto mine, auto sell, or rebirth features. If something stops working, try another script from the list.

How to use script

Use these steps to test a +1 Mine Per Click script safely and avoid choosing the wrong option.

  1. Pick a script from the page based on what you need: auto click, auto mine, auto rebirth, auto sell, or auto upgrades.
  2. Check the access type. The scripts here are marked NO KEY, but compatibility can still change.
  3. Look at the card tags to see if it is listed for mobile, PC, and your executor.
  4. Copy the script code from the card or open the source used by the developer.
  5. Run the script and test one feature first, such as Auto Click or Auto Mine, before turning on everything.
  6. If Auto Sell does not work underground, go back to the surface or use a script with GoTo Surface or teleport support.
Scripts can stop working after Roblox, executor, or game updates. Use them only in places where script testing is allowed.

Core functions

+1 Mine Per Click is all about gaining Strength, breaking blocks, selling loot, upgrading gear, and rebirthing to push deeper. These are the main helpers players usually want on this page.

Auto Click / Auto Strength
Clicks for Strength automatically, so you do not have to spam the mouse just to build power before mining.
Auto Mine
Keeps hitting blocks or nearby walls for you, which helps when the mine starts feeling slow and repetitive.
Auto Sell
Sells collected loot for Cash when supported. Some versions only sell correctly on the surface, so check the script card first.
Auto Rebirth
Helps reset runs faster after progress, so you can keep pushing toward deeper layers and better long-term gains.
Auto Upgrades
Buys useful upgrades such as pickaxe, aura, carry slots, and walkspeed when the script supports them.
Teleports / GoTo Surface
Moves between mining areas and the surface faster, useful when you need to sell loot or continue grinding without walking back.

Conclusion

For most players, r4lzy and Alexandria are the strongest choices because they cover more of the full +1 Mine Per Click loop: mining, clicking, selling, rebirths, and upgrades. WENTSMOKE is useful if you want mining tools plus teleports, while KonyScripts is better if you only need a clean Auto Clicker. Start with one script, test the main feature first, and switch if an update breaks auto mine, auto sell, or rebirth.