-- This file was renamed and dumped by 89lm local CoreGui = game.CoreGui local Players = game:GetService("Players") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local Humanoid = Character:WaitForChild("Humanoid") local RootPart = Character:WaitForChild("HumanoidRootPart") if CoreGui:FindFirstChild("OliverHub") then CoreGui.OliverHub:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "OliverHub" ScreenGui.Parent = CoreGui ScreenGui.ResetOnSpawn = false local MainFrame = Instance.new("Frame") MainFrame.Parent = ScreenGui MainFrame.Size = UDim2.new(0, 300, 0, 400) MainFrame.Position = UDim2.new(0.5, -150, 0.5, -200) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true local Corner = Instance.new("UICorner", MainFrame) Corner.CornerRadius = UDim.new(0, 8) local Title = Instance.new("TextLabel") Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundTransparency = 1 Title.Text = "Oliver Hub" Title.TextColor3 = Color3.fromRGB(0, 255, 180) Title.TextScaled = true Title.Font = Enum.Font.GothamBlack local Container = Instance.new("ScrollingFrame") Container.Parent = MainFrame Container.Size = UDim2.new(1, -20, 1, -60) Container.Position = UDim2.new(0, 10, 0, 50) Container.BackgroundTransparency = 1 Container.BorderSizePixel = 0 Container.ScrollBarThickness = 3 Container.ScrollBarImageColor3 = Color3.fromRGB(0, 255, 180) Container.CanvasSize = UDim2.new(0, 0, 0, 0) local Layout = Instance.new("UIListLayout", Container) Layout.Padding = UDim.new(0, 8) Layout.HorizontalAlignment = Enum.HorizontalAlignment.Center Layout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() Container.CanvasSize = UDim2.new(0, 0, 0, Layout.AbsoluteContentSize.Y) end) local function createButton(text, color, parent) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.95, 0, 0, 40) btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.BackgroundColor3 = color btn.Font = Enum.Font.GothamBold btn.TextSize = 14 btn.Parent = parent local corner = Instance.new("UICorner", btn) corner.CornerRadius = UDim.new(0, 6) local indicator = Instance.new("Frame") indicator.Name = "Indicator" indicator.Size = UDim2.new(0, 8, 0, 8) indicator.Position = UDim2.new(1, -15, 0.5, -4) indicator.BackgroundColor3 = Color3.fromRGB(255, 0, 0) indicator.Parent = btn Instance.new("UICorner", indicator).CornerRadius = UDim.new(1, 0) return btn end local TeleportBtn = createButton("🚀 Teleport to Base", Color3.fromRGB(35, 75, 150), Container) local AntiSammyBtn = createButton("🛡️ Anti-Sammy (100m)", Color3.fromRGB(50, 50, 50), Container) local SpeedBtn = createButton("⚡ Speed Toggle", Color3.fromRGB(50, 50, 50), Container) local SpeedInput = Instance.new("TextBox") SpeedInput.Size = UDim2.new(0.95, 0, 0, 35) SpeedInput.BackgroundColor3 = Color3.fromRGB(30, 30, 30) SpeedInput.Text = "16" SpeedInput.TextColor3 = Color3.fromRGB(0, 255, 180) SpeedInput.Font = Enum.Font.GothamBold SpeedInput.PlaceholderText = "Speed..." SpeedInput.Parent = Container Instance.new("UICorner", SpeedInput).CornerRadius = UDim.new(0, 6) local BrainrotBtn = createButton("🧠 Brainrot Finder ▼", Color3.fromRGB(110, 30, 160), Container) local FilterMenu = Instance.new("Frame") FilterMenu.Parent = MainFrame FilterMenu.Size = UDim2.new(0.95, 0, 0, 320) FilterMenu.Position = UDim2.new(0.025, 0, 0.12, 0) FilterMenu.BackgroundColor3 = Color3.fromRGB(20, 20, 20) FilterMenu.Visible = false FilterMenu.ZIndex = 50 Instance.new("UICorner", FilterMenu) local FilterLabel = Instance.new("TextLabel", FilterMenu) FilterLabel.Size = UDim2.new(1, 0, 0, 30) FilterLabel.Text = "Filter: Common | None" FilterLabel.TextColor3 = Color3.fromRGB(0, 255, 180) FilterLabel.BackgroundTransparency = 1 FilterLabel.ZIndex = 51 local FilterScroll = Instance.new("ScrollingFrame", FilterMenu) FilterScroll.Size = UDim2.new(1, -10, 1, -80) FilterScroll.Position = UDim2.new(0, 5, 0, 35) FilterScroll.BackgroundTransparency = 1 FilterScroll.ZIndex = 51 FilterScroll.ScrollBarThickness = 4 local FilterLayout = Instance.new("UIListLayout", FilterScroll) FilterLayout.Padding = UDim.new(0, 5) local MatchBtn = createButton("🔍 Teleport to Match", Color3.fromRGB(0, 150, 100), FilterMenu) MatchBtn.Position = UDim2.new(0.05, 0, 0.88, 0) MatchBtn.Size = UDim2.new(0.9, 0, 0, 35) MatchBtn.ZIndex = 52 local rarities = {"Common", "Uncommon", "Rare", "Epic", "Legendary", "Mythic", "God", "Secret"} for _, rarity in ipairs(rarities) do local btn = createButton("Rarity: "..rarity, Color3.fromRGB(40, 40, 40), FilterScroll) btn.ZIndex = 52 btn.MouseButton1Click:Connect(function() FilterLabel.Text = "Filter: "..rarity.." | None" end) end BrainrotBtn.MouseButton1Click:Connect(function() FilterMenu.Visible = not FilterMenu.Visible end) TeleportBtn.MouseButton1Click:Connect(function() local Bases = workspace:FindFirstChild("Bases") if Bases then for _, base in pairs(Bases:GetChildren()) do -- Teleport logic end end end) SpeedBtn.MouseButton1Click:Connect(function() SpeedBtn.Indicator.BackgroundColor3 = Color3.fromRGB(0, 255, 100) end) RunService.Stepped:Connect(function() Humanoid.WalkSpeed = tonumber(SpeedInput.Text) or 16 end) AntiSammyBtn.MouseButton1Click:Connect(function() AntiSammyBtn.Indicator.BackgroundColor3 = Color3.fromRGB(0, 255, 100) task.spawn(function() while true do local Sammy = workspace:FindFirstChild("SpyderSammy") if Sammy and Sammy:FindFirstChild("HumanoidRootPart") then RootPart.CFrame = RootPart.CFrame + Vector3.new(0, 100, 0) end task.wait(0.2) end end) end)