-- 67 GANG STEAL A BRAINROT SPAWNER GUI (Delta Lua)
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local gui = Instance.new("ScreenGui")
gui.Name = "BrainrotSpawnerGUI"
gui.Parent = player:WaitForChild("PlayerGui")
-- Top Right Button "Potential"
local potentialBtn = Instance.new("TextButton")
potentialBtn.Size = UDim2.new(0, 120, 0, 50)
potentialBtn.Position = UDim2.new(1, -130, 0, 10)
potentialBtn.Text = "Potential"
potentialBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
potentialBtn.TextColor3 = Color3.new(1,1,1)
potentialBtn.TextScaled = true
potentialBtn.Font = Enum.Font.GothamBold
potentialBtn.Parent = gui
-- Key Frame (invisible na start)
local keyFrame = Instance.new("Frame")
keyFrame.Size = UDim2.new(0.4, 0, 0.4, 0)
keyFrame.Position = UDim2.new(0.3, 0, 0.3, 0)
keyFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
keyFrame.Visible = false
keyFrame.Parent = gui
local keyLabel = Instance.new("TextLabel")
keyLabel.Size = UDim2.new(1, 0, 0.3, 0)
keyLabel.Text = "Key in Discord"
keyLabel.TextColor3 = Color3.new(1,1,1)
keyLabel.BackgroundTransparency = 1
keyLabel.TextScaled = true
keyLabel.Parent = keyFrame
local keyBox = Instance.new("TextBox")
keyBox.Size = UDim2.new(0.8, 0, 0.2, 0)
keyBox.Position = UDim2.new(0.1, 0, 0.3, 0)
keyBox.PlaceholderText = "Enter Key"
keyBox.Parent = keyFrame
local enterBtn = Instance.new("TextButton")
enterBtn.Size = UDim2.new(0.8, 0, 0.2, 0)
enterBtn.Position = UDim2.new(0.1, 0, 0.55, 0)
enterBtn.Text = "Enter Code"
enterBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
enterBtn.TextColor3 = Color3.new(1,1,1)
enterBtn.Parent = keyFrame
-- Spawner Frame (invisible na start)
local spawnerFrame = Instance.new("Frame")
spawnerFrame.Size = UDim2.new(0.4, 0, 0.4, 0)
spawnerFrame.Position = UDim2.new(0.3, 0, 0.3, 0)
spawnerFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
spawnerFrame.Visible = false
spawnerFrame.Parent = gui
local spawnerTitle = Instance.new("TextLabel")
spawnerTitle.Size = UDim2.new(1, 0, 0.2, 0)
spawnerTitle.Text = "Steal a Brainrot Spawner"
spawnerTitle.TextColor3 = Color3.new(1,1,1)
spawnerTitle.BackgroundTransparency = 1
spawnerTitle.TextScaled = true
spawnerTitle.Parent = spawnerFrame
local spawnOhioBtn = Instance.new("TextButton")
spawnOhioBtn.Size = UDim2.new(0.8, 0, 0.2, 0)
spawnOhioBtn.Position = UDim2.new(0.1, 0, 0.3, 0)
spawnOhioBtn.Text = "Spawn Ohio x1000"
spawnOhioBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
spawnOhioBtn.TextColor3 = Color3.new(1,1,1)
spawnOhioBtn.Parent = spawnerFrame
local autoStealBtn = Instance.new("TextButton")
autoStealBtn.Size = UDim2.new(0.8, 0, 0.2, 0)
autoStealBtn.Position = UDim2.new(0.1, 0, 0.55, 0)
autoStealBtn.Text = "Toggle Auto Steal + Sell"
autoStealBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
autoStealBtn.TextColor3 = Color3.new(1,1,1)
autoStealBtn.Parent = spawnerFrame
local closeBtn = Instance.new("TextButton")
closeBtn.Size = UDim2.new(0.8, 0, 0.2, 0)
closeBtn.Position = UDim2.new(0.1, 0, 0.8, 0)
closeBtn.Text = "Close"
closeBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
closeBtn.TextColor3 = Color3.new(0,0,0)
closeBtn.Parent = spawnerFrame
-- Logika
potentialBtn.MouseButton1Click:Connect(function()
keyFrame.Visible = true
end)
enterBtn.MouseButton1Click:Connect(function()
if keyBox.Text == "1506" then
keyFrame.Visible = false
spawnerFrame.Visible = true
end
end)
closeBtn.MouseButton1Click:Connect(function()
spawnerFrame.Visible = false
end)
-- Spawn Ohio x1000 (example spawn – dostosuj do gry)
spawnOhioBtn.MouseButton1Click:Connect(function()
for i = 1, 1000 do
-- Przykład spawn Ohio (dostosuj do actual Brainrot spawn remote lub clone)
-- game.ReplicatedStorage.SpawnOhio:FireServer()
print("Spawned Ohio #"..i)
end
end)
-- Auto Steal + Sell toggle
local autoSteal = false
autoStealBtn.MouseButton1Click:Connect(function()
autoSteal = not autoSteal
autoStealBtn.Text = autoSteal and "Auto Steal ON" or "Toggle Auto Steal + Sell"
if autoSteal then
spawn(function()
while autoSteal do
-- Auto steal/sell code (example)
-- game.ReplicatedStorage.StealBrainrot:FireServer()
-- game.ReplicatedStorage.SellAll:FireServer()
wait(0.1)
end
end)
end
end)
print("67 GANG STEAL A BRAINROT SPAWNER GUI LOADED!")
Comments
Privat - working - will public in 1hr