-- Jurex13Gaming Hub 🌈 (Safe for Brookhaven) local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local uis = game:GetService("UserInputService") local rs = game:GetService("RunService") -- GUI Setup local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "Jurex13GamingHub" gui.ResetOnSpawn = false local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 350, 0, 500) frame.Position = UDim2.new(0.5, -175, 0.5, -250) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 12) local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 50) title.Text = "🔫 Jurex13Gaming Hub 🔫" title.Font = Enum.Font.GothamBold title.TextSize = 22 title.TextColor3 = Color3.new(1, 1, 1) title.BackgroundTransparency = 1 local layout = Instance.new("UIListLayout", frame) layout.Padding = UDim.new(0, 5) layout.SortOrder = Enum.SortOrder.LayoutOrder -- Button creator local function createButton(text, func) local button = Instance.new("TextButton", frame) button.Size = UDim2.new(1, -20, 0, 40) button.Position = UDim2.new(0, 10, 0, 0) button.Text = text button.Font = Enum.Font.Gotham button.TextSize = 18 button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) button.TextColor3 = Color3.new(1, 1, 1) local btnCorner = Instance.new("UICorner", button) btnCorner.CornerRadius = UDim.new(0, 8) button.MouseButton1Click:Connect(func) end -- ✈️ Fly local flying = false createButton("✈️ Fly (Toggle)", function() flying = not flying local root = character:FindFirstChild("HumanoidRootPart") if not root then return end local bp = Instance.new("BodyVelocity", root) bp.MaxForce = Vector3.new(1e5, 1e5, 1e5) bp.Velocity = Vector3.zero local conn conn = rs.RenderStepped:Connect(function() if flying and root and bp then local dir = Vector3.zero if uis:IsKeyDown(Enum.KeyCode.W) then dir += workspace.CurrentCamera.CFrame.LookVector end if uis:IsKeyDown(Enum.KeyCode.S) then dir -= workspace.CurrentCamera.CFrame.LookVector end if uis:IsKeyDown(Enum.KeyCode.A) then dir -= workspace.CurrentCamera.CFrame.RightVector end if uis:IsKeyDown(Enum.KeyCode.D) then dir += workspace.CurrentCamera.CFrame.RightVector end bp.Velocity = dir.Magnitude > 0 and dir.Unit * 60 or Vector3.zero else bp:Destroy() conn:Disconnect() end end) end) -- 💨 Speed createButton("💨 Speed Boost", function() local hum = character:FindFirstChildOfClass("Humanoid") if hum then hum.WalkSpeed = 100 end end) -- 🧱 Noclip local noclip = false createButton("🧱 Noclip (Toggle)", function() noclip = not noclip rs.Stepped:Connect(function() if noclip then for _, part in pairs(character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) end) -- 🔁 Infinite Jump createButton("🔁 Infinite Jump", function() uis.JumpRequest:Connect(function() local hum = character:FindFirstChildOfClass("Humanoid") if hum then hum:ChangeState("Jumping") end end) end) -- 📍 Teleport createButton("📍 Teleport to Player", function() for _, target in pairs(game.Players:GetPlayers()) do if target ~= player and target.Character and target.Character:FindFirstChild("HumanoidRootPart") then character:MoveTo(target.Character.HumanoidRootPart.Position + Vector3.new(0, 5, 0)) break end end end) -- 👀 ESP createButton("👀 Show ESP", function() for _, p in pairs(game.Players:GetPlayers()) do if p ~= player and p.Character and p.Character:FindFirstChild("Head") then local esp = Instance.new("BillboardGui", p.Character.Head) esp.Size = UDim2.new(0, 100, 0, 40) esp.AlwaysOnTop = true local label = Instance.new("TextLabel", esp) label.Size = UDim2.new(1, 0, 1, 0) label.Text = p.Name label.BackgroundTransparency = 1 label.TextColor3 = Color3.fromRGB(255, 0, 0) label.TextScaled = true end end end) -- 🫥 Invisibility createButton("🫥 Become Invisible", function() for _, v in pairs(character:GetDescendants()) do if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then v.Transparency = 1 elseif v:IsA("Accessory") and v:FindFirstChild("Handle") then v.Handle.Transparency = 1 end end end) -- 🪑 Sit Anywhere createButton("🪑 Sit Anywhere", function() local hum = character:FindFirstChildOfClass("Humanoid") if hum then hum.Sit = true end end) -- 🔄 Reset createButton("🔄 Reset Character", function() character:BreakJoints() end) -- 🌈 RGB Character createButton("🌈 Rainbow Body Color", function() spawn(function() while true do for _, part in pairs(character:GetChildren()) do if part:IsA("BasePart") and part.Name ~= "HumanoidRootPart" then part.Color = Color3.fromHSV(tick() % 5 / 5, 1, 1) end end wait(0.1) end end) end)