local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "GET FAT FOR BRAINROT",
LoadingTitle = "idk...",
LoadingSubtitle = "by Aewonne",
ConfigurationSaving = { Enabled = false },
KeySystem = false
})
local Tab = Window:CreateTab("Automation", 4483362458)
-- State Variables
local _instantDummy = false
local _autoDummy = false
local _autoClaim = false
local _autoUpgrade = false
local _autoBuyFat = false
local _autoRebirth = false
-- SECTION: DUMMIES
Tab:CreateSection("Dummies")
Tab:CreateToggle({
Name = "Instant Take Dummy (Method 2)",
CurrentValue = false,
Flag = "InstantDummyToggle",
Callback = function(Value)
_instantDummy = Value
if _instantDummy then
task.spawn(function()
local RS = game:GetService("ReplicatedStorage")
local takeRemote = RS:WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("TakeDummy")
while _instantDummy do
pcall(function()
local fakeArg = Instance.new("StringValue")
takeRemote:InvokeServer(fakeArg)
end)
task.wait(0.1)
end
end)
end
end,
})
Tab:CreateToggle({
Name = "Auto Collect Dummy (Normal)",
CurrentValue = false,
Flag = "DummyToggle",
Callback = function(Value)
_autoDummy = Value
if _autoDummy then
task.spawn(function()
local RS = game:GetService("ReplicatedStorage")
while _autoDummy do
pcall(function()
local dummy = RS.Values.Dummys:FindFirstChild("Tang Tang Suhar677228259")
if dummy then
RS.Events.Gameplay.TakeDummy:InvokeServer(dummy)
RS.Events.Gameplay.ClaimDummys:InvokeServer()
end
end)
task.wait(0.5)
end
end)
end
end,
})
-- SECTION: PLATFORMS (1-30)
Tab:CreateSection("Platform Management (1-30)")
Tab:CreateToggle({
Name = "Auto Claim Earnings (1-30)",
CurrentValue = false,
Flag = "ClaimToggle",
Callback = function(Value)
_autoClaim = Value
if _autoClaim then
task.spawn(function()
local LP = game:GetService("Players").LocalPlayer
local RS = game:GetService("ReplicatedStorage")
local claimRemote = RS:WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("ClaimEarnings")
while _autoClaim do
local platforms = LP:FindFirstChild("Platforms")
if platforms then
for i = 1, 30 do -- Expanded to 30
if not _autoClaim then break end
local target = platforms:FindFirstChild(tostring(i))
if target then
pcall(function()
claimRemote:InvokeServer(target)
end)
end
end
end
task.wait(0.5)
end
end)
end
end,
})
Tab:CreateToggle({
Name = "Auto Upgrade Characters (1-30)",
CurrentValue = false,
Flag = "UpgradeCharToggle",
Callback = function(Value)
_autoUpgrade = Value
if _autoUpgrade then
task.spawn(function()
local LP = game:GetService("Players").LocalPlayer
local RS = game:GetService("ReplicatedStorage")
local upgradeRemote = RS:WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("UpgradeCharacter")
while _autoUpgrade do
local platforms = LP:FindFirstChild("Platforms")
if platforms then
for i = 1, 30 do -- Expanded to 30
if not _autoUpgrade then break end
local target = platforms:FindFirstChild(tostring(i))
if target then
pcall(function()
upgradeRemote:InvokeServer(target, 1)
end)
end
end
end
task.wait(0.8)
end
end)
end
end,
})
-- SECTION: SHOP & PRESTIGE
Tab:CreateSection("Shop & Prestige")
Tab:CreateToggle({
Name = "Auto Buy Fat",
CurrentValue = false,
Flag = "FatToggle",
Callback = function(Value)
_autoBuyFat = Value
if _autoBuyFat then
task.spawn(function()
local RS = game:GetService("ReplicatedStorage")
while _autoBuyFat do
pcall(function()
RS.Events.Gameplay.UpgradeUpgrade:InvokeServer("Fat", 1)
end)
task.wait(0.5)
end
end)
end
end,
})
Tab:CreateToggle({
Name = "Auto Rebirth",
CurrentValue = false,
Flag = "RebirthToggle",
Callback = function(Value)
_autoRebirth = Value
if _autoRebirth then
task.spawn(function()
local RS = game:GetService("ReplicatedStorage")
while _autoRebirth do
pcall(function()
RS.Events.Gameplay.Rebirth:InvokeServer()
end)
task.wait(2)
end
end)
end
end,
})
Comments
No comments yet
Be the first to share your thoughts!