-- Services
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
-- ScreenGui
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Name = "AutoExecuteGUI"
ScreenGui.ResetOnSpawn = false
ScreenGui.Parent = game.CoreGui
-- Main Frame
local MainWidth = 520
local Main = Instance.new("Frame")
Main.Parent = ScreenGui
Main.Size = UDim2.new(0, MainWidth, 0, 200)
Main.Position = UDim2.new(0.5, -MainWidth/2, 0.2, 0)
Main.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
Main.Active = true
Main.Draggable = true
Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 12)
Instance.new("UIStroke", Main).Color = Color3.fromRGB(70, 70, 70)
-- Header
local Header = Instance.new("Frame", Main)
Header.Size = UDim2.new(1, 0, 0, 38)
Header.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
Instance.new("UICorner", Header).CornerRadius = UDim.new(0, 12)
local Title = Instance.new("TextLabel", Header)
Title.Size = UDim2.new(1, -90, 1, 0)
Title.Position = UDim2.new(0, 12, 0, 0)
Title.BackgroundTransparency = 1
Title.Text = "📁 Script Library"
Title.Font = Enum.Font.GothamBold
Title.TextSize = 14
Title.TextColor3 = Color3.fromRGB(255,255,255)
Title.TextXAlignment = Enum.TextXAlignment.Left
-- Minimize
local Minimize = Instance.new("TextButton", Header)
Minimize.Size = UDim2.new(0, 38, 1, 0)
Minimize.Position = UDim2.new(1, -76, 0, 0)
Minimize.Text = "-"
Minimize.Font = Enum.Font.GothamBold
Minimize.TextSize = 20
Minimize.TextColor3 = Color3.fromRGB(255,255,255)
Minimize.BackgroundColor3 = Color3.fromRGB(45,120,200)
Minimize.AutoButtonColor = false
-- Close
local Close = Instance.new("TextButton", Header)
Close.Size = UDim2.new(0, 38, 1, 0)
Close.Position = UDim2.new(1, -38, 0, 0)
Close.Text = "X"
Close.Font = Enum.Font.GothamBold
Close.TextSize = 14
Close.TextColor3 = Color3.fromRGB(255,255,255)
Close.BackgroundColor3 = Color3.fromRGB(160,55,55)
Close.AutoButtonColor = false
-- Content
local Content = Instance.new("Frame", Main)
Content.Size = UDim2.new(1, 0, 1, -38)
Content.Position = UDim2.new(0, 0, 0, 38)
Content.BackgroundTransparency = 1
-- Layout
local boxes = {}
local padding = 12
local maxColumns = 3
local boxWidth = (MainWidth - padding*(maxColumns+1)) / maxColumns
local boxHeight = 50
local function LayoutBoxes()
for i, btn in ipairs(boxes) do
local row = math.floor((i-1)/maxColumns)
local col = (i-1)%maxColumns
btn.Position = UDim2.new(
0, padding + col*(boxWidth + padding),
0, padding + row*(boxHeight + padding)
)
end
local rows = math.ceil(#boxes / maxColumns)
Main.Size = UDim2.new(0, MainWidth, 0, 38 + rows*(boxHeight + padding) + padding)
end
local function CreateScriptBox(text, callback, color)
local Button = Instance.new("TextButton")
Button.Size = UDim2.new(0, boxWidth, 0, boxHeight)
Button.Text = text
Button.TextWrapped = true
Button.TextColor3 = color or Color3.fromRGB(235,235,235)
Button.Font = Enum.Font.Gotham
Button.TextSize = 13
Button.BackgroundColor3 = Color3.fromRGB(35,35,35)
Button.AutoButtonColor = false
Button.Parent = Content
Instance.new("UICorner", Button).CornerRadius = UDim.new(0,10)
Instance.new("UIStroke", Button).Color = Color3.fromRGB(80,80,80)
Button.MouseEnter:Connect(function()
Button.BackgroundColor3 = Color3.fromRGB(50,50,50)
end)
Button.MouseLeave:Connect(function()
Button.BackgroundColor3 = Color3.fromRGB(35,35,35)
end)
Button.MouseButton1Click:Connect(callback)
table.insert(boxes, Button)
LayoutBoxes()
end
-- Scripts
CreateScriptBox("Infinite Yield", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
end)
CreateScriptBox("🧠 Vertex Hub", function()
loadstring(game:HttpGet("https://raw.smokingscripts.org/vertex.lua"))()
end, Color3.fromRGB(120,200,255))
CreateScriptBox("🔒 Talentless Piano", function()
pcall(function()
loadstring(game:HttpGet("https://hellohellohell0.com/talentless-raw/TALENTLESS.lua", true))()
end)
end, Color3.fromRGB(200,150,255))
-- ✅ UPDATED BRAINROT (emoji + color)
CreateScriptBox("🧠 Save Brainrot", function()
loadstring(game:HttpGet("https://rscripts.net/raw/rscripts_obfuscated_free-gamepasses-free-currency-free-eggs_1769099743679_kdVDgd1YbS.txt", true))()
end, Color3.fromRGB(90, 220, 160))
CreateScriptBox("Noobify\n(Survive a Natural Disaster)", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/v0c0n1337/scripts/refs/heads/main/natural%20disaster%20survival%20making%20all%20players%20noob"))()
end, Color3.fromRGB(255,220,0))
CreateScriptBox("👻 Universal Invisible {G}", function()
loadstring(game:HttpGet("https://pastebin.com/raw/3Rnd9rHf"))()
end, Color3.fromRGB(255,80,80))
CreateScriptBox("💸 Pls Donate", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/CF-Trail/tzechco-PlsDonateAutofarmBackup/main/old.lua"))()
end, Color3.fromRGB(0,200,0))
CreateScriptBox("🔫 Paintball 2 {F}", function()
loadstring(game:HttpGet("https://pastebin.com/raw/W22rq01Y"))()
end, Color3.fromRGB(255,140,50))
CreateScriptBox("🥊 Marvellous Smackdown", function()
loadstring(game:HttpGet("https://gist.githubusercontent.com/RuanST1/505d0a20d7d8a09a4e51cb1080a66d35/raw/54b7b2bc5724ae36d003d5e42efefe6de0f3984e/sthub1.3"))()
end, Color3.fromRGB(180,180,180))
CreateScriptBox("🔪 Murder Mystery 2", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
loadstring(game:HttpGet("https://pastebin.com/raw/3Rnd9rHf"))()
loadstring(game:HttpGet("https://raw.smokingscripts.org/vertex.lua"))()
end, Color3.fromRGB(139,0,0))
CreateScriptBox("🚓 Jailbreak Auto-Arrest", function()
loadstring(game:HttpGet("https://scripts.projectauto.xyz/AutoArrestV4"))()
end, Color3.fromRGB(0,0,139))
CreateScriptBox("💰 Jailbreak Auto-Rob", function()
loadstring(game:HttpGet("https://scripts.projectauto.xyz/AutoRobV6"))()
end, Color3.fromRGB(255,165,0))
CreateScriptBox("🎙️ Unsuspend Voicechat", function()
game:GetService("VoiceChatService"):joinVoice()
end, Color3.fromRGB(128,0,128))
CreateScriptBox("🩸 Blood Debt", function()
loadstring(game:HttpGet("https://sk1d.org/file?free=blooddebt-68a8eba6"))()
end, Color3.fromRGB(150,0,0))
CreateScriptBox("🐙 Octopus Games", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/lebumbum/project1335/refs/heads/main/untilknown"))()
end, Color3.fromRGB(255,105,180))
CreateScriptBox("🌪️ Gravity Inverter", function()
pcall(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/hm5650/Gravity-inverter/refs/heads/main/GI", true))()
end)
end, Color3.fromRGB(120,180,255))
CreateScriptBox("💖 Kawaii Aura", function()
pcall(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/hellohellohell012321/KAWAII-AURA/main/kawaii_aura.lua", true))()
end)
end, Color3.fromRGB(255,170,210))
CreateScriptBox("🌊🧠 Escape Tsunami\nFor Brainrots", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/ywxoscripts/lua/refs/heads/main/9363735110.lua"))()
end, Color3.fromRGB(80,200,255))
-- Minimize
local minimized = false
local FULL_SIZE = UDim2.new(0, MainWidth, 0, Main.Size.Y.Offset)
local MIN_SIZE = UDim2.new(0, 76, 0, 38)
Minimize.MouseButton1Click:Connect(function()
minimized = not minimized
Title.Visible = not minimized
Content.Visible = not minimized
TweenService:Create(
Main,
TweenInfo.new(0.25, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
{Size = minimized and MIN_SIZE or FULL_SIZE}
):Play()
end)
Close.MouseButton1Click:Connect(function()
ScreenGui:Destroy()
end)
-- Panic key
UserInputService.InputBegan:Connect(function(input, gpe)
if gpe then return end
if input.KeyCode == Enum.KeyCode.RightAlt then
Main.Visible = not Main.Visible
end
end)
Comments
If you have a good script that you know is usually regularly updated lmk and i'll add it, Also please let me know in the comments if a script gets you banned it'll be removed as quick as possible at the timing of this comment no scripts gets you banned.