local screenGui = Instance.new("ScreenGui") screenGui.Name = "XanoExecutor" screenGui.ResetOnSpawn = false screenGui.Parent = game.CoreGui stealth look local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 400, 0, 300) mainFrame.Position = UDim2.new(0.5, -200, 0.5, -150) mainFrame.BackgroundColor3 = Color3.fromRGB(18, 18, 18) mainFrame.BorderSizePixel = 0 mainFrame.Parent = screenGui mainFrame.AnchorPoint = Vector2.new(0.5, 0.5) mainFrame.Visible = true mainFrame.ClipsDescendants = true mainFrame.BackgroundTransparency = 0 local corner = Instance.new("UICorner", mainFrame) corner.CornerRadius = UDim.new(0, 10) local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.BackgroundColor3 = Color3.fromRGB(30, 30, 30) title.BorderSizePixel = 0 title.Parent = mainFrame title.Text = "Xano Executor" title.Font = Enum.Font.GothamBold title.TextSize = 28 title.TextColor3 = Color3.fromRGB(0, 255, 255) title.AnchorPoint = Vector2.new(0, 0) title.Position = UDim2.new(0, 0, 0, 0) local titleCorner = Instance.new("UICorner", title) titleCorner.CornerRadius = UDim.new(0, 10) local scriptBox = Instance.new("TextBox") scriptBox.Size = UDim2.new(0.95, 0, 0.65, 0) scriptBox.Position = UDim2.new(0.025, 0, 0.15, 0) scriptBox.BackgroundColor3 = Color3.fromRGB(25, 25, 25) scriptBox.TextColor3 = Color3.fromRGB(200, 200, 200) scriptBox.Font = Enum.Font.Gotham scriptBox.PlaceholderText = "-- Paste your script here" scriptBox.ClearTextOnFocus = false scriptBox.MultiLine = true scriptBox.TextWrapped = true scriptBox.Parent = mainFrame local boxCorner = Instance.new("UICorner", scriptBox) boxCorner.CornerRadius = UDim.new(0, 6) local execButton = Instance.new("TextButton") execButton.Size = UDim2.new(0.4, 0, 0, 40) execButton.Position = UDim2.new(0.05, 0, 0.85, 0) execButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) execButton.Text = "Execute" execButton.Font = Enum.Font.GothamBold execButton.TextSize = 22 execButton.TextColor3 = Color3.new(1, 1, 1) execButton.Parent = mainFrame local execCorner = Instance.new("UICorner", execButton) execCorner.CornerRadius = UDim.new(0, 8) local clearButton = Instance.new("TextButton") clearButton.Size = UDim2.new(0.4, 0, 0, 40) clearButton.Position = UDim2.new(0.55, 0, 0.85, 0) clearButton.BackgroundColor3 = Color3.fromRGB(255, 70, 70) clearButton.Text = "Clear" clearButton.Font = Enum.Font.GothamBold clearButton.TextSize = 22 clearButton.TextColor3 = Color3.new(1, 1, 1) clearButton.Parent = mainFrame local clearCorner = Instance.new("UICorner", clearButton) clearCorner.CornerRadius = UDim.new(0, 8) local outputLabel = Instance.new("TextLabel") outputLabel.Size = UDim2.new(0.95, 0, 0.15, 0) outputLabel.Position = UDim2.new(0.025, 0, 0.75, 0) outputLabel.BackgroundColor3 = Color3.fromRGB(15, 15, 15) outputLabel.TextColor3 = Color3.fromRGB(120, 255, 255) outputLabel.Font = Enum.Font.Code outputLabel.TextSize = 16 outputLabel.TextXAlignment = Enum.TextXAlignment.Left outputLabel.TextYAlignment = Enum.TextYAlignment.Top outputLabel.Text = "Output:\n" outputLabel.TextWrapped = true outputLabel.ClipsDescendants = true outputLabel.Parent = mainFrame local outputCorner = Instance.new("UICorner", outputLabel) outputCorner.CornerRadius = UDim.new(0, 6) execButton.MouseButton1Click:Connect(function() local scriptText = scriptBox.Text if scriptText == "" or scriptText == "-- Paste your script here" then outputLabel.Text = "Output:\n" .. "Error: No script input." return end outputLabel.Text = "Output:\n" .. "Executing script..." wait(1.5) local Outputs = { "Script executed successfully.", "No errors found.", "Environment: Xano Virtual", "Memory used: 2.3MB", "Xano Executor v1.0 - All systems nominal.", "Warning: Sandbox mode enabled, script output limited.", } local output = Outputs[math.random(1, #outputs)] outputLabel.Text = "Output:\n" .. output end) clearButton.MouseButton1Click:Connect(function() scriptBox.Text = "" outputLabel.Text = "Output:\n" end)