Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Casual Hub | Auto Farm OPEN SOURCE - Brainrot Jumping Script | Free Roblox Script
Brainrot Jumping Brainrot Jumping

Casual Hub | Auto Farm OPEN SOURCE

Brainrot Jumping 23 views 2 weeks ago
Casual Hub | Auto Farm OPEN SOURCE - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: qkaspq

Open Sourced by Casual Hub TeamFunctions:Auto RebirthAuto Farm MoneyMore Scripts:https://discord.gg/Dt4xXF4mU5

Brainrot Jumping
Explore more scripts
View all Brainrot Jumping scripts

64 Lines 2,057 Bytes
local ReplicatedStorage = game:GetService("ReplicatedStorage")
_G.JumpBrainrotConfig = {
    Enabled = true,
    AutoFarmMoney = true,
    AutoRebirth = true,
    Delay = 0.1
}
_G.JumpBrainrotFarmRunning = false
local function getRemotes()
    local RemotesFolder = ReplicatedStorage:WaitForChild("Remotes")
    local EventsFolder = ReplicatedStorage:WaitForChild("Events")
    return {
        GiveOutReward = RemotesFolder:WaitForChild("Roulette"):WaitForChild("GiveOutReward"),
        RebirthEvent = EventsFolder:WaitForChild("Rebirth"),
        LayerChanged = EventsFolder:WaitForChild("LayerChanged")
    }
end
local function farm()
    local remotes = getRemotes()
    while _G.JumpBrainrotConfig.Enabled do
        if _G.JumpBrainrotConfig.AutoFarmMoney then
            pcall(function()
                remotes.GiveOutReward:FireServer({
                    value = math.huge,
                    type = "Money",
                    chance = 0.45
                })
            end)
            pcall(function()
                remotes.LayerChanged:FireServer("Layer6")
            end)
        end
        if _G.JumpBrainrotConfig.AutoRebirth then
            pcall(function()
                remotes.RebirthEvent:FireServer()
            end)
        end
        task.wait(_G.JumpBrainrotConfig.Delay)
    end
    _G.JumpBrainrotFarmRunning = false
end
_G.JumpBrainrotToggle = function()
    _G.JumpBrainrotConfig.Enabled = not _G.JumpBrainrotConfig.Enabled
    
    if _G.JumpBrainrotConfig.Enabled then
        if not _G.JumpBrainrotFarmRunning then
            _G.JumpBrainrotFarmRunning = true
            task.spawn(farm)
        end
        return "Auto Farm Enabled"
    else
        _G.JumpBrainrotFarmRunning = false
        return "Auto Farm Disabled"
    end
end
if _G.JumpBrainrotConfig.Enabled then
    _G.JumpBrainrotFarmRunning = true
    task.spawn(farm)
end
if setclipboard then
    pcall(function()
        setclipboard("https://discord.gg/4uDSp37Kbe")
    end)
end

Comments

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the Brainrot Jumping game.

This script may require a payment or subscription. Please check the script's description for more details.

Yes, this script has a key system. You may need to complete a task or join a Discord server to get a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/casual-hub-auto-farm-open-source/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other