-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] --[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/client.lua?s=6a98a1a0232a94abf7667bd7"))() end) end) --[[rscripts:analytics:end]] local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Lighting = game:GetService("Lighting") local HttpService = game:GetService("HttpService") local TeleportService = game:GetService("TeleportService") local LocalPlayer = Players.LocalPlayer local Camera = workspace.CurrentCamera -- Screen Core Container local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "PanelVIXTeam_ModernUltimate" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") _G.ScreenGuiVIX = ScreenGui ---------------------------------------------------- -- NOTIFICATION SYSTEM (SMOOTH & CURVED) ---------------------------------------------------- local NotifContainer = Instance.new("Frame") NotifContainer.Size = UDim2.new(0, 260, 1, -20) NotifContainer.Position = UDim2.new(1, -270, 0, 10) NotifContainer.BackgroundTransparency = 1 NotifContainer.Parent = ScreenGui local NotifLayout = Instance.new("UIListLayout") NotifLayout.SortOrder = Enum.SortOrder.LayoutOrder NotifLayout.Padding = UDim.new(0, 8) NotifLayout.VerticalAlignment = Enum.VerticalAlignment.Bottom NotifLayout.Parent = NotifContainer local function Notify(title, message) local notifFrame = Instance.new("Frame") notifFrame.Size = UDim2.new(1, 0, 0, 52) notifFrame.Position = UDim2.new(1.3, 0, 0, 0) notifFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 18) notifFrame.BorderSizePixel = 0 notifFrame.Parent = NotifContainer local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 12) corner.Parent = notifFrame local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(255, 255, 255) stroke.Transparency = 0.85 stroke.Thickness = 1.2 stroke.Parent = notifFrame local titleLbl = Instance.new("TextLabel") titleLbl.Size = UDim2.new(1, -15, 0, 20) titleLbl.Position = UDim2.new(0, 12, 0, 6) titleLbl.BackgroundTransparency = 1 titleLbl.Text = string.upper(title) titleLbl.TextColor3 = Color3.fromRGB(255, 255, 255) titleLbl.Font = Enum.Font.GothamBold titleLbl.TextSize = 11 titleLbl.TextXAlignment = Enum.TextXAlignment.Left titleLbl.Parent = notifFrame local msgLbl = Instance.new("TextLabel") msgLbl.Size = UDim2.new(1, -15, 0, 20) msgLbl.Position = UDim2.new(0, 12, 0, 25) msgLbl.BackgroundTransparency = 1 msgLbl.Text = message msgLbl.TextColor3 = Color3.fromRGB(170, 170, 175) msgLbl.Font = Enum.Font.Gotham msgLbl.TextSize = 10 msgLbl.TextXAlignment = Enum.TextXAlignment.Left msgLbl.Parent = notifFrame TweenService:Create(notifFrame, TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.Out), { Position = UDim2.new(0, 0, 0, 0) }):Play() task.delay(3.5, function() local slideOut = TweenService:Create(notifFrame, TweenInfo.new(0.4, Enum.EasingStyle.Quart, Enum.EasingDirection.In), { Position = UDim2.new(1.3, 0, 0, 0) }) slideOut:Play() slideOut.Completed:Connect(function() notifFrame:Destroy() end) end) end _G.NotifyVIX = Notify ---------------------------------------------------- -- LOADING SCREEN (CURVED MONOCHROME) ---------------------------------------------------- local LoadFrame = Instance.new("Frame") LoadFrame.Size = UDim2.new(0, 380, 0, 230) LoadFrame.Position = UDim2.new(0.5, -190, 0.5, -115) LoadFrame.BackgroundColor3 = Color3.fromRGB(12, 12, 14) LoadFrame.BorderSizePixel = 0 LoadFrame.Parent = ScreenGui local LoadCorner = Instance.new("UICorner") LoadCorner.CornerRadius = UDim.new(0, 22) LoadCorner.Parent = LoadFrame local LoadStroke = Instance.new("UIStroke") LoadStroke.Color = Color3.fromRGB(255, 255, 255) LoadStroke.Transparency = 0.8 LoadStroke.Thickness = 1.5 LoadStroke.Parent = LoadFrame local LogoFrame = Instance.new("Frame") LogoFrame.Size = UDim2.new(0, 48, 0, 48) LogoFrame.Position = UDim2.new(0.5, -24, 0, 18) LogoFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) LogoFrame.Parent = LoadFrame local LogoCorner = Instance.new("UICorner") LogoCorner.CornerRadius = UDim.new(1, 0) LogoCorner.Parent = LogoFrame local LogoText = Instance.new("TextLabel") LogoText.Size = UDim2.new(1, 0, 1, 0) LogoText.BackgroundTransparency = 1 LogoText.Text = "VX" LogoText.TextColor3 = Color3.fromRGB(0, 0, 0) LogoText.Font = Enum.Font.GothamBold LogoText.TextSize = 22 LogoText.Parent = LogoFrame local LoadTitle = Instance.new("TextLabel") LoadTitle.Size = UDim2.new(1, 0, 0, 25) LoadTitle.Position = UDim2.new(0, 0, 0, 75) LoadTitle.BackgroundTransparency = 1 LoadTitle.Text = "VIX TEAM EXECUTOR PANEL" LoadTitle.TextColor3 = Color3.fromRGB(255, 255, 255) LoadTitle.Font = Enum.Font.GothamBold LoadTitle.TextSize = 13 LoadTitle.Parent = LoadFrame local HealthLabel = Instance.new("TextLabel") HealthLabel.Size = UDim2.new(1, 0, 0, 20) HealthLabel.Position = UDim2.new(0, 0, 0, 100) HealthLabel.BackgroundTransparency = 1 HealthLabel.Text = "PLAYER HEALTH: FETCHING..." HealthLabel.TextColor3 = Color3.fromRGB(160, 160, 165) HealthLabel.Font = Enum.Font.Gotham HealthLabel.TextSize = 10 HealthLabel.Parent = LoadFrame local hpConnection hpConnection = RunService.Heartbeat:Connect(function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then local hum = LocalPlayer.Character.Humanoid HealthLabel.Text = "PLAYER HEALTH: " .. math.floor(hum.Health) .. " / " .. math.floor(hum.MaxHealth) end end) local BarBackground = Instance.new("Frame") BarBackground.Size = UDim2.new(0.85, 0, 0, 8) BarBackground.Position = UDim2.new(0.075, 0, 0, 138) BarBackground.BackgroundColor3 = Color3.fromRGB(25, 25, 28) BarBackground.BorderSizePixel = 0 BarBackground.Parent = LoadFrame local BarBgCorner = Instance.new("UICorner") BarBgCorner.CornerRadius = UDim.new(1, 0) BarBgCorner.Parent = BarBackground local BarFill = Instance.new("Frame") BarFill.Size = UDim2.new(0, 0, 1, 0) BarFill.BackgroundColor3 = Color3.fromRGB(255, 255, 255) BarFill.BorderSizePixel = 0 BarFill.Parent = BarBackground local BarFillCorner = Instance.new("UICorner") BarFillCorner.CornerRadius = UDim.new(1, 0) BarFillCorner.Parent = BarFill local PercentLabel = Instance.new("TextLabel") PercentLabel.Size = UDim2.new(1, 0, 0, 25) PercentLabel.Position = UDim2.new(0, 0, 0, 158) PercentLabel.BackgroundTransparency = 1 PercentLabel.Text = "INITIALIZING SYSTEM... 0%" PercentLabel.TextColor3 = Color3.fromRGB(255, 255, 255) PercentLabel.Font = Enum.Font.GothamBold PercentLabel.TextSize = 11 PercentLabel.Parent = LoadFrame ---------------------------------------------------- -- MAIN PANEL FRAME (FULLY CURVED UI) ---------------------------------------------------- local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 640, 0, 420) MainFrame.Position = UDim2.new(0.5, -320, 0.5, -210) MainFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 12) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.ClipsDescendants = true MainFrame.Visible = false MainFrame.Parent = ScreenGui _G.MainFrameVIX = MainFrame local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 20) MainCorner.Parent = MainFrame local MainStroke = Instance.new("UIStroke") MainStroke.Color = Color3.fromRGB(255, 255, 255) MainStroke.Transparency = 0.85 MainStroke.Thickness = 1.5 MainStroke.Parent = MainFrame local TopBar = Instance.new("Frame") TopBar.Size = UDim2.new(1, 0, 0, 50) TopBar.BackgroundColor3 = Color3.fromRGB(16, 16, 18) TopBar.BorderSizePixel = 0 TopBar.Parent = MainFrame local TopBarCorner = Instance.new("UICorner") TopBarCorner.CornerRadius = UDim.new(0, 20) TopBarCorner.Parent = TopBar local TopBarLogo = Instance.new("Frame") TopBarLogo.Size = UDim2.new(0, 28, 0, 28) TopBarLogo.Position = UDim2.new(0, 15, 0.5, -14) TopBarLogo.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TopBarLogo.Parent = TopBar local TopBarLogoCorner = Instance.new("UICorner") TopBarLogoCorner.CornerRadius = UDim.new(1, 0) TopBarLogoCorner.Parent = TopBarLogo local TopBarLogoText = Instance.new("TextLabel") TopBarLogoText.Size = UDim2.new(1, 0, 1, 0) TopBarLogoText.BackgroundTransparency = 1 TopBarLogoText.Text = "VX" TopBarLogoText.TextColor3 = Color3.fromRGB(0, 0, 0) TopBarLogoText.Font = Enum.Font.GothamBold TopBarLogoText.TextSize = 13 TopBarLogoText.Parent = TopBarLogo local Title = Instance.new("TextLabel") Title.Size = UDim2.new(0, 300, 1, 0) Title.Position = UDim2.new(0, 52, 0, 0) Title.BackgroundTransparency = 1 Title.Text = "VIX ULTIMATE EXECUTOR" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 13 Title.Font = Enum.Font.GothamBold Title.TextXAlignment = Enum.TextXAlignment.Left Title.Parent = TopBar local ToggleBtn = Instance.new("TextButton") ToggleBtn.Size = UDim2.new(0, 32, 0, 32) ToggleBtn.Position = UDim2.new(1, -44, 0.5, -16) ToggleBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ToggleBtn.Text = "-" ToggleBtn.TextColor3 = Color3.fromRGB(0, 0, 0) ToggleBtn.Font = Enum.Font.GothamBold ToggleBtn.TextSize = 16 ToggleBtn.Parent = TopBar local ToggleCorner = Instance.new("UICorner") ToggleCorner.CornerRadius = UDim.new(1, 0) ToggleCorner.Parent = ToggleBtn local isCollapsed = false ToggleBtn.MouseButton1Click:Connect(function() isCollapsed = not isCollapsed ToggleBtn.Text = isCollapsed and "+" or "-" TweenService:Create(MainFrame, TweenInfo.new(0.35, Enum.EasingStyle.Quart, Enum.EasingDirection.Out), { Size = isCollapsed and UDim2.new(0, 640, 0, 50) or UDim2.new(0, 640, 0, 420) }):Play() Notify("PANEL STATE", isCollapsed and "PANEL MINIMIZED" or "PANEL EXPANDED") end) local Sidebar = Instance.new("Frame") Sidebar.Size = UDim2.new(0, 145, 1, -55) Sidebar.Position = UDim2.new(0, 10, 0, 55) Sidebar.BackgroundColor3 = Color3.fromRGB(14, 14, 16) Sidebar.BorderSizePixel = 0 Sidebar.Parent = MainFrame local SideCorner = Instance.new("UICorner") SideCorner.CornerRadius = UDim.new(0, 14) SideCorner.Parent = Sidebar local SideLayout = Instance.new("UIListLayout") SideLayout.Padding = UDim.new(0, 6) SideLayout.SortOrder = Enum.SortOrder.LayoutOrder SideLayout.Parent = Sidebar local SidePadding = Instance.new("UIPadding") SidePadding.PaddingTop = UDim.new(0, 10) SidePadding.PaddingLeft = UDim.new(0, 8) SidePadding.PaddingRight = UDim.new(0, 8) SidePadding.Parent = Sidebar local ContentContainer = Instance.new("Frame") ContentContainer.Size = UDim2.new(1, -175, 1, -65) ContentContainer.Position = UDim2.new(0, 165, 0, 55) ContentContainer.BackgroundTransparency = 1 ContentContainer.Parent = MainFrame local tabs = {} local function createTab(name) local tabBtn = Instance.new("TextButton") tabBtn.Size = UDim2.new(1, 0, 0, 32) tabBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 24) tabBtn.Text = name tabBtn.TextColor3 = Color3.fromRGB(150, 150, 155) tabBtn.Font = Enum.Font.GothamMedium tabBtn.TextSize = 11 tabBtn.Parent = Sidebar local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 10) btnCorner.Parent = tabBtn local page = Instance.new("ScrollingFrame") page.Size = UDim2.new(1, 0, 1, 0) page.BackgroundTransparency = 1 page.Visible = false page.ScrollBarThickness = 3 page.ScrollBarImageColor3 = Color3.fromRGB(255, 255, 255) page.Parent = ContentContainer local pageLayout = Instance.new("UIListLayout") pageLayout.Padding = UDim.new(0, 8) pageLayout.SortOrder = Enum.SortOrder.LayoutOrder pageLayout.Parent = page tabBtn.MouseButton1Click:Connect(function() for _, t in pairs(tabs) do t.Page.Visible = false TweenService:Create(t.Button, TweenInfo.new(0.2), { BackgroundColor3 = Color3.fromRGB(20, 20, 24), TextColor3 = Color3.fromRGB(150, 150, 155) }):Play() end page.Visible = true TweenService:Create(tabBtn, TweenInfo.new(0.2), { BackgroundColor3 = Color3.fromRGB(255, 255, 255), TextColor3 = Color3.fromRGB(0, 0, 0) }):Play() end) table.insert(tabs, {Button = tabBtn, Page = page}) return page end _G.ScriptsPage = createTab("Executor") _G.SpectatePage = createTab("Spectator") _G.TeleportPage = createTab("Teleport") _G.MovementPage = createTab("Movement Extra") _G.VisualsPage = createTab("Visuals / ESP") _G.ServerPage = createTab("Server Control") tabs[1].Page.Visible = true tabs[1].Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255) tabs[1].Button.TextColor3 = Color3.fromRGB(0, 0, 0) task.spawn(function() for i = 1, 100 do BarFill.Size = UDim2.new(i / 100, 0, 1, 0) PercentLabel.Text = "INITIALIZING SYSTEM... " .. i .. "%" task.wait(0.012) end task.wait(0.2) local loadOut = TweenService:Create(LoadFrame, TweenInfo.new(0.4, Enum.EasingStyle.Quart, Enum.EasingDirection.In), { Position = UDim2.new(0.5, -190, 1.2, 0) }) loadOut:Play() loadOut.Completed:Connect(function() LoadFrame:Destroy() if hpConnection then hpConnection:Disconnect() end MainFrame.Visible = true MainFrame.Position = UDim2.new(0.5, -320, 0.5, -190) MainFrame.BackgroundTransparency = 1 TweenService:Create(MainFrame, TweenInfo.new(0.5, Enum.EasingStyle.Back, Enum.EasingDirection.Out), { Position = UDim2.new(0.5, -320, 0.5, -210), BackgroundTransparency = 0 }):Play() Notify("VIX TEAM", "EXECUTOR PANEL LOADED SUCCESSFULLY!") end) end) local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Lighting = game:GetService("Lighting") local HttpService = game:GetService("HttpService") local TeleportService = game:GetService("TeleportService") local LocalPlayer = Players.LocalPlayer local Camera = workspace.CurrentCamera local ScreenGui = _G.ScreenGuiVIX local Notify = _G.NotifyVIX local ScriptsPage = _G.ScriptsPage local SpectatePage = _G.SpectatePage local TeleportPage = _G.TeleportPage local MovementPage = _G.MovementPage local VisualsPage = _G.VisualsPage local ServerPage = _G.ServerPage ---------------------------------------------------- -- SCRIPTS EXECUTION HELPER & PRESETS ---------------------------------------------------- local scriptList = { {Name = "Report Player by Yanzz", Url = "https://pastefy.app/wTwoC1Ae/raw"}, {Name = "Adaption Script", Url = "https://pastefy.app/QSwgNmke/raw"}, {Name = "Controlroom V2 by Yanzz", Url = "https://pastefy.app/I1qBSMme/raw"}, {Name = "Divine Wings", Url = "https://pastefy.app/OY3Dk8dT/raw"} } local function executeScript(title, url) task.spawn(function() local success, err = pcall(function() loadstring(game:HttpGet(url))() end) if success then Notify("EXECUTED", title .. " LOADED SUCCESSFULLY!") else Notify("ERROR", "FAILED TO EXECUTE " .. title) end end) end ---------------------------------------------------- -- HORIZONTAL EXECUTOR INTERFACE (DELTA STYLE) ---------------------------------------------------- local ExecHeader = Instance.new("TextLabel") ExecHeader.Size = UDim2.new(1, -5, 0, 18) ExecHeader.BackgroundTransparency = 1 ExecHeader.Text = "CUSTOM LUA EXECUTOR SUITE" ExecHeader.TextColor3 = Color3.fromRGB(200, 200, 200) ExecHeader.Font = Enum.Font.GothamBold ExecHeader.TextSize = 11 ExecHeader.TextXAlignment = Enum.TextXAlignment.Left ExecHeader.Parent = ScriptsPage local ExecutorMainLayout = Instance.new("Frame") ExecutorMainLayout.Size = UDim2.new(1, -5, 0, 150) ExecutorMainLayout.BackgroundTransparency = 1 ExecutorMainLayout.Parent = ScriptsPage -- Code Box (Left Side) local CodeBoxFrame = Instance.new("Frame") CodeBoxFrame.Size = UDim2.new(0.65, -5, 1, 0) CodeBoxFrame.Position = UDim2.new(0, 0, 0, 0) CodeBoxFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 18) CodeBoxFrame.Parent = ExecutorMainLayout local CodeCorner = Instance.new("UICorner") CodeCorner.CornerRadius = UDim.new(0, 12) CodeCorner.Parent = CodeBoxFrame local CodeStroke = Instance.new("UIStroke") CodeStroke.Color = Color3.fromRGB(40, 40, 45) CodeStroke.Parent = CodeBoxFrame local CodeTextBox = Instance.new("TextBox") CodeTextBox.Size = UDim2.new(1, -16, 1, -16) CodeTextBox.Position = UDim2.new(0, 8, 0, 8) CodeTextBox.BackgroundTransparency = 1 CodeTextBox.Text = "" CodeTextBox.PlaceholderText = "-- Type or paste Lua script here..." CodeTextBox.PlaceholderColor3 = Color3.fromRGB(110, 110, 115) CodeTextBox.TextColor3 = Color3.fromRGB(255, 255, 255) CodeTextBox.Font = Enum.Font.Code CodeTextBox.TextSize = 11 CodeTextBox.TextXAlignment = Enum.TextXAlignment.Left CodeTextBox.TextYAlignment = Enum.TextYAlignment.Top CodeTextBox.ClearTextOnFocus = false CodeTextBox.MultiLine = true CodeTextBox.Parent = CodeBoxFrame -- Control Buttons Panel (Right Side - Horizontal Alignment Concept) local ControlSideFrame = Instance.new("Frame") ControlSideFrame.Size = UDim2.new(0.35, -5, 1, 0) ControlSideFrame.Position = UDim2.new(0.65, 5, 0, 0) ControlSideFrame.BackgroundTransparency = 1 ControlSideFrame.Parent = ExecutorMainLayout local SideButtonsLayout = Instance.new("UIListLayout") SideButtonsLayout.Padding = UDim.new(0, 6) SideButtonsLayout.SortOrder = Enum.SortOrder.LayoutOrder SideButtonsLayout.Parent = ControlSideFrame local function createExecSideButton(text, bgCol, textCol, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, 0, 0, 25) btn.BackgroundColor3 = bgCol btn.Text = text btn.TextColor3 = textCol btn.Font = Enum.Font.GothamBold btn.TextSize = 9 btn.Parent = ControlSideFrame local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = btn btn.MouseButton1Click:Connect(function() TweenService:Create(btn, TweenInfo.new(0.1), {Size = UDim2.new(0.96, 0, 0, 23)}):Play() task.wait(0.1) TweenService:Create(btn, TweenInfo.new(0.1), {Size = UDim2.new(1, 0, 0, 25)}):Play() callback() end) end createExecSideButton("EXECUTE CODE", Color3.fromRGB(255, 255, 255), Color3.fromRGB(0, 0, 0), function() local code = CodeTextBox.Text if code ~= "" then task.spawn(function() local success, err = pcall(function() loadstring(code)() end) if success then Notify("EXECUTOR", "SCRIPT EXECUTED!") else Notify("ERROR", "SYNTAX ERROR IN CODE") end end) else Notify("WARNING", "CODE BOX IS EMPTY") end end) createExecSideButton("PASTE & RUN", Color3.fromRGB(35, 35, 40), Color3.fromRGB(255, 255, 255), function() if setclipboard or getclipboard then local clip = getclipboard and getclipboard() or "" if clip ~= "" then CodeTextBox.Text = clip local success, err = pcall(function() loadstring(clip)() end) if success then Notify("EXECUTOR", "PASTED & EXECUTED!") else Notify("ERROR", "PASTED CODE HAS SYNTAX ERROR") end else Notify("WARNING", "CLIPBOARD IS EMPTY") end else Notify("INFO", "CLIPBOARD API NOT SUPPORTED") end end) createExecSideButton("INFINITE YIELD", Color3.fromRGB(35, 35, 40), Color3.fromRGB(255, 255, 255), function() executeScript("Infinite Yield", "https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source") end) createExecSideButton("CLEAR BOX", Color3.fromRGB(25, 25, 28), Color3.fromRGB(180, 180, 180), function() CodeTextBox.Text = "" Notify("EXECUTOR", "CODE BOX CLEARED") end) createExecSideButton("COPY OUTPUT", Color3.fromRGB(25, 25, 28), Color3.fromRGB(180, 180, 180), function() if setclipboard then setclipboard(CodeTextBox.Text) Notify("EXECUTOR", "TEXT COPIED TO CLIPBOARD") end end) -- Preset Divider & Buttons local PresetsHeader = Instance.new("TextLabel") PresetsHeader.Size = UDim2.new(1, -5, 0, 18) PresetsHeader.BackgroundTransparency = 1 PresetsHeader.Text = "PRESET SCRIPT LIBRARIES" PresetsHeader.TextColor3 = Color3.fromRGB(200, 200, 200) PresetsHeader.Font = Enum.Font.GothamBold PresetsHeader.TextSize = 11 PresetsHeader.TextXAlignment = Enum.TextXAlignment.Left PresetsHeader.Parent = ScriptsPage local ExecuteAllBtn = Instance.new("TextButton") ExecuteAllBtn.Size = UDim2.new(1, -5, 0, 32) ExecuteAllBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ExecuteAllBtn.Text = "EXECUTE ALL PRESET SCRIPTS" ExecuteAllBtn.TextColor3 = Color3.fromRGB(0, 0, 0) ExecuteAllBtn.Font = Enum.Font.GothamBold ExecuteAllBtn.TextSize = 10 ExecuteAllBtn.Parent = ScriptsPage local AllCorner = Instance.new("UICorner") AllCorner.CornerRadius = UDim.new(0, 10) AllCorner.Parent = ExecuteAllBtn ExecuteAllBtn.MouseButton1Click:Connect(function() Notify("EXECUTE ALL", "RUNNING PRESETS...") for _, item in ipairs(scriptList) do executeScript(item.Name, item.Url) task.wait(0.3) end end) for _, item in ipairs(scriptList) do local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -5, 0, 30) btn.BackgroundColor3 = Color3.fromRGB(18, 18, 22) btn.Text = item.Name btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.Gotham btn.TextSize = 10 btn.Parent = ScriptsPage local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = btn local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(35, 35, 40) stroke.Parent = btn btn.MouseButton1Click:Connect(function() executeScript(item.Name, item.Url) end) end ---------------------------------------------------- -- SERVER HOP & MANAGING SUITE (REJOIN, SMALL, BIG) ---------------------------------------------------- local function createFeatureButton(parent, text, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -5, 0, 35) btn.BackgroundColor3 = Color3.fromRGB(18, 18, 22) btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.Gotham btn.TextSize = 10 btn.Parent = parent local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = btn local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(35, 35, 40) stroke.Parent = btn btn.MouseButton1Click:Connect(function() TweenService:Create(btn, TweenInfo.new(0.1), {BackgroundColor3 = Color3.fromRGB(50, 50, 60)}):Play() task.wait(0.1) TweenService:Create(btn, TweenInfo.new(0.1), {BackgroundColor3 = Color3.fromRGB(18, 18, 22)}):Play() callback() end) end local function getServers() local raw = game:HttpGet("https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/0?sortOrder=Asc&limit=100") return HttpService:JSONDecode(raw).data end createFeatureButton(ServerPage, "Rejoin Current Server", function() Notify("SERVER", "REJOINING SERVER...") TeleportService:TeleportToPlaceInstance(game.PlaceId, game.JobId, LocalPlayer) end) createFeatureButton(ServerPage, "Join Smallest Server (Server Small)", function() Notify("SERVER", "FETCHING SMALLEST SERVER...") task.spawn(function() local success, servers = pcall(getServers) if success and servers then table.sort(servers, function(a, b) return a.playing < b.playing end) for _, s in ipairs(servers) do if s.id ~= game.JobId and s.playing < s.maxPlayers then TeleportService:TeleportToPlaceInstance(game.PlaceId, s.id, LocalPlayer) return end end end Notify("ERROR", "COULD NOT FIND A SMALLER SERVER") end) end) createFeatureButton(ServerPage, "Join Largest Server (Server Big)", function() Notify("SERVER", "FETCHING LARGEST SERVER...") task.spawn(function() local success, servers = pcall(getServers) if success and servers then table.sort(servers, function(a, b) return a.playing > b.playing end) for _, s in ipairs(servers) do if s.id ~= game.JobId and s.playing < s.maxPlayers then TeleportService:TeleportToPlaceInstance(game.PlaceId, s.id, LocalPlayer) return end end end Notify("ERROR", "COULD NOT FIND A LARGER SERVER") end) end) ---------------------------------------------------- -- PLAYER LIST SYSTEM (SPECTATE & TELEPORT) ---------------------------------------------------- local function refreshPlayerList(page, actionType) for _, child in pairs(page:GetChildren()) do if child:IsA("Frame") then child:Destroy() end end for _, plr in pairs(Players:GetPlayers()) do if plr ~= LocalPlayer then local itemFrame = Instance.new("Frame") itemFrame.Size = UDim2.new(1, -5, 0, 45) itemFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 18) itemFrame.Parent = page local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = itemFrame local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(30, 30, 35) stroke.Parent = itemFrame local avatar = Instance.new("ImageLabel") avatar.Size = UDim2.new(0, 33, 0, 33) avatar.Position = UDim2.new(0, 6, 0, 6) avatar.BackgroundColor3 = Color3.fromRGB(25, 25, 28) avatar.Parent = itemFrame local avatarCorner = Instance.new("UICorner") avatarCorner.CornerRadius = UDim.new(1, 0) avatarCorner.Parent = avatar task.spawn(function() local content = Players:GetUserThumbnailAsync(plr.UserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420) avatar.Image = content end) local nameLabel = Instance.new("TextLabel") nameLabel.Size = UDim2.new(0, 180, 1, 0) nameLabel.Position = UDim2.new(0, 48, 0, 0) nameLabel.BackgroundTransparency = 1 nameLabel.Text = plr.DisplayName .. " (@" .. plr.Name .. ")" nameLabel.TextColor3 = Color3.fromRGB(220, 220, 225) nameLabel.Font = Enum.Font.Gotham nameLabel.TextSize = 10 nameLabel.TextXAlignment = Enum.TextXAlignment.Left nameLabel.Parent = itemFrame local actionBtn = Instance.new("TextButton") actionBtn.Size = UDim2.new(0, 85, 0, 28) actionBtn.Position = UDim2.new(1, -92, 0, 8.5) actionBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) actionBtn.Text = actionType actionBtn.TextColor3 = Color3.fromRGB(0, 0, 0) actionBtn.Font = Enum.Font.GothamBold actionBtn.TextSize = 9 actionBtn.Parent = itemFrame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 8) btnCorner.Parent = actionBtn actionBtn.MouseButton1Click:Connect(function() if actionType == "SPECTATE" then if plr.Character and plr.Character:FindFirstChild("Humanoid") then Camera.CameraSubject = plr.Character.Humanoid Notify("SPECTATING", "NOW VIEWING: " .. string.upper(plr.DisplayName)) end elseif actionType == "TELEPORT" then if plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = plr.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 3) Notify("TELEPORTED", "SUCCESSFULLY TP TO " .. string.upper(plr.DisplayName)) end end end) end end end local UnspectateBtn = Instance.new("TextButton") UnspectateBtn.Size = UDim2.new(1, -5, 0, 32) UnspectateBtn.BackgroundColor3 = Color3.fromRGB(25, 25, 30) UnspectateBtn.Text = "STOP SPECTATING" UnspectateBtn.TextColor3 = Color3.fromRGB(255, 255, 255) UnspectateBtn.Font = Enum.Font.GothamBold UnspectateBtn.TextSize = 10 UnspectateBtn.Parent = SpectatePage local UnspecCorner = Instance.new("UICorner") UnspecCorner.CornerRadius = UDim.new(0, 8) UnspecCorner.Parent = UnspectateBtn UnspectateBtn.MouseButton1Click:Connect(function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then Camera.CameraSubject = LocalPlayer.Character.Humanoid Notify("SPECTATOR", "CAMERA RESET TO LOCAL PLAYER") end end) local function updateLists() refreshPlayerList(SpectatePage, "SPECTATE") refreshPlayerList(TeleportPage, "TELEPORT") end Players.PlayerAdded:Connect(updateLists) Players.PlayerRemoving:Connect(updateLists) updateLists() ---------------------------------------------------- -- MOVEMENT & VISUAL FEATURES ---------------------------------------------------- createFeatureButton(MovementPage, "Speed Boost (WalkSpeed 50)", function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = 50 Notify("MOVEMENT", "WALKSPEED SET TO 50") end end) createFeatureButton(MovementPage, "Super Jump (JumpPower 120)", function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.UseJumpPower = true LocalPlayer.Character.Humanoid.JumpPower = 120 Notify("MOVEMENT", "JUMP POWER SET TO 120") end end) local infJumpEnabled = false createFeatureButton(MovementPage, "Toggle Infinite Jump", function() infJumpEnabled = not infJumpEnabled Notify("MOVEMENT", "INFINITE JUMP: " .. (infJumpEnabled and "ENABLED" or "DISABLED")) end) UserInputService.JumpRequest:Connect(function() if infJumpEnabled and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end) local noclipEnabled = false createFeatureButton(MovementPage, "Toggle Noclip Mode", function() noclipEnabled = not noclipEnabled Notify("MOVEMENT", "NOCLIP: " .. (noclipEnabled and "ENABLED" or "DISABLED")) end) RunService.Stepped:Connect(function() if noclipEnabled and LocalPlayer.Character then for _, v in pairs(LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) local flying = false local flySpeed = 50 createFeatureButton(MovementPage, "Toggle Fly Mode", function() flying = not flying Notify("MOVEMENT", "FLY MODE: " .. (flying and "ENABLED" or "DISABLED")) if flying and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then local hrp = LocalPlayer.Character.HumanoidRootPart local bv = Instance.new("BodyVelocity") bv.Name = "FlyVelocity" bv.MaxForce = Vector3.new(1e9, 1e9, 1e9) bv.Velocity = Vector3.new(0, 0, 0) bv.Parent = hrp task.spawn(function() while flying and hrp:FindFirstChild("FlyVelocity") do local camCF = Camera.CFrame local moveDir = Vector3.new() if UserInputService:IsKeyDown(Enum.KeyCode.W) then moveDir = moveDir + camCF.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.S) then moveDir = moveDir - camCF.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.A) then moveDir = moveDir - camCF.RightVector end if UserInputService:IsKeyDown(Enum.KeyCode.D) then moveDir = moveDir + camCF.RightVector end bv.Velocity = moveDir * flySpeed RunService.RenderStepped:Wait() end bv:Destroy() end) end end) createFeatureButton(MovementPage, "Reset Movement Defaults", function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = 16 LocalPlayer.Character.Humanoid.JumpPower = 50 infJumpEnabled = false noclipEnabled = false flying = false Notify("MOVEMENT", "SETTINGS RESET TO DEFAULT") end end) local espEnabled = false createFeatureButton(VisualsPage, "Toggle Player ESP Highlight", function() espEnabled = not espEnabled Notify("VISUALS", "ESP HIGHLIGHT: " .. (espEnabled and "ENABLED" or "DISABLED")) for _, plr in pairs(Players:GetPlayers()) do if plr ~= LocalPlayer and plr.Character then if espEnabled then if not plr.Character:FindFirstChild("VX_ESP") then local hl = Instance.new("Highlight") hl.Name = "VX_ESP" hl.FillColor = Color3.fromRGB(255, 255, 255) hl.OutlineColor = Color3.fromRGB(0, 0, 0) hl.FillTransparency = 0.5 hl.Parent = plr.Character end else if plr.Character:FindFirstChild("VX_ESP") then plr.Character.VX_ESP:Destroy() end end end end end) createFeatureButton(VisualsPage, "Activate Fullbright", function() Lighting.Brightness = 2 Lighting.ClockTime = 14 Lighting.FogEnd = 100000 Lighting.GlobalShadows = false Notify("VISUALS", "FULLBRIGHT ENABLED") end) createFeatureButton(VisualsPage, "Boost Camera FOV (100)", function() TweenService:Create(Camera, TweenInfo.new(0.5), {FieldOfView = 100}):Play() Notify("VISUALS", "FOV SET TO 100") end) createFeatureButton(VisualsPage, "Reset Camera FOV (70)", function() TweenService:Create(Camera, TweenInfo.new(0.5), {FieldOfView = 70}):Play() Notify("VISUALS", "FOV RESET TO 70") end)