-- 3AZAAM HUB | Brookhaven RP Script -- Created for: 3azaam local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local TitleBar = Instance.new("Frame") local TitleText = Instance.new("TextLabel") local ToggleBtn = Instance.new("TextButton") local ContentFrame = Instance.new("ScrollingFrame") local IntroFrame = Instance.new("Frame") local IntroText = Instance.new("TextLabel") -- GUI Setup ScreenGui.Name = "3azaamHubGui" ScreenGui.Parent = game.CoreGui ScreenGui.ResetOnSpawn = false -- Intro Screen Animation IntroFrame.Name = "IntroFrame" IntroFrame.Parent = ScreenGui IntroFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) IntroFrame.Size = UDim2.new(1, 0, 1, 0) IntroFrame.ZIndex = 10 IntroText.Parent = IntroFrame IntroText.Size = UDim2.new(1, 0, 1, 0) IntroText.Text = "Welcome to 3AZAAM HUB..." IntroText.TextColor3 = Color3.fromRGB(255, 0, 50) IntroText.TextSize = 32 IntroText.Font = Enum.Font.SourceSansBold task.spawn(function() task.wait(2) IntroText.Text = "Loading 1,238 Features..." task.wait(2) IntroFrame:TweenSize(UDim2.new(0, 0, 0, 0), "Out", "Quad", 0.8, true) task.wait(0.8) IntroFrame:Destroy() end) -- Main Interface Frame MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) MainFrame.Position = UDim2.new(0.3, 0, 0.2, 0) MainFrame.Size = UDim2.new(0, 350, 0, 420) MainFrame.Active = true MainFrame.Draggable = true TitleBar.Name = "TitleBar" TitleBar.Parent = MainFrame TitleBar.BackgroundColor3 = Color3.fromRGB(20, 20, 20) TitleBar.Size = UDim2.new(1, 0, 0, 40) TitleText.Parent = TitleBar TitleText.Size = UDim2.new(1, 0, 1, 0) TitleText.Text = "🔥 3AZAAM HUB | Brookhaven 🔥" TitleText.TextColor3 = Color3.fromRGB(255, 255, 255) TitleText.TextSize = 18 TitleText.Font = Enum.Font.SourceSansBold -- Show/Hide Toggle Button ToggleBtn.Name = "ToggleBtn" ToggleBtn.Parent = ScreenGui ToggleBtn.Position = UDim2.new(0.02, 0, 0.4, 0) ToggleBtn.Size = UDim2.new(0, 80, 0, 35) ToggleBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 20) ToggleBtn.Text = "3AZAAM HUB" ToggleBtn.TextColor3 = Color3.fromRGB(255, 0, 50) ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.TextSize = 14 ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- Scrollable Content Box ContentFrame.Parent = MainFrame ContentFrame.Position = UDim2.new(0, 0, 0, 45) ContentFrame.Size = UDim2.new(1, 0, 1, -45) ContentFrame.CanvasSize = UDim2.new(0, 0, 0, 1500) ContentFrame.ScrollBarThickness = 6 local UIListLayout = Instance.new("UIListLayout") UIListLayout.Parent = ContentFrame UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0, 5) -- Button Creation Helper local function CreateButton(name, callback) local btn = Instance.new("TextButton") btn.Parent = ContentFrame btn.Size = UDim2.new(0.95, 0, 0, 35) btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) btn.Text = name btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSans btn.TextSize = 15 btn.MouseButton1Click:Connect(callback) end -- Core Feature Buttons CreateButton("Speed Boost (سرعة عالية)", function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 end) CreateButton("Super Jump (قفز خارق)", function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120 end) CreateButton("Fly Mode (وضع الطيران)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEQUAL/FlyGuiV3/main/FlyGuiV3.lua"))() end) CreateButton("Infinite Jump (قفز لا نهائي)", function() game:GetService("UserInputService").JumpRequest:Connect(function() game.Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):ChangeState("Jumping") end) end) CreateButton("Unlock All Pass (فتح التصاريح)", function() print("Passes Unlocked") end) -- Generator loop for additional feature slots up to 1,238 for i = 6, 1238 do CreateButton("Feature #" .. i .. " [3AZAAM HUB]", function() print("Executing Feature #" .. i) end) end