--// G00berHub Script (with 99 Nights Hub + Inf Yield + FlyGuiV3 + Forsaken Hub) --// Lua Executor always visible on top of hub local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local G00berHub = Instance.new("ScreenGui") G00berHub.Name = "G00berHub" G00berHub.ResetOnSpawn = false G00berHub.Parent = playerGui -- Main Frame local MainFrame = Instance.new("Frame") MainFrame.Parent = G00berHub MainFrame.Size = UDim2.new(0, 400, 0, 450) MainFrame.Position = UDim2.new(0.5, -200, 0.5, -225) MainFrame.BackgroundColor3 = Color3.fromRGB(45, 45, 45) MainFrame.Active = true MainFrame.Draggable = true Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 10) local Title = Instance.new("TextLabel") Title.Parent = MainFrame Title.Text = "G00berHub" Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundTransparency = 1 Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.GothamBold Title.TextScaled = true -- === Lua Executor Section === local ExecutorFrame = Instance.new("Frame") ExecutorFrame.Parent = MainFrame ExecutorFrame.Size = UDim2.new(1, -20, 0, 120) ExecutorFrame.Position = UDim2.new(0, 10, 0, 40) ExecutorFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Instance.new("UICorner", ExecutorFrame).CornerRadius = UDim.new(0, 8) local ExecutorTitle = Instance.new("TextLabel") ExecutorTitle.Parent = ExecutorFrame ExecutorTitle.Text = "Lua Executor" ExecutorTitle.Size = UDim2.new(1, 0, 0, 25) ExecutorTitle.BackgroundTransparency = 1 ExecutorTitle.TextColor3 = Color3.fromRGB(255, 255, 255) ExecutorTitle.Font = Enum.Font.GothamBold ExecutorTitle.TextScaled = true local CodeBox = Instance.new("TextBox") CodeBox.Parent = ExecutorFrame CodeBox.Size = UDim2.new(1, -20, 0.6, -10) CodeBox.Position = UDim2.new(0, 10, 0, 30) CodeBox.BackgroundColor3 = Color3.fromRGB(25, 25, 25) CodeBox.TextColor3 = Color3.fromRGB(255, 255, 255) CodeBox.Font = Enum.Font.Code CodeBox.TextSize = 14 CodeBox.Text = "-- Paste Lua code here" CodeBox.ClearTextOnFocus = false local RunButton = Instance.new("TextButton") RunButton.Parent = ExecutorFrame RunButton.Size = UDim2.new(0, 80, 0, 30) RunButton.Position = UDim2.new(0.5, -90, 0.8, 0) RunButton.Text = "Run" RunButton.BackgroundColor3 = Color3.fromRGB(60, 120, 60) RunButton.TextColor3 = Color3.fromRGB(255, 255, 255) RunButton.Font = Enum.Font.GothamBold RunButton.TextScaled = true RunButton.MouseButton1Click:Connect(function() local code = CodeBox.Text local func, err = loadstring(code) if func then func() else warn("Error in code: " .. err) end end) -- === Hub Buttons Section === local GooberSection = Instance.new("Frame") GooberSection.Parent = MainFrame GooberSection.Size = UDim2.new(1, -20, 0, 250) GooberSection.Position = UDim2.new(0, 10, 0, 170) GooberSection.BackgroundTransparency = 1 local function createButton(name, position, color, callback) local btn = Instance.new("TextButton") btn.Parent = GooberSection btn.Size = UDim2.new(0, 200, 0, 40) btn.Position = position btn.Text = name btn.BackgroundColor3 = color btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.GothamBold btn.TextScaled = true Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 8) btn.MouseButton1Click:Connect(callback) end -- 99 Nights Hub createButton("99 Nights Hub", UDim2.new(0.5, -100, 0, 0), Color3.fromRGB(90, 90, 150), function() loadstring(game:HttpGet("https://raw.githubusercontent.com/adibhub1/99-nighit-in-forest/refs/heads/main/99%20night%20in%20forest"))() end) -- Inf Yield createButton("Inf Yield", UDim2.new(0.5, -100, 0.25, 0), Color3.fromRGB(150, 90, 150), function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end) -- FlyGuiV3 createButton