What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

The gui of god

Version / Update: v1.0.0
Download / Script Link
-- SUPER MEGA COMMAND GUI 30+ COMMANDS
local player = game.Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
local UIS = game:GetService("UserInputService")

-- ScreenGui
local gui = Instance.new("ScreenGui")
gui.Name = "MegaCommandGUI"
gui.Parent = playerGui

-- Frame
local frame = Instance.new("Frame")
frame.Size = UDim2.new(0,700,0,500)
frame.Position = UDim2.new(0.5,-350,0.5,-250)
frame.BackgroundColor3 = Color3.fromRGB(35,35,35)
frame.Visible = false
frame.Parent = gui

-- Title
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1,0,0,50)
title.Text = "SUPER COMMAND PANEL"
title.TextScaled = true
title.TextColor3 = Color3.fromRGB(255,255,0)
title.BackgroundTransparency = 1
title.Parent = frame

-- CLOSE BUTTON
local close = Instance.new("TextButton")
close.Size = UDim2.new(0,50,0,50)
close.Position = UDim2.new(1,-55,0,0)
close.Text = "X"
close.Parent = frame
close.MouseButton1Click:Connect(function()
frame.Visible = false
end)

-- CONTROL TAB BUTTON
local controlTab = Instance.new("TextButton")
controlTab.Size = UDim2.new(0,150,0,40)
controlTab.Position = UDim2.new(0,20,0,60)
controlTab.Text = "Control Commands"
controlTab.Parent = frame

controlTab.MouseButton1Click:Connect(function()
-- toggle visibility of commands
for _, c in pairs(frame:GetChildren()) do
if c:IsA("TextButton") and c.Name == "CommandBtn" then
c.Visible = not c.Visible
end
end
end)

-- OPEN BUTTON
local openButton = Instance.new("TextButton")
openButton.Size = UDim2.new(0,120,0,40)
openButton.Position = UDim2.new(0.5,-60,0.05,0)
openButton.Text = "OPEN GUI"
openButton.Parent = gui
openButton.MouseButton1Click:Connect(function()
frame.Visible = not frame.Visible
end)

-- COMMANDS LIST
local commands = {
"SLAP","BOOM","BAN","JUMP","SPEED","LIGHT","RAIN","SPIN","PUSH","FIRE",
"FREEZE","SHAKE","FLY","COIN","RESET","KICK","EXPLODE","TELEPORT","INVISIBLE","GLOW",
"BIGHEAD","SMALLHEAD","SUPERJUMP","LOWGRAVITY","HITBOX","SPAWN","FLIP","SPINCHAR","DANCE","MONEY"
}

local buttons = {}

for i, cmd in ipairs(commands) do
local row = math.floor((i-1)/5)
local col = (i-1) % 5
local btn = Instance.new("TextButton")
btn.Size = UDim2.new(0,120,0,50)
btn.Position = UDim2.new(0,col*130 + 20,0,row*70 + 120)
btn.Text = cmd
btn.Name = "CommandBtn"
btn.Parent = frame
btn.Visible = true

table.insert(buttons, btn)
end

-- COMMAND FUNCTIONALITY
for _, btn in pairs(buttons) do
btn.MouseButton1Click:Connect(function()
local char = player.Character
if not char then return end
local hum = char:FindFirstChild("Humanoid")
local root = char:FindFirstChild("HumanoidRootPart")

if btn.Text == "SLAP" then
print("Slap activated!")
elseif btn.Text == "BOOM" then
local boom = Instance.new("Explosion")
boom.Position = root.Position
boom.Parent = workspace
elseif btn.Text == "BAN" then
player:Kick("🚫 Banned by your own GUI")
elseif btn.Text == "JUMP" then
hum.JumpPower = 120
elseif btn.Text == "SPEED" then
hum.WalkSpeed = 50
elseif btn.Text == "LIGHT" then
game.Lighting.Brightness = 5
elseif btn.Text == "RAIN" then
for i = 1,20 do
local part = Instance.new("Part")
part.Size = Vector3.new(1,4,1)
part.Position = root.Position + Vector3.new(math.random(-10,10),20,math.random(-10,10))
part.Parent = workspace
end
elseif btn.Text == "SPIN" then
task.spawn(function()
for i = 1,50 do
root.CFrame *= CFrame.Angles(0,math.rad(20),0)
task.wait(0.05)
end
end)
elseif btn.Text == "PUSH" then
root.Velocity = Vector3.new(0,50,100)
elseif btn.Text == "FIRE" then
local fire = Instance.new("Fire")
fire.Parent = root
elseif btn.Text == "FREEZE" then
hum.WalkSpeed = 0
elseif btn.Text == "SHAKE" then
task.spawn(function()
for i = 1,30 do
frame.Position = UDim2.new(0.5,-350 + math.random(-10,10),0.5,-250 + math.random(-10,10))
task.wait(0.03)
end
end)
elseif btn.Text == "FLY" then
root.Velocity = Vector3.new(0,100,0)
elseif btn.Text == "COIN" then
local coin = Instance.new("Part")
coin.Shape = Enum.PartType.Ball
coin.Size = Vector3.new(2,2,2)
coin.Position = root.Position + Vector3.new(0,5,0)
coin.Parent = workspace
elseif btn.Text == "RESET" then
char:BreakJoints()
elseif btn.Text == "KICK" then
for _, p in pairs(game.Players:GetPlayers()) do
if p ~= player then
p:Kick("Kicked by command")
end
end
elseif btn.Text == "EXPLODE" then
local exp = Instance.new("Explosion")
exp.Position = root.Position
exp.BlastRadius = 10
exp.Parent = workspace
elseif btn.Text == "TELEPORT" then
root.CFrame = CFrame.new(math.random(-50,50),10,math.random(-50,50))
elseif btn.Text == "INVISIBLE" then
for _, part in pairs(char:GetChildren()) do
if part:IsA("BasePart") then
part.Transparency = 1
end
end
elseif btn.Text == "GLOW" then
local light = Instance.new("PointLight")
light.Range = 15
light.Parent = root
elseif btn.Text == "BIGHEAD" then
for _, part in pairs(char:GetChildren()) do
if part.Name == "Head" then
part.Size = part.Size * 3
end
end
elseif btn.Text == "SMALLHEAD" then
for _, part in pairs(char:GetChildren()) do
if part.Name == "Head" then
part.Size = part.Size * 0.5
end
end
elseif btn.Text == "SUPERJUMP" then
hum.JumpPower = 200
elseif btn.Text == "LOWGRAVITY" then
game.Workspace.Gravity = 50
elseif btn.Text == "HITBOX" then
for _, part in pairs(char:GetChildren()) do
if part:IsA("BasePart") then
part.Size = part.Size * 2
end
end
elseif btn.Text == "SPAWN" then
local npc = Instance.new("Part")
npc.Size = Vector3.new(4,6,2)
npc.Position = root.Position + Vector3.new(5,0,5)
npc.Anchored = true
npc.Parent = workspace
elseif btn.Text == "FLIP" then
root.CFrame *= CFrame.Angles(math.rad(180),0,0)
elseif btn.Text == "SPINCHAR" then
task.spawn(function()
for i = 1,50 do
root.CFrame *= CFrame.Angles(0,math.rad(30),0)
task.wait(0.05)
end
end)
elseif btn.Text == "DANCE" then
print("Dance command triggered!")
elseif btn.Text == "MONEY" then
print("+100 money (visual only)")
end
end)
end)

print("SUPER MEGA COMMAND GUI LOADED!")
[ View More ]
cccf212e-3684-470c-99df-34d80f06a1f2.webp



⚡ SPONSORED BY Heapleak.com – #1 Roblox Script Community

The Gui Of God – Nicolas' GUI | March 2026

Experience the limitless power of The Gui Of God, the ultimate version of Nicolas' creation, with groundbreaking features that leave all other scripts in the dust.

KEY FEATURES

Auto Farm – Harvest resources with unparalleled speed and efficiency
ESP – Gain a competitive edge with enhanced visuals and situational awareness
Nicholas' GUI – Intuitive and responsive interface for effortless control
Mega Features – Unlock the full potential of The Gui Of God with exclusive features
NO KEY REQUIRED – instant execution, zero ads

COMPATIBILITY

💻 PC
Windows 10 / 11
✔ Supported
📱 Android
Delta / Arceus X
✔ Supported
🎮 iOS
Delta / Pallene
✔ Supported

HOW TO USE

1. Download and open your executor (Solara, Wave, Celery, etc.)
2. Attach to Roblox and open any Roblox game
3. Paste the script below and press Execute

SAFE USAGE NOTE

This script is currently UNDETECTED as of March 2026.
Always test on an alt account first. Do not use on your main account.



Want more free undetected scripts?

► Browse the Full Script Library on Heapleak
Daily drops, undetected releases and the latest free scripts – all in one place.

Looking for more free scripts? Heapleak – the biggest Roblox & gaming script hub in the community.


roblox script, roblox hack 2026, universal roblox script, roblox script any game, roblox multi game script 2026, solara executor script, wave executor roblox, undetected roblox script march 2026

Q: Is this The Gui Of God script undetected?
A: Yes
Q: Does this script require a key?
A: No
Q: Does this script work on mobile?
A: Yes

Universal Roblox Script Hub, Free Undetected Scripts 2026
 
Back
Top