JustPaste
HomeCategoriesAboutDonateContactTerms of UsePrivacy Policy
JustPaste

Free online notepad — write and share instantly

Navigate

  • Home
  • Timeline
  • Categories

Info

  • About
  • Donate
  • Contact

Legal

  • Terms of Use
  • Privacy Policy

© 2026 JustPaste.app. All rights reserved.

Made with ♥ by JustPaste

Untitled Page | JustPaste.app
1 day ago6 views
👨‍💻Programming

--[[ ZER0 MENU - 1:1 PHOTO MATCH Menu moved UP to sit above mobile buttons Custom Logo ID: 92908729298497 (Circular) FPS Boost Toggle (ON only) + Low Graphics Mode Scripts with Run buttons + Popup under Jump Full English - Delta Executor Ready ]] local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local RED = Color3.fromRGB(255, 15, 20) local RED_DARK = Color3.fromRGB(120, 8, 12) local DARK = Color3.fromRGB(6, 6, 8) local DARK2 = Color3.fromRGB(12, 12, 15) local DARK3 = Color3.fromRGB(20, 20, 24) local WHITE = Color3.fromRGB(240, 240, 245) local GRAY = Color3.fromRGB(140, 140, 145) local GREEN = Color3.fromRGB(60, 200, 60) local LOGO_ID = "rbxassetid://92908729298497" local OPEN_TIME = 0.35 local CLOSE_TIME = 0.30 local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "Zer0Menu" ScreenGui.ResetOnSpawn = false ScreenGui.IgnoreGuiInset = true ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.Parent = PlayerGui local Blur = Instance.new("BlurEffect") Blur.Size = 0 Blur.Parent = game:GetService("Lighting") -- ============================================ -- POPUP NOTIFICATION SYSTEM (under jump button) -- ============================================ local popupContainer = Instance.new("Frame") popupContainer.Name = "Popups" popupContainer.AnchorPoint = Vector2.new(0.5, 1) popupContainer.Position = UDim2.new(0.5, 0, 0.78, 0) popupContainer.Size = UDim2.new(0, 320, 0, 60) popupContainer.BackgroundTransparency = 1 popupContainer.Parent = ScreenGui local popupLayout = Instance.new("UIListLayout") popupLayout.Padding = UDim.new(0, 8) popupLayout.SortOrder = Enum.SortOrder.LayoutOrder popupLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center popupLayout.VerticalAlignment = Enum.VerticalAlignment.Bottom popupLayout.Parent = popupContainer local function showPopup(text) local popup = Instance.new("Frame") popup.Size = UDim2.new(1, 0, 0, 50) popup.BackgroundColor3 = DARK2 popup.BackgroundTransparency = 0.05 popup.BorderSizePixel = 0 popup.Parent = popupContainer local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 12) corner.Parent = popup local stroke = Instance.new("UIStroke") stroke.Color = GREEN stroke.Thickness = 2 stroke.Transparency = 0.1 stroke.Parent = popup local label = Instance.new("TextLabel") label.Size = UDim2.new(1, -20, 1, 0) label.Position = UDim2.new(0, 10, 0, 0) label.BackgroundTransparency = 1 label.Text = text label.TextColor3 = WHITE label.TextScaled = true label.Font = Enum.Font.GothamBold label.TextXAlignment = Enum.TextXAlignment.Center label.Parent = popup popup.BackgroundTransparency = 1 label.TextTransparency = 1 stroke.Transparency = 1 TweenService:Create(popup, TweenInfo.new(0.25), {BackgroundTransparency = 0.05}):Play() TweenService:Create(label, TweenInfo.new(0.25), {TextTransparency = 0}):Play() TweenService:Create(stroke, TweenInfo.new(0.25), {Transparency = 0.1}):Play() task.delay(5, function() TweenService:Create(popup, TweenInfo.new(0.4), {BackgroundTransparency = 1}):Play() TweenService:Create(label, TweenInfo.new(0.4), {TextTransparency = 1}):Play() TweenService:Create(stroke, TweenInfo.new(0.4), {Transparency = 1}):Play() task.wait(0.45) popup:Destroy() end) end -- ============================================ -- MAIN FRAME -- ============================================ local Main = Instance.new("Frame") Main.AnchorPoint = Vector2.new(0.5, 0.5) Main.Position = UDim2.fromScale(0.5, 0.38) Main.Size = UDim2.fromScale(0.85, 0.62) Main.BackgroundColor3 = DARK Main.BackgroundTransparency = 0.05 Main.BorderSizePixel = 0 Main.Visible = false Main.Parent = ScreenGui local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 20) MainCorner.Parent = Main local MainStroke = Instance.new("UIStroke") MainStroke.Color = RED MainStroke.Thickness = 2 MainStroke.Transparency = 0.1 MainStroke.Parent = Main local MainScale = Instance.new("UIScale") MainScale.Scale = 0.85 MainScale.Parent = Main -- LOGO local LogoContainer = Instance.new("Frame") LogoContainer.BackgroundTransparency = 1 LogoContainer.Position = UDim2.fromScale(0.03, 0.02) LogoContainer.Size = UDim2.fromScale(0.45, 0.20) LogoContainer.Parent = Main local ZeroText = Instance.new("TextLabel") ZeroText.BackgroundTransparency = 1 ZeroText.Size = UDim2.fromScale(0.55, 1) ZeroText.Font = Enum.Font.GothamBlack ZeroText.Text = "ZER0" ZeroText.TextColor3 = RED ZeroText.TextScaled = true ZeroText.TextXAlignment = Enum.TextXAlignment.Left ZeroText.TextYAlignment = Enum.TextYAlignment.Top ZeroText.Parent = LogoContainer local ZeroStroke = Instance.new("UIStroke") ZeroStroke.Color = Color3.fromRGB(255, 60, 60) ZeroStroke.Thickness = 3 ZeroStroke.Transparency = 0.3 ZeroStroke.Parent = ZeroText local MenuText = Instance.new("TextLabel") MenuText.BackgroundTransparency = 1 MenuText.Position = UDim2.fromScale(0.04, 0.72) MenuText.Size = UDim2.fromScale(0.5, 0.3) MenuText.Font = Enum.Font.GothamBlack MenuText.Text = "MENU" MenuText.TextColor3 = RED MenuText.TextScaled = true MenuText.TextXAlignment = Enum.TextXAlignment.Left MenuText.Parent = LogoContainer local LionFrame = Instance.new("Frame") LionFrame.AnchorPoint = Vector2.new(0, 0.5) LionFrame.Position = UDim2.fromScale(0.58, 0.5) LionFrame.Size = UDim2.fromOffset(90, 90) LionFrame.BackgroundColor3 = DARK2 LionFrame.BackgroundTransparency = 0.2 LionFrame.BorderSizePixel = 0 LionFrame.ClipsDescendants = true LionFrame.Parent = LogoContainer local LionCorner = Instance.new("UICorner") LionCorner.CornerRadius = UDim.new(1, 0) LionCorner.Parent = LionFrame local LionStroke = Instance.new("UIStroke") LionStroke.Color = RED LionStroke.Thickness = 2.5 LionStroke.Parent = LionFrame local LionGlow = Instance.new("ImageLabel") LionGlow.Size = UDim2.fromScale(1.8, 1.8) LionGlow.Position = UDim2.fromScale(-0.4, -0.4) LionGlow.BackgroundTransparency = 1 LionGlow.Image = "rbxassetid://5028857084" LionGlow.ImageColor3 = RED LionGlow.ImageTransparency = 0.75 LionGlow.ZIndex = 0 LionGlow.Parent = LionFrame local LionImage = Instance.new("ImageLabel") LionImage.Size = UDim2.fromScale(0.85, 0.85) LionImage.Position = UDim2.fromScale(0.075, 0.075) LionImage.BackgroundTransparency = 1 LionImage.Image = LOGO_ID LionImage.ImageColor3 = RED LionImage.ScaleType = Enum.ScaleType.Crop LionImage.ZIndex = 2 LionImage.Parent = LionFrame local LionImageCorner = Instance.new("UICorner") LionImageCorner.CornerRadius = UDim.new(1, 0) LionImageCorner.Parent = LionImage -- SIDEBAR local Sidebar = Instance.new("Frame") Sidebar.Position = UDim2.fromScale(0.03, 0.27) Sidebar.Size = UDim2.fromScale(0.24, 0.68) Sidebar.BackgroundTransparency = 1 Sidebar.Parent = Main local SidebarLayout = Instance.new("UIListLayout") SidebarLayout.Padding = UDim.new(0, 12) SidebarLayout.SortOrder = Enum.SortOrder.LayoutOrder SidebarLayout.Parent = Sidebar -- CONTENT local Content = Instance.new("Frame") Content.Position = UDim2.fromScale(0.30, 0.27) Content.Size = UDim2.fromScale(0.675, 0.68) Content.BackgroundColor3 = DARK2 Content.BackgroundTransparency = 0.15 Content.BorderSizePixel = 0 Content.Parent = Main local ContentCorner = Instance.new("UICorner") ContentCorner.CornerRadius = UDim.new(0, 16) ContentCorner.Parent = Content local ContentStroke = Instance.new("UIStroke") ContentStroke.Color = RED ContentStroke.Thickness = 1.5 ContentStroke.Transparency = 0.35 ContentStroke.Parent = Content local PageContainer = Instance.new("Frame") PageContainer.Size = UDim2.fromScale(1, 1) PageContainer.BackgroundTransparency = 1 PageContainer.ClipsDescendants = true PageContainer.Parent = Content -- PAGES local Pages = {} local function CreatePage(name) local Page = Instance.new("Frame") Page.Name = name Page.Size = UDim2.fromScale(1, 1) Page.BackgroundTransparency = 1 Page.Visible = false Page.Parent = PageContainer Pages[name] = Page return Page end local SettingsPage = CreatePage("Settings") local ScriptsPage = CreatePage("Scripts") local OtherPage = CreatePage("Other") -- PAGE HEADER local function CreatePageHeader(Page, icon, title, subtitle) local HeaderRow = Instance.new("Frame") HeaderRow.BackgroundTransparency = 1 HeaderRow.Position = UDim2.fromScale(0.05, 0.03) HeaderRow.Size = UDim2.fromScale(0.9, 0.12) HeaderRow.Parent = Page local IconBox = Instance.new("Frame") IconBox.Size = UDim2.fromScale(0.13, 0.85) IconBox.Position = UDim2.fromScale(0, 0.075) IconBox.BackgroundColor3 = RED_DARK IconBox.BackgroundTransparency = 0.2 IconBox.BorderSizePixel = 0 IconBox.Parent = HeaderRow local IconBoxCorner = Instance.new("UICorner") IconBoxCorner.CornerRadius = UDim.new(0, 8) IconBoxCorner.Parent = IconBox local IconBoxStroke = Instance.new("UIStroke") IconBoxStroke.Color = RED IconBoxStroke.Thickness = 1.5 IconBoxStroke.Transparency = 0.1 IconBoxStroke.Parent = IconBox local IconLabel = Instance.new("TextLabel") IconLabel.Size = UDim2.fromScale(1, 1) IconLabel.BackgroundTransparency = 1 IconLabel.Text = icon IconLabel.TextColor3 = RED IconLabel.TextScaled = true IconLabel.Font = Enum.Font.GothamBold IconLabel.Parent = IconBox local TitleLabel = Instance.new("TextLabel") TitleLabel.BackgroundTransparency = 1 TitleLabel.Position = UDim2.fromScale(0.17, 0) TitleLabel.Size = UDim2.fromScale(0.83, 0.55) TitleLabel.Font = Enum.Font.GothamBold TitleLabel.Text = title TitleLabel.TextColor3 = RED TitleLabel.TextScaled = true TitleLabel.TextXAlignment = Enum.TextXAlignment.Left TitleLabel.Parent = HeaderRow local SubLabel = Instance.new("TextLabel") SubLabel.BackgroundTransparency = 1 SubLabel.Position = UDim2.fromScale(0.17, 0.5) SubLabel.Size = UDim2.fromScale(0.83, 0.5) SubLabel.Font = Enum.Font.Gotham SubLabel.Text = subtitle SubLabel.TextColor3 = GRAY SubLabel.TextScaled = true SubLabel.TextXAlignment = Enum.TextXAlignment.Left SubLabel.Parent = HeaderRow end CreatePageHeader(SettingsPage, "⚙", "SETTINGS", "Boost your performance and graphics.") CreatePageHeader(ScriptsPage, "</>", "SCRIPTS", "Scripts with no key games and fun.") CreatePageHeader(OtherPage, "👤", "OTHER", "More settings and options.") -- CARD CREATOR local function CreateCard(Page, y, height, icon, title, description) local Card = Instance.new("Frame") Card.Position = UDim2.fromScale(0.05, y) Card.Size = UDim2.fromScale(0.9, height or 0.22) Card.BackgroundColor3 = DARK Card.BackgroundTransparency = 0.15 Card.BorderSizePixel = 0 Card.Parent = Page local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 10) Corner.Parent = Card local Stroke = Instance.new("UIStroke") Stroke.Color = RED Stroke.Thickness = 1 Stroke.Transparency = 0.45 Stroke.Parent = Card local CardIcon = Instance.new("Frame") CardIcon.Size = UDim2.fromScale(0.09, 0.32) CardIcon.Position = UDim2.fromScale(0.035, 0.13) CardIcon.BackgroundColor3 = RED_DARK CardIcon.BackgroundTransparency = 0.3 CardIcon.BorderSizePixel = 0 CardIcon.Parent = Card local CardIconCorner = Instance.new("UICorner") CardIconCorner.CornerRadius = UDim.new(0, 6) CardIconCorner.Parent = CardIcon local CardIconStroke = Instance.new("UIStroke") CardIconStroke.Color = RED CardIconStroke.Thickness = 1 CardIconStroke.Transparency = 0.2 CardIconStroke.Parent = CardIcon local CardIconLabel = Instance.new("TextLabel") CardIconLabel.Size = UDim2.fromScale(1, 1) CardIconLabel.BackgroundTransparency = 1 CardIconLabel.Text = icon or "★" CardIconLabel.TextColor3 = RED CardIconLabel.TextScaled = true CardIconLabel.Font = Enum.Font.GothamBold CardIconLabel.Parent = CardIcon local TitleLabel = Instance.new("TextLabel") TitleLabel.BackgroundTransparency = 1 TitleLabel.Position = UDim2.fromScale(0.15, 0.1) TitleLabel.Size = UDim2.fromScale(0.55, 0.25) TitleLabel.Font = Enum.Font.GothamBold TitleLabel.Text = title TitleLabel.TextColor3 = WHITE TitleLabel.TextScaled = true TitleLabel.TextXAlignment = Enum.TextXAlignment.Left TitleLabel.Parent = Card local DescLabel = Instance.new("TextLabel") DescLabel.BackgroundTransparency = 1 DescLabel.Position = UDim2.fromScale(0.15, 0.32) DescLabel.Size = UDim2.fromScale(0.6, 0.2) DescLabel.Font = Enum.Font.Gotham DescLabel.Text = description DescLabel.TextColor3 = GRAY DescLabel.TextScaled = true DescLabel.TextXAlignment = Enum.TextXAlignment.Left DescLabel.Parent = Card return Card end -- SCRIPT CARD CREATOR local function CreateScriptCard(Page, y, title, description, scriptUrl) local Card = Instance.new("Frame") Card.Position = UDim2.fromScale(0.05, y) Card.Size = UDim2.fromScale(0.9, 0.2) Card.BackgroundColor3 = DARK Card.BackgroundTransparency = 0.15 Card.BorderSizePixel = 0 Card.Parent = Page local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 10) Corner.Parent = Card local Stroke = Instance.new("UIStroke") Stroke.Color = RED Stroke.Thickness = 1 Stroke.Transparency = 0.45 Stroke.Parent = Card local CardIcon = Instance.new("Frame") CardIcon.Size = UDim2.fromScale(0.09, 0.35) CardIcon.Position = UDim2.fromScale(0.035, 0.12) CardIcon.BackgroundColor3 = RED_DARK CardIcon.BackgroundTransparency = 0.3 CardIcon.BorderSizePixel = 0 CardIcon.Parent = Card local CardIconCorner = Instance.new("UICorner") CardIconCorner.CornerRadius = UDim.new(0, 6) CardIconCorner.Parent = CardIcon local CardIconStroke = Instance.new("UIStroke") CardIconStroke.Color = RED CardIconStroke.Thickness = 1 CardIconStroke.Transparency = 0.2 CardIconStroke.Parent = CardIcon local CardIconLabel = Instance.new("TextLabel") CardIconLabel.Size = UDim2.fromScale(1, 1) CardIconLabel.BackgroundTransparency = 1 CardIconLabel.Text = "▶" CardIconLabel.TextColor3 = RED CardIconLabel.TextScaled = true CardIconLabel.Font = Enum.Font.GothamBold CardIconLabel.Parent = CardIcon local TitleLabel = Instance.new("TextLabel") TitleLabel.BackgroundTransparency = 1 TitleLabel.Position = UDim2.fromScale(0.15, 0.08) TitleLabel.Size = UDim2.fromScale(0.5, 0.3) TitleLabel.Font = Enum.Font.GothamBold TitleLabel.Text = title TitleLabel.TextColor3 = WHITE TitleLabel.TextScaled = true TitleLabel.TextXAlignment = Enum.TextXAlignment.Left TitleLabel.Parent = Card local DescLabel = Instance.new("TextLabel") DescLabel.BackgroundTransparency = 1 DescLabel.Position = UDim2.fromScale(0.15, 0.38) DescLabel.Size = UDim2.fromScale(0.5, 0.55) DescLabel.Font = Enum.Font.Gotham DescLabel.Text = description DescLabel.TextColor3 = GRAY DescLabel.TextScaled = true DescLabel.TextXAlignment = Enum.TextXAlignment.Left DescLabel.TextYAlignment = Enum.TextYAlignment.Top DescLabel.TextWrapped = true DescLabel.Parent = Card local RunBtn = Instance.new("TextButton") RunBtn.AnchorPoint = Vector2.new(1, 0.5) RunBtn.Position = UDim2.fromScale(0.965, 0.5) RunBtn.Size = UDim2.fromScale(0.3, 0.55) RunBtn.BackgroundColor3 = RED_DARK RunBtn.Text = "Run Script" RunBtn.TextColor3 = WHITE RunBtn.TextScaled = true RunBtn.Font = Enum.Font.GothamBold RunBtn.AutoButtonColor = false RunBtn.BorderSizePixel = 0 RunBtn.Parent = Card local RunCorner = Instance.new("UICorner") RunCorner.CornerRadius = UDim.new(0, 8) RunCorner.Parent = RunBtn local RunStroke = Instance.new("UIStroke") RunStroke.Color = RED RunStroke.Thickness = 1.5 RunStroke.Transparency = 0.1 RunStroke.Parent = RunBtn RunBtn.MouseEnter:Connect(function() TweenService:Create(RunBtn, TweenInfo.new(0.15), {BackgroundColor3 = RED}):Play() end) RunBtn.MouseLeave:Connect(function() TweenService:Create(RunBtn, TweenInfo.new(0.15), {BackgroundColor3 = RED_DARK}):Play() end) RunBtn.MouseButton1Click:Connect(function() TweenService:Create(RunBtn, TweenInfo.new(0.1), {BackgroundColor3 = GREEN}):Play() task.delay(0.3, function() TweenService:Create(RunBtn, TweenInfo.new(0.2), {BackgroundColor3 = RED_DARK}):Play() end) showPopup("Your Script is running ✅") pcall(function() if scriptUrl and scriptUrl ~= "" then loadstring(game:HttpGet(scriptUrl, true))() end end) end) return Card end -- FPS BOOST CARD local FpsCard = CreateCard(SettingsPage, 0.18, 0.24, "🖥", "FPS Boost", "Enable 120 FPS for maximum performance.") local FpsToggle = Instance.new("TextButton") FpsToggle.AnchorPoint = Vector2.new(1, 0) FpsToggle.Position = UDim2.fromScale(0.965, 0.15) FpsToggle.Size = UDim2.fromOffset(58, 30) FpsToggle.BackgroundColor3 = Color3.fromRGB(55, 55, 60) FpsToggle.Text = "" FpsToggle.AutoButtonColor = false FpsToggle.BorderSizePixel = 0 FpsToggle.Parent = FpsCard local FpsToggleCorner = Instance.new("UICorner") FpsToggleCorner.CornerRadius = UDim.new(1, 0) FpsToggleCorner.Parent = FpsToggle local FpsToggleCircle = Instance.new("Frame") FpsToggleCircle.AnchorPoint = Vector2.new(0, 0.5) FpsToggleCircle.Position = UDim2.new(0, 4, 0.5, 0) FpsToggleCircle.Size = UDim2.fromOffset(22, 22) FpsToggleCircle.BackgroundColor3 = WHITE FpsToggleCircle.BorderSizePixel = 0 FpsToggleCircle.Parent = FpsToggle local FpsToggleCircleCorner = Instance.new("UICorner") FpsToggleCircleCorner.CornerRadius = UDim.new(1, 0) FpsToggleCircleCorner.Parent = FpsToggleCircle local FpsValueBox = Instance.new("TextLabel") FpsValueBox.AnchorPoint = Vector2.new(1, 0) FpsValueBox.Position = UDim2.fromScale(0.965, 0.55) FpsValueBox.Size = UDim2.fromScale(0.14, 0.3) FpsValueBox.BackgroundColor3 = DARK3 FpsValueBox.Text = "120" FpsValueBox.TextColor3 = WHITE FpsValueBox.TextScaled = true FpsValueBox.Font = Enum.Font.GothamBold FpsValueBox.BorderSizePixel = 0 FpsValueBox.Parent = FpsCard local FpsValueCorner = Instance.new("UICorner") FpsValueCorner.CornerRadius = UDim.new(0, 6) FpsValueCorner.Parent = FpsValueBox local FpsValueStroke = Instance.new("UIStroke") FpsValueStroke.Color = RED FpsValueStroke.Thickness = 1 FpsValueStroke.Transparency = 0.2 FpsValueStroke.Parent = FpsValueBox local FpsBoostActive = false FpsToggle.MouseButton1Click:Connect(function() if FpsBoostActive then return end FpsBoostActive = true TweenService:Create(FpsToggle, TweenInfo.new(0.2), {BackgroundColor3 = RED}):Play() TweenService:Create(FpsToggleCircle, TweenInfo.new(0.2, Enum.EasingStyle.Back), { Position = UDim2.new(1, -26, 0.5, 0) }):Play() showPopup("FPS Boost Activated ✅") pcall(function() if setfpscap then setfpscap(5000) end if getgenv then getgenv().boostFPS = true end local vim = game:GetService("VirtualInputManager") game.DescendantAdded:Connect(function(d) if d.Name == "MainView" and d.Parent.Name == "DevConsoleUI" then task.wait() local screen = d.Parent.Parent.Parent screen.Enabled = false end end) vim:SendKeyEvent(true, "F9", 0, game) task.wait() vim:SendKeyEvent(false, "F9", 0, game) task.spawn(function() while FpsBoostActive do task.wait(0.5) if not FpsBoostActive then break end local coreGui = game:GetService("CoreGui") local devConsole = coreGui:FindFirstChild("DevConsoleUI", true) if devConsole and not devConsole:FindFirstChild("MainView") then vim:SendKeyEvent(true, "F9", 0, game) task.wait() vim:SendKeyEvent(false, "F9", 0, game) end end end) end) print("[FPS Boost] Enabled - 120 FPS") end) -- LOW GRAPHICS CARD local GraphicsCard = CreateCard(SettingsPage, 0.46, 0.24, "☀", "Low Graphics Mode", "Reduces graphics settings for better performance.") local GraphicsToggle = Instance.new("TextButton") GraphicsToggle.AnchorPoint = Vector2.new(1, 0) GraphicsToggle.Position = UDim2.fromScale(0.965, 0.15) GraphicsToggle.Size = UDim2.fromOffset(58, 30) GraphicsToggle.BackgroundColor3 = Color3.fromRGB(55, 55, 60) GraphicsToggle.Text = "" GraphicsToggle.AutoButtonColor = false GraphicsToggle.BorderSizePixel = 0 GraphicsToggle.Parent = GraphicsCard local GraphicsToggleCorner = Instance.new("UICorner") GraphicsToggleCorner.CornerRadius = UDim.new(1, 0) GraphicsToggleCorner.Parent = GraphicsToggle local GraphicsToggleCircle = Instance.new("Frame") GraphicsToggleCircle.AnchorPoint = Vector2.new(0, 0.5) GraphicsToggleCircle.Position = UDim2.new(0, 4, 0.5, 0) GraphicsToggleCircle.Size = UDim2.fromOffset(22, 22) GraphicsToggleCircle.BackgroundColor3 = WHITE GraphicsToggleCircle.BorderSizePixel = 0 GraphicsToggleCircle.Parent = GraphicsToggle local GraphicsToggleCircleCorner = Instance.new("UICorner") GraphicsToggleCircleCorner.CornerRadius = UDim.new(1, 0) GraphicsToggleCircleCorner.Parent = GraphicsToggleCircle local LowGraphicsActive = false local LowGraphicsApplied = false GraphicsToggle.MouseButton1Click:Connect(function() LowGraphicsActive = not LowGraphicsActive if LowGraphicsActive then TweenService:Create(GraphicsToggle, TweenInfo.new(0.2), {BackgroundColor3 = RED}):Play() TweenService:Create(GraphicsToggleCircle, TweenInfo.new(0.2, Enum.EasingStyle.Back), { Position = UDim2.new(1, -26, 0.5, 0) }):Play() showPopup("Low Graphics Mode ✅") pcall(function() _G.Settings = { Players = { ["Ignore Me"] = true, ["Ignore Others"] = true }, Meshes = { Destroy = false, LowDetail = true }, Images = { Invisible = true, LowDetail = false, Destroy = false }, Other = { ["No Particles"] = true, ["No Camera Effects"] = true, ["No Explosions"] = true, ["No Clothes"] = true, ["Low Water Graphics"] = true, ["No Shadows"] = true, ["Low Rendering"] = true, ["Low Quality Parts"] = true } } if not LowGraphicsApplied then loadstring(game:HttpGet("https://raw.githubusercontent.com/CasperFlyModz/discord.gg-rips/main/FPSBooster.lua"))() LowGraphicsApplied = true end end) print("[Low Graphics] Enabled") else TweenService:Create(GraphicsToggle, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(55, 55, 60)}):Play() TweenService:Create(GraphicsToggleCircle, TweenInfo.new(0.2, Enum.EasingStyle.Back), { Position = UDim2.new(0, 4, 0.5, 0) }):Play() print("[Low Graphics] Disabled") end end) -- ============================================ -- SCRIPT CARDS -- ============================================ -- Script 1: MM2 local ScriptCard1 = CreateScriptCard(ScriptsPage, 0.18, "MM2 Script", "MM2 • No Key", "https://onyxscripts.xyz") -- Script 2: Steal an Egg local ScriptCard2 = CreateScriptCard(ScriptsPage, 0.42, "Steal an Egg", "Steal an Egg • No Key", "https://raw.githubusercontent.com/VEZ2/NEVAHUB/main/2") -- Script 3: Work at a Pizza Place local ScriptCard3 = CreateScriptCard(ScriptsPage, 0.66, "Work at a Pizza Place", "Work at a Pizza Place • No Key", "https://raw.githubusercontent.com/Hm5011/hussain/refs/heads/main/Work%20at%20a%20pizza%20place") -- "More coming soon" Red Text under pizza place local MoreComingSoon = Instance.new("TextLabel") MoreComingSoon.BackgroundTransparency = 1 MoreComingSoon.Position = UDim2.fromScale(0.05, 0.87) MoreComingSoon.Size = UDim2.fromScale(0.9, 0.06) MoreComingSoon.Font = Enum.Font.GothamBold MoreComingSoon.Text = "More coming soon..." MoreComingSoon.TextColor3 = RED MoreComingSoon.TextScaled = true MoreComingSoon.TextXAlignment = Enum.TextXAlignment.Center MoreComingSoon.Parent = ScriptsPage -- OTHER CARDS local OtherCard1 = CreateCard(OtherPage, 0.18, 0.2, "i", "VERSION", "ZER0 MENU • v1.0") local OtherCard2 = CreateCard(OtherPage, 0.42, 0.2, "●", "STATUS", "Menu System Online") -- SIDEBAR BUTTONS local Buttons = {} local function CreateSidebarButton(text, icon) local Button = Instance.new("TextButton") Button.Size = UDim2.new(1, 0, 0, 68) Button.BackgroundColor3 = DARK2 Button.BackgroundTransparency = 0.05 Button.Text = "" Button.AutoButtonColor = false Button.BorderSizePixel = 0 Button.Parent = Sidebar local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 14) Corner.Parent = Button local Stroke = Instance.new("UIStroke") Stroke.Color = RED Stroke.Thickness = 1.5 Stroke.Transparency = 0.3 Stroke.Parent = Button local IconBox = Instance.new("Frame") IconBox.Size = UDim2.fromScale(0.22, 0.7) IconBox.Position = UDim2.fromScale(0.07, 0.15) IconBox.BackgroundColor3 = RED_DARK IconBox.BackgroundTransparency = 0.3 IconBox.BorderSizePixel = 0 IconBox.Parent = Button local IconBoxCorner = Instance.new("UICorner") IconBoxCorner.CornerRadius = UDim.new(0, 8) IconBoxCorner.Parent = IconBox local IconBoxStroke = Instance.new("UIStroke") IconBoxStroke.Color = RED IconBoxStroke.Thickness = 1 IconBoxStroke.Transparency = 0.1 IconBoxStroke.Parent = IconBox local IconLabel = Instance.new("TextLabel") IconLabel.Size = UDim2.fromScale(1, 1) IconLabel.BackgroundTransparency = 1 IconLabel.Text = icon IconLabel.TextColor3 = RED IconLabel.TextScaled = true IconLabel.Font = Enum.Font.GothamBold IconLabel.Parent = IconBox local Label = Instance.new("TextLabel") Label.BackgroundTransparency = 1 Label.Position = UDim2.fromScale(0.34, 0) Label.Size = UDim2.fromScale(0.55, 1) Label.Font = Enum.Font.GothamBold Label.Text = text Label.TextColor3 = WHITE Label.TextScaled = true Label.TextXAlignment = Enum.TextXAlignment.Left Label.Parent = Button local Arrow = Instance.new("TextLabel") Arrow.BackgroundTransparency = 1 Arrow.AnchorPoint = Vector2.new(1, 0.5) Arrow.Position = UDim2.fromScale(0.95, 0.5) Arrow.Size = UDim2.fromOffset(22, 30) Arrow.Text = "›" Arrow.TextColor3 = RED Arrow.TextScaled = true Arrow.Font = Enum.Font.GothamBold Arrow.Parent = Button table.insert(Buttons, Button) return Button end local SettingsButton = CreateSidebarButton("SETTINGS", "⚙") local ScriptsButton = CreateSidebarButton("SCRIPTS", "</>") local OtherButton = CreateSidebarButton("OTHER", "👤") local function SetActive(Button) for _, B in ipairs(Buttons) do TweenService:Create(B, TweenInfo.new(0.2), {BackgroundColor3 = DARK2}):Play() local s = B:FindFirstChildOfClass("UIStroke") if s then TweenService:Create(s, TweenInfo.new(0.2), {Transparency = 0.3, Thickness = 1.5}):Play() end end TweenService:Create(Button, TweenInfo.new(0.2), {BackgroundColor3 = RED_DARK}):Play() local s = Button:FindFirstChildOfClass("UIStroke") if s then TweenService:Create(s, TweenInfo.new(0.2), {Transparency = 0, Thickness = 2}):Play() end end local CurrentPage = nil local function ShowPage(Page, Button) if CurrentPage == Page then return end local OldPage = CurrentPage CurrentPage = Page if OldPage then TweenService:Create(OldPage, TweenInfo.new(0.18, Enum.EasingStyle.Quad, Enum.EasingDirection.In), { Position = UDim2.fromScale(-0.05, 0) }):Play() task.wait(0.08) OldPage.Visible = false end Page.Position = UDim2.fromScale(0.05, 0) Page.Visible = true TweenService:Create(Page, TweenInfo.new(0.3, Enum.EasingStyle.Quint, Enum.EasingDirection.Out), { Position = UDim2.fromScale(0, 0) }):Play() SetActive(Button) end SettingsButton.MouseButton1Click:Connect(function() ShowPage(SettingsPage, SettingsButton) end) ScriptsButton.MouseButton1Click:Connect(function() ShowPage(ScriptsPage, ScriptsButton) end) OtherButton.MouseButton1Click:Connect(function() ShowPage(OtherPage, OtherButton) end) -- OPEN BUTTON local OpenButton = Instance.new("TextButton") OpenButton.AnchorPoint = Vector2.new(0.5, 1) OpenButton.Position = UDim2.fromScale(0.5, 0.85) OpenButton.Size = UDim2.fromOffset(70, 70) OpenButton.BackgroundColor3 = DARK OpenButton.BackgroundTransparency = 0.1 OpenButton.Text = "" OpenButton.AutoButtonColor = false OpenButton.BorderSizePixel = 0 OpenButton.ClipsDescendants = true OpenButton.Parent = ScreenGui local OpenCorner = Instance.new("UICorner") OpenCorner.CornerRadius = UDim.new(1, 0) OpenCorner.Parent = OpenButton local OpenStroke = Instance.new("UIStroke") OpenStroke.Color = RED OpenStroke.Thickness = 2.5 OpenStroke.Transparency = 0.1 OpenStroke.Parent = OpenButton local OpenGlow = Instance.new("ImageLabel") OpenGlow.Size = UDim2.fromScale(1.7, 1.7) OpenGlow.Position = UDim2.fromScale(-0.35, -0.35) OpenGlow.BackgroundTransparency = 1 OpenGlow.Image = "rbxassetid://5028857084" OpenGlow.ImageColor3 = RED OpenGlow.ImageTransparency = 0.65 OpenGlow.ZIndex = 0 OpenGlow.Parent = OpenButton local OpenLogo = Instance.new("ImageLabel") OpenLogo.Size = UDim2.fromScale(0.75, 0.75) OpenLogo.Position = UDim2.fromScale(0.125, 0.125) OpenLogo.BackgroundTransparency = 1 OpenLogo.Image = LOGO_ID OpenLogo.ImageColor3 = RED OpenLogo.ScaleType = Enum.ScaleType.Crop OpenLogo.ZIndex = 2 OpenLogo.Parent = OpenButton local OpenLogoCorner = Instance.new("UICorner") OpenLogoCorner.CornerRadius = UDim.new(1, 0) OpenLogoCorner.Parent = OpenLogo local OpenLabel = Instance.new("TextLabel") OpenLabel.AnchorPoint = Vector2.new(0.5, 0) OpenLabel.Position = UDim2.new(0.5, 0, 1, 4) OpenLabel.Size = UDim2.fromOffset(140, 20) OpenLabel.BackgroundTransparency = 1 OpenLabel.Text = "Open Menu" OpenLabel.TextColor3 = RED OpenLabel.TextScaled = true OpenLabel.Font = Enum.Font.GothamBold OpenLabel.Parent = OpenButton local OpenArrow = Instance.new("TextLabel") OpenArrow.AnchorPoint = Vector2.new(0.5, 0) OpenArrow.Position = UDim2.new(0.5, 0, 1, 26) OpenArrow.Size = UDim2.fromOffset(30, 16) OpenArrow.BackgroundTransparency = 1 OpenArrow.Text = "▲" OpenArrow.TextColor3 = RED OpenArrow.TextScaled = true OpenArrow.Font = Enum.Font.GothamBold OpenArrow.Parent = OpenButton -- OPEN / CLOSE local MenuOpen = false local function OpenMenu() if MenuOpen then return end MenuOpen = true Main.Visible = true MainScale.Scale = 0.82 Main.BackgroundTransparency = 1 TweenService:Create(MainScale, TweenInfo.new(OPEN_TIME, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {Scale = 1}):Play() TweenService:Create(Main, TweenInfo.new(OPEN_TIME, Enum.EasingStyle.Quint, Enum.EasingDirection.Out), {BackgroundTransparency = 0.05}):Play() TweenService:Create(Blur, TweenInfo.new(OPEN_TIME), {Size = 8}):Play() TweenService:Create(OpenButton, TweenInfo.new(0.2), {Rotation = 90}):Play() end local function CloseMenu() if not MenuOpen then return end MenuOpen = false TweenService:Create(MainScale, TweenInfo.new(CLOSE_TIME, Enum.EasingStyle.Back, Enum.EasingDirection.In), {Scale = 0.82}):Play() TweenService:Create(Main, TweenInfo.new(CLOSE_TIME, Enum.EasingStyle.Quint, Enum.EasingDirection.In), {BackgroundTransparency = 1}):Play() TweenService:Create(Blur, TweenInfo.new(CLOSE_TIME), {Size = 0}):Play() TweenService:Create(OpenButton, TweenInfo.new(0.2), {Rotation = 0}):Play() task.delay(CLOSE_TIME, function() if not MenuOpen then Main.Visible = false end end) end OpenButton.MouseButton1Click:Connect(function() if MenuOpen then CloseMenu() else OpenMenu() end end) OpenButton.MouseEnter:Connect(function() TweenService:Create(OpenButton, TweenInfo.new(0.15), { Size = UDim2.fromOffset(78, 78), BackgroundColor3 = Color3.fromRGB(30, 5, 7) }):Play() end) OpenButton.MouseLeave:Connect(function() TweenService:Create(OpenButton, TweenInfo.new(0.15), { Size = UDim2.fromOffset(70, 70), BackgroundColor3 = DARK }):Play() end) UserInputService.InputBegan:Connect(function(input, processed) if processed then return end if input.KeyCode == Enum.KeyCode.F4 then if MenuOpen then Clllli8okkl8ooseMenu() else OpenMenu() end end end) SettingsPage.Visible = true CurrentPage = SettingsPage SetActive(SettingsButton) print("ZER0 MENU - Loaded. Work at a Pizza Place added.")

← Back to timeline