--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] --// WX00LKID EXECUTOR GUI v1.0 local gui = Instance.new("ScreenGui") gui.Name = "ExecutorGui" gui.Parent = game:GetService("CoreGui") local window = Instance.new("Frame") window.Size = UDim2.new(0.6, 0, 0.9, 0) window.Position = UDim2.new(0.2, 0, 0, 0) window.BackgroundColor3 = Color3.fromRGB(0, 0, 0) window.BorderColor3 = Color3.fromRGB(0, 255, 255) window.BorderSizePixel = 3 window.Active = true window.Draggable = true window.Parent = gui -- Title bar local titleBar = Instance.new("Frame") titleBar.Size = UDim2.new(1, 0, 0, 30) titleBar.BackgroundColor3 = window.BackgroundColor3 titleBar.BorderSizePixel = 0 titleBar.Parent = window local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(0.6, 0, 1, 0) titleLabel.Position = UDim2.new(0, 5, 0, 0) titleLabel.Text = "WX00LKID EXECUTOR" titleLabel.TextColor3 = Color3.fromRGB(0, 255, 255) titleLabel.Font = Enum.Font.Code titleLabel.TextSize = 18 titleLabel.BackgroundTransparency = 1 titleLabel.Parent = titleBar -- 🖼️ الصورة local logo = Instance.new("ImageLabel") logo.Size = UDim2.new(0, 25, 0, 25) logo.Position = UDim2.new(0.6, 5, 0, 2) logo.BackgroundTransparency = 1 logo.Image = "rbxassetid://78002319314487" logo.Parent = titleBar local closeButton = Instance.new("TextButton") closeButton.Size = UDim2.new(0, 30, 1, 0) closeButton.Position = UDim2.new(1, -35, 0, 0) closeButton.Text = "X" closeButton.Font = Enum.Font.Code closeButton.TextSize = 18 closeButton.TextColor3 = Color3.fromRGB(0, 255, 255) closeButton.BackgroundColor3 = titleBar.BackgroundColor3 closeButton.BorderSizePixel = 0 closeButton.Parent = titleBar -- Main content local content = Instance.new("Frame") content.Size = UDim2.new(1, 0, 1, -30) content.Position = UDim2.new(0, 0, 0, 30) content.BackgroundTransparency = 1 content.Parent = window local inputBox = Instance.new("TextBox") inputBox.Size = UDim2.new(0.9, 0, 0.6, 0) inputBox.Position = UDim2.new(0.05, 0, 0.05, 0) inputBox.Text = "-- write your script here" inputBox.TextColor3 = Color3.fromRGB(255, 255, 255) inputBox.Font = Enum.Font.Code inputBox.TextSize = 16 inputBox.ClearTextOnFocus = false inputBox.BackgroundColor3 = Color3.fromRGB(20, 20, 20) inputBox.BorderColor3 = Color3.fromRGB(0, 255, 255) inputBox.BorderSizePixel = 2 inputBox.TextWrapped = true inputBox.Parent = content local executeButton = Instance.new("TextButton") executeButton.Size = UDim2.new(0.4, -10, 0, 30) executeButton.Position = UDim2.new(0.05, 0, 0.7, 0) executeButton.Text = "Execute" executeButton.Font = Enum.Font.Code executeButton.TextSize = 16 executeButton.TextColor3 = Color3.fromRGB(255, 255, 255) executeButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255) executeButton.BorderSizePixel = 0 executeButton.Parent = content local clearButton = Instance.new("TextButton") clearButton.Size = UDim2.new(0.4, -10, 0, 30) clearButton.Position = UDim2.new(0.55, 0, 0.7, 0) clearButton.Text = "Clear" clearButton.Font = Enum.Font.Code clearButton.TextSize = 16 clearButton.TextColor3 = Color3.fromRGB(255, 255, 255) clearButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255) clearButton.BorderSizePixel = 0 clearButton.Parent = content -- Functions closeButton.MouseButton1Click:Connect(function() gui:Destroy() end) clearButton.MouseButton1Click:Connect(function() inputBox.Text = "" end) executeButton.MouseButton1Click:Connect(function() local success, err = pcall(function() local func = loadstring(inputBox.Text) if func then func() end end) if not success then warn("Execution error:", err) end end)