Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- =============================================
- -- GROK ULTIMATE HUB 2026 v6 - FULLY FIXED
- -- 25 REAL BUTTONS (15 Keyless + 10 Game Hubs) • All coded explicitly
- -- Perfect drag + scroll on Delta mobile/PC
- -- =============================================
- local Players = game:GetService("Players")
- local UserInputService = game:GetService("UserInputService")
- local player = Players.LocalPlayer
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "GrokUltimateHubV6"
- screenGui.ResetOnSpawn = false
- screenGui.Parent = player:WaitForChild("PlayerGui")
- -- Main Frame
- local mainFrame = Instance.new("Frame")
- mainFrame.Size = UDim2.new(0, 620, 0, 480)
- mainFrame.Position = UDim2.new(0.5, -310, 0.5, -240)
- mainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 25)
- mainFrame.BorderSizePixel = 0
- mainFrame.Parent = screenGui
- local uiCorner = Instance.new("UICorner")
- uiCorner.CornerRadius = UDim.new(0, 16)
- uiCorner.Parent = mainFrame
- local uiStroke = Instance.new("UIStroke")
- uiStroke.Color = Color3.fromRGB(180, 0, 255)
- uiStroke.Thickness = 4
- uiStroke.Parent = mainFrame
- -- Title Bar
- local titleBar = Instance.new("Frame")
- titleBar.Size = UDim2.new(1, 0, 0, 50)
- titleBar.BackgroundColor3 = Color3.fromRGB(20, 20, 35)
- titleBar.Parent = mainFrame
- local titleCorner = Instance.new("UICorner")
- titleCorner.CornerRadius = UDim.new(0, 16)
- titleCorner.Parent = titleBar
- local titleLabel = Instance.new("TextLabel")
- titleLabel.Size = UDim2.new(1, -130, 1, 0)
- titleLabel.BackgroundTransparency = 1
- titleLabel.Text = "ULTIMATE HUB by lolyejsiaga"
- titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- titleLabel.TextScaled = true
- titleLabel.Font = Enum.Font.GothamBold
- titleLabel.Parent = titleBar
- -- Close Button
- local closeBtn = Instance.new("TextButton")
- closeBtn.Size = UDim2.new(0, 45, 0, 45)
- closeBtn.Position = UDim2.new(1, -55, 0, 3)
- closeBtn.BackgroundColor3 = Color3.fromRGB(255, 60, 60)
- closeBtn.Text = "✕"
- closeBtn.TextColor3 = Color3.new(1,1,1)
- closeBtn.TextScaled = true
- closeBtn.Font = Enum.Font.GothamBold
- closeBtn.Parent = titleBar
- local closeCorner = Instance.new("UICorner"); closeCorner.CornerRadius = UDim.new(0,10); closeCorner.Parent = closeBtn
- closeBtn.MouseButton1Click:Connect(function() screenGui:Destroy() end)
- -- FULL DRAG (Touch + Mouse for Delta)
- local dragging, dragInput, dragStart, startPos
- titleBar.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- dragStart = input.Position
- startPos = mainFrame.Position
- dragInput = input
- end
- end)
- titleBar.InputChanged:Connect(function(input)
- if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if dragging and dragInput and input == dragInput then
- local delta = input.Position - dragStart
- mainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- end)
- titleBar.InputEnded:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = false
- end
- end)
- -- Tabs
- local tabFrame = Instance.new("Frame")
- tabFrame.Size = UDim2.new(1, 0, 0, 45)
- tabFrame.Position = UDim2.new(0, 0, 0, 50)
- tabFrame.BackgroundTransparency = 1
- tabFrame.Parent = mainFrame
- local keylessTab = Instance.new("TextButton")
- keylessTab.Size = UDim2.new(0.33, 0, 1, 0)
- keylessTab.BackgroundColor3 = Color3.fromRGB(50, 50, 90)
- keylessTab.Text = "🔓 KEYLESS (15)"
- keylessTab.TextColor3 = Color3.new(1,1,1)
- keylessTab.TextScaled = true
- keylessTab.Font = Enum.Font.GothamBold
- keylessTab.Parent = tabFrame
- local kc = Instance.new("UICorner"); kc.CornerRadius = UDim.new(0,10); kc.Parent = keylessTab
- local gamesTab = Instance.new("TextButton")
- gamesTab.Size = UDim2.new(0.33, 0, 1, 0)
- gamesTab.Position = UDim2.new(0.33, 0, 0, 0)
- gamesTab.BackgroundColor3 = Color3.fromRGB(30, 30, 50)
- gamesTab.Text = "🎮 GAME HUBS (10)"
- gamesTab.TextColor3 = Color3.new(1,1,1)
- gamesTab.TextScaled = true
- gamesTab.Font = Enum.Font.GothamBold
- gamesTab.Parent = tabFrame
- local gc = Instance.new("UICorner"); gc.CornerRadius = UDim.new(0,10); gc.Parent = gamesTab
- local customTab = Instance.new("TextButton")
- customTab.Size = UDim2.new(0.33, 0, 1, 0)
- customTab.Position = UDim2.new(0.66, 0, 0, 0)
- customTab.BackgroundColor3 = Color3.fromRGB(30, 30, 50)
- customTab.Text = "🛠️ CUSTOM LOAD"
- customTab.TextColor3 = Color3.new(1,1,1)
- customTab.TextScaled = true
- customTab.Font = Enum.Font.GothamBold
- customTab.Parent = tabFrame
- local cc = Instance.new("UICorner"); cc.CornerRadius = UDim.new(0,10); cc.Parent = customTab
- -- SCROLLS
- local keylessScroll = Instance.new("ScrollingFrame")
- keylessScroll.Size = UDim2.new(1, -20, 1, -110)
- keylessScroll.Position = UDim2.new(0, 10, 0, 105)
- keylessScroll.BackgroundTransparency = 1
- keylessScroll.ScrollBarThickness = 8
- keylessScroll.AutomaticCanvasSize = Enum.AutomaticSize.Y
- keylessScroll.CanvasSize = UDim2.new(0,0,0,0)
- keylessScroll.Parent = mainFrame
- local gamesScroll = Instance.new("ScrollingFrame")
- gamesScroll.Size = UDim2.new(1, -20, 1, -110)
- gamesScroll.Position = UDim2.new(0, 10, 0, 105)
- gamesScroll.BackgroundTransparency = 1
- gamesScroll.ScrollBarThickness = 8
- gamesScroll.AutomaticCanvasSize = Enum.AutomaticSize.Y
- gamesScroll.CanvasSize = UDim2.new(0,0,0,0)
- gamesScroll.Visible = false
- gamesScroll.Parent = mainFrame
- local keylessLayout = Instance.new("UIListLayout")
- keylessLayout.Padding = UDim.new(0, 10)
- keylessLayout.Parent = keylessScroll
- local gamesLayout = Instance.new("UIListLayout")
- gamesLayout.Padding = UDim.new(0, 10)
- gamesLayout.Parent = gamesScroll
- local function createScriptButton(parent, name, loadCode, color)
- local btnFrame = Instance.new("Frame")
- btnFrame.Size = UDim2.new(1, 0, 0, 60)
- btnFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 40)
- btnFrame.Parent = parent
- local btnCorner = Instance.new("UICorner")
- btnCorner.CornerRadius = UDim.new(0, 12)
- btnCorner.Parent = btnFrame
- local btnStroke = Instance.new("UIStroke")
- btnStroke.Color = color or Color3.fromRGB(0, 255, 150)
- btnStroke.Thickness = 2
- btnStroke.Parent = btnFrame
- local nameLabel = Instance.new("TextLabel")
- nameLabel.Size = UDim2.new(0.72, 0, 1, 0)
- nameLabel.BackgroundTransparency = 1
- nameLabel.Text = name
- nameLabel.TextColor3 = Color3.new(1,1,1)
- nameLabel.TextScaled = true
- nameLabel.Font = Enum.Font.GothamSemibold
- nameLabel.TextXAlignment = Enum.TextXAlignment.Left
- nameLabel.Position = UDim2.new(0, 15, 0, 0)
- nameLabel.Parent = btnFrame
- local loadBtn = Instance.new("TextButton")
- loadBtn.Size = UDim2.new(0.25, 0, 0.75, 0)
- loadBtn.Position = UDim2.new(0.73, 0, 0.125, 0)
- loadBtn.BackgroundColor3 = Color3.fromRGB(0, 220, 120)
- loadBtn.Text = "LOAD"
- loadBtn.TextColor3 = Color3.new(1,1,1)
- loadBtn.TextScaled = true
- loadBtn.Font = Enum.Font.GothamBold
- loadBtn.Parent = btnFrame
- local lCorner = Instance.new("UICorner"); lCorner.CornerRadius = UDim.new(0,10); lCorner.Parent = loadBtn
- loadBtn.MouseButton1Click:Connect(function()
- if loadCode then
- loadstring(loadCode)()
- game:GetService("StarterGui"):SetCore("SendNotification", {Title="✅ LOADED!", Text=name, Duration=4})
- end
- end)
- end
- -- === KEYLESS TAB - 15 REAL SCRIPTS (all coded here) ===
- local keylessScripts = {
- {name = "Infinite Yield Admin (500+ cmds)", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/DarkNetworks/Infinite-Yield/main/latest.lua"))()', color = Color3.fromRGB(255,255,100)},
- {name = "Redz Hub Universal", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/huy384/redzHub/refs/heads/main/redzHub.lua"))()', color = Color3.fromRGB(0,255,150)},
- {name = "Speed Hub X (Blox Fruits & more)", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/AhmadV99/Speed-Hub-X/main/Speed%20Hub%20X.lua", true))()', color = Color3.fromRGB(0,200,255)},
- {name = "Blox Fruits MinXt2Eng (as in your screenshot)", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/LuaCrack/Min/refs/heads/main/MinXt2Eng"))()', color = Color3.fromRGB(0,200,255)},
- {name = "Dead Rails - Ringta Hub (Bonds + Kill Aura)", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/erewe23/deadrailsring.github.io/refs/heads/main/ringta.lua"))()', color = Color3.fromRGB(255,180,0)},
- {name = "Dead Rails - Auto Bond Farm + ESP", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/JustKondzio0010/deadrailsbondfarm/refs/heads/main/dead", true))()', color = Color3.fromRGB(255,180,0)},
- {name = "Dead Rails - Auto UFO + Golden Egg", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/yoursvexyyy/deadrails/refs/heads/main/autoufo"))()', color = Color3.fromRGB(255,180,0)},
- {name = "Dead Rails - Bring All Items", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/thiennrb7/Script/refs/heads/main/Bringall"))()', color = Color3.fromRGB(255,180,0)},
- {name = "Steal A Brainrot - Best Insta Steal", code = 'loadstring(game:HttpGet("https://pastebin.com/raw/2WEXn2UR"))()', color = Color3.fromRGB(255,100,255)},
- {name = "Steal A Brainrot - Fast Steal + Invisible", code = 'loadstring(game:HttpGet("https://pastefy.app/TxsZkwXI/raw"))()', color = Color3.fromRGB(255,100,255)},
- {name = "Fisch SpaceHub Multi", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/ago106/SpaceHub/refs/heads/main/Multi"))()', color = Color3.fromRGB(100,200,255)},
- {name = "Grow A Garden Kuploit", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/Kuploit/GagScript/refs/heads/main/Script"))()', color = Color3.fromRGB(0,255,200)},
- {name = "99 Nights Loader", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/H4xScripts/Loader/refs/heads/main/loader.lua"))()', color = Color3.fromRGB(150,100,255)},
- {name = "The Forge Kam Script", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/EnesKam21/theforge/refs/heads/main/theforgekam.lua"))()', color = Color3.fromRGB(200,150,0)},
- {name = "OmniX Hub (Aimbot + ESP + Fly)", code = 'loadstring(game:HttpGet("https://gist.githubusercontent.com/SentinelLogicSL/85b393090de083dfbe852be440ecd4f4/raw/5cec9837205a4c0e48039784652bfefa5910ca94/universal.lua"))()', color = Color3.fromRGB(0,255,150)}
- }
- for _, s in ipairs(keylessScripts) do
- createScriptButton(keylessScroll, s.name, s.code, s.color)
- end
- -- === GAME HUBS TAB - 10 REAL SCRIPTS (all coded here) ===
- local gamesScripts = {
- {name = "Dead Rails - Ringta Full Hub", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/erewe23/deadrailsring.github.io/refs/heads/main/ringta.lua"))()', color = Color3.fromRGB(255,180,0)},
- {name = "Dead Rails - Auto Bond + ESP", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/JustKondzio0010/deadrailsbondfarm/refs/heads/main/dead", true))()', color = Color3.fromRGB(255,180,0)},
- {name = "Dead Rails - Auto UFO + Items", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/yoursvexyyy/deadrails/refs/heads/main/autoufo"))()', color = Color3.fromRGB(255,180,0)},
- {name = "Steal A Brainrot - Insta Steal + Chaos", code = 'loadstring(game:HttpGet("https://pastebin.com/raw/2WEXn2UR"))()', color = Color3.fromRGB(255,100,255)},
- {name = "Steal A Brainrot - Fast Farm", code = 'loadstring(game:HttpGet("https://pastefy.app/TxsZkwXI/raw"))()', color = Color3.fromRGB(255,100,255)},
- {name = "Dead Rails - Bring All + Kill Aura", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/thiennrb7/Script/refs/heads/main/Bringall"))()', color = Color3.fromRGB(255,180,0)},
- {name = "Blox Fruits MinXt2Eng (Game Specific)", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/LuaCrack/Min/refs/heads/main/MinXt2Eng"))()', color = Color3.fromRGB(0,200,255)},
- {name = "Dead Rails - Gun Aura + Collect", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/DeadRails"))()', color = Color3.fromRGB(255,180,0)},
- {name = "Steal A Brainrot - CompHub TP", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/robloxcomphub/comphub/refs/heads/main/comphub.lua"))()', color = Color3.fromRGB(255,100,255)},
- {name = "Dead Rails - Auto Win Bonds", code = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/Emplic/deathrails/refs/heads/main/bond"))()', color = Color3.fromRGB(255,180,0)}
- }
- for _, s in ipairs(gamesScripts) do
- createScriptButton(gamesScroll, s.name, s.code, s.color)
- end
- -- Custom Load Tab
- customTab.MouseButton1Click:Connect(function()
- keylessScroll.Visible = false
- gamesScroll.Visible = false
- local customFrame = Instance.new("Frame")
- customFrame.Size = UDim2.new(0.9, 0, 0.65, 0)
- customFrame.Position = UDim2.new(0.05, 0, 0.2, 0)
- customFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 30)
- customFrame.Parent = mainFrame
- local cfCorner = Instance.new("UICorner"); cfCorner.CornerRadius = UDim.new(0,14); cfCorner.Parent = customFrame
- local titleC = Instance.new("TextLabel")
- titleC.Size = UDim2.new(1,0,0,40)
- titleC.Text = "🛠️ PASTE ANY LOADSTRING"
- titleC.TextScaled = true
- titleC.BackgroundTransparency = 1
- titleC.TextColor3 = Color3.new(1,1,1)
- titleC.Parent = customFrame
- local textBox = Instance.new("TextBox")
- textBox.Size = UDim2.new(1, -20, 0, 140)
- textBox.Position = UDim2.new(0,10,0,50)
- textBox.PlaceholderText = 'loadstring(game:HttpGet("URL"))()'
- textBox.TextScaled = true
- textBox.ClearTextOnFocus = false
- textBox.Parent = customFrame
- local execBtn = Instance.new("TextButton")
- execBtn.Size = UDim2.new(0.4,0,0,50)
- execBtn.Position = UDim2.new(0.3,0,0,210)
- execBtn.BackgroundColor3 = Color3.fromRGB(0,255,100)
- execBtn.Text = "EXECUTE"
- execBtn.TextScaled = true
- execBtn.Parent = customFrame
- local eCorner = Instance.new("UICorner"); eCorner.CornerRadius = UDim.new(0,10); eCorner.Parent = execBtn
- execBtn.MouseButton1Click:Connect(function()
- local code = textBox.Text
- if code and code:find("loadstring") then
- loadstring(code)()
- game:GetService("StarterGui"):SetCore("SendNotification", {Title="✅ CUSTOM EXECUTED!", Text="Running!", Duration=5})
- end
- end)
- local closeC = Instance.new("TextButton")
- closeC.Size = UDim2.new(0,40,0,40)
- closeC.Position = UDim2.new(1,-45,0,5)
- closeC.Text = "✕"
- closeC.BackgroundColor3 = Color3.fromRGB(255,80,80)
- closeC.Parent = customFrame
- closeC.MouseButton1Click:Connect(function() customFrame:Destroy() keylessScroll.Visible = true end)
- end)
- -- Tab Switching
- keylessTab.MouseButton1Click:Connect(function()
- keylessScroll.Visible = true
- gamesScroll.Visible = false
- keylessTab.BackgroundColor3 = Color3.fromRGB(50,50,90)
- gamesTab.BackgroundColor3 = Color3.fromRGB(30,30,50)
- customTab.BackgroundColor3 = Color3.fromRGB(30,30,50)
- end)
- gamesTab.MouseButton1Click:Connect(function()
- keylessScroll.Visible = false
- gamesScroll.Visible = true
- gamesTab.BackgroundColor3 = Color3.fromRGB(50,50,90)
- keylessTab.BackgroundColor3 = Color3.fromRGB(30,30,50)
- customTab.BackgroundColor3 = Color3.fromRGB(30,30,50)
- end)
- keylessScroll.Visible = true
- print("🚀 GROK ULTIMATE HUB v6 LOADED — 25 REAL BUTTONS + PERFECT DRAG & SCROLL! You should now see ALL of them 🔥")
Advertisement
Add Comment
Please, Sign In to add comment