-- [[ WH EXECUTOR V1.1 ]] -- -- Optimized for Mobile/PC Executors local ScreenGui = Instance.new("ScreenGui") local Main = Instance.new("Frame") local Title = Instance.new("TextLabel") local CodeEditor = Instance.new("TextBox") local Execute = Instance.new("TextButton") local Clear = Instance.new("TextButton") local Corner = Instance.new("UICorner") -- UI Parent (Protecting from simple detection) ScreenGui.Name = "WH_UI" ScreenGui.Parent = (game:GetService("CoreGui") or game:GetService("Players").LocalPlayer:FindFirstChild("PlayerGui")) ScreenGui.ResetOnSpawn = false -- Main Frame Main.Name = "Main" Main.Parent = ScreenGui Main.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Main.BorderSizePixel = 0 Main.Position = UDim2.new(0.3, 0, 0.3, 0) Main.Size = UDim2.new(0, 400, 0, 250) Main.Active = true Main.Draggable = true -- Mobile support Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 10) -- RGB Border (Neon Style) local Stroke = Instance.new("UIStroke") Stroke.Parent = Main Stroke.Thickness = 2.5 Stroke.Color = Color3.fromRGB(0, 255, 255) task.spawn(function() while task.wait() do local hue = tick() % 4 / 4 Stroke.Color = Color3.fromHSV(hue, 1, 1) end end) -- Title Title.Parent = Main Title.Size = UDim2.new(1, 0, 0, 35) Title.Text = "WH EXECUTOR - PREMIUM" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundTransparency = 1 Title.Font = Enum.Font.GothamBold Title.TextSize = 18 -- Script Box CodeEditor.Name = "CodeEditor" CodeEditor.Parent = Main CodeEditor.BackgroundColor3 = Color3.fromRGB(15, 15, 15) CodeEditor.Position = UDim2.new(0.05, 0, 0.2, 0) CodeEditor.Size = UDim2.new(0.9, 0, 0.5, 0) CodeEditor.ClearTextOnFocus = false CodeEditor.MultiLine = true CodeEditor.Text = "print('WH Brand Active!')" CodeEditor.TextColor3 = Color3.fromRGB(200, 200, 200) CodeEditor.TextXAlignment = Enum.TextXAlignment.Left CodeEditor.TextYAlignment = Enum.TextYAlignment.Top Instance.new("UICorner", CodeEditor).CornerRadius = UDim.new(0, 5) -- Execution Logic Execute.Name = "Execute" Execute.Parent = Main Execute.Position = UDim2.new(0.05, 0, 0.75, 0) Execute.Size = UDim2.new(0.4, 0, 0, 40) Execute.BackgroundColor3 = Color3.fromRGB(0, 170, 0) Execute.Text = "EXECUTE" Execute.TextColor3 = Color3.fromRGB(255, 255, 255) Execute.Font = Enum.Font.GothamBold Instance.new("UICorner", Execute) Clear.Name = "Clear" Clear.Parent = Main Clear.Position = UDim2.new(0.55, 0, 0.75, 0) Clear.Size = UDim2.new(0.4, 0, 0, 40) Clear.BackgroundColor3 = Color3.fromRGB(170, 0, 0) Clear.Text = "CLEAR" Clear.TextColor3 = Color3.fromRGB(255, 255, 255) Clear.Font = Enum.Font.GothamBold Instance.new("UICorner", Clear) -- Functionality Execute.MouseButton1Click:Connect(function() local func, err = loadstring(CodeEditor.Text) if func then pcall(func) else warn("WH Script Error: " .. tostring(err)) end end) Clear.MouseButton1Click:Connect(function() CodeEditor.Text = "" end)