Home » How-To » Gaming » BIG Paintball 2 Script (Kill All, All Guns, No Key)

BIG Paintball 2 Script (Kill All, All Guns, No Key)

BIG Paintball 2 is a fast-paced, free-to-play FPS Roblox game by BIG Games.

It’s the successor to BIG Paintball Classic, which is one of the top 100 most visited Roblox games.

BIG Paintball 2 has a wide selection of weapons, maps, abilities (streaks), and game modes.

After a successful early access phase, the game officially launched with plans for future updates.

This article contains a list of BIG Paintball 2 scripts for kill all, all guns, no key, auto farm, and more in Roblox.

BIG Paintball 2 Script (No Key) – Auto Farm, Kill All

local Keybind = "F"

local SessionID = string.gsub(tostring(math.random()):sub(3), "%d", function(c)
    return string.char(96 + math.random(1, 26))
end)
print(' | Running BigPaintball2.lua made by Astro with keybind ' .. Keybind .. '! [SessionID ' .. SessionID .. ']')

local Enabled = false
local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Workspace = game:GetService("Workspace")

-- Fehlerprotokollierung und Schutz
local function safeExecute(func)
    local success, errorMessage = pcall(func)
    if not success then
        warn(' | Error occurred: ' .. errorMessage .. ' [SessionID ' .. SessionID .. ']')
    end
end

-- Gegner und Spieler an festen Positionen teleportieren
local function teleportEntities(cframe, team)
    local spawnPosition = cframe * CFrame.new(0, 0, -15) -- Feste Position vor dem Spieler

    -- Verarbeiten von Entitäten
    for _, entity in ipairs(Workspace.__THINGS.__ENTITIES:GetChildren()) do
        if entity:FindFirstChild("HumanoidRootPart") then
            local humanoidRootPart = entity.HumanoidRootPart
            humanoidRootPart.CanCollide = false
            humanoidRootPart.Anchored = true
            humanoidRootPart.CFrame = spawnPosition
        elseif entity:FindFirstChild("Hitbox") then
            local directory = entity:GetAttribute("Directory")
            if not (directory == "White" and entity:GetAttribute("OwnerUID") == LocalPlayer.UserId) and
               (not team or directory ~= team.Name) then
                entity.Hitbox.CanCollide = false
                entity.Hitbox.Anchored = true
                entity.Hitbox.CFrame = spawnPosition * CFrame.new(math.random(-5, 5), 0, math.random(-5, 5))
            end
        end
    end

    -- Verarbeiten von Spielern
    for _, player in ipairs(Players:GetPlayers()) do
        if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
            if not team or team.Name ~= player.Team.Name then
                if not player.Character:FindFirstChild("ForceField") then
                    local humanoidRootPart = player.Character.HumanoidRootPart
                    humanoidRootPart.CanCollide = false
                    humanoidRootPart.Anchored = true
                    humanoidRootPart.CFrame = spawnPosition * CFrame.new(math.random(-5, 5), 0, math.random(-5, 5))
                end
            end
        end
    end
end

-- Eingabeerkennung für das Umschalten
UserInputService.InputBegan:Connect(function(input, gameProcessedEvent)
    if input.KeyCode == Enum.KeyCode[Keybind] and not gameProcessedEvent then
        Enabled = not Enabled
        if Enabled then
            print(' | Enabled BigPaintball2.lua [SessionID ' .. SessionID .. ']')
        else
            print(' | Disabled BigPaintball2.lua [SessionID ' .. SessionID .. ']')
        end
    end
end)

-- Hauptschleife
while wait(0.1) do -- Optimierte Aktualisierungsrate
    safeExecute(function()
        if not Enabled or not LocalPlayer.Character or not LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
            return
        end

        local cframe = LocalPlayer.Character.HumanoidRootPart.CFrame -- Spielerposition
        local team = LocalPlayer.Team -- Spielerteam
        teleportEntities(cframe, team)
    end)
end

Note: Press “F” on your keyboard to start the script.

Further reading

Dig the Backyard Script (No Key, Pastebin, Auto Farm)

Creatures of Sonaria Script (No Key, Pastebin, Kill Aura)

List of Lust for Adventure Cheat Codes

Tags

About the author

Lim How Wei

Lim How Wei is the founder of followchain.org, with 8+ years of experience in Social Media Marketing and 4+ years of experience as an active investor in stocks and cryptocurrencies. He has researched, tested, and written thousands of articles ranging from social media platforms to messaging apps.

Lim has been quoted and referenced by major publications and media companies like WikiHow, Fast Company, HuffPost, Vice, New York Post, The Conversation, and many others. One of his articles about the gig economy was quoted by Joe Rogan who hosts The Joe Rogan Experience (arguably the most popular podcast in the world), in the This Past Weekend podcast by Theo Von.

In his free time, Lim plays multiple games like Genshin Impact, League of Legends, Counter-Strike, Hearthstone, RuneScape, and many others. He creates guides, walkthroughs, solutions, and more on games that he plays to help other players with their progression.