-- P+ LOCAL EXECUTOR -- SOLO LOCAL / SOLO EDUCACIONAL local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer -- GUI local gui = Instance.new("ScreenGui") gui.Name = "PPlusExecutor" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") -- INTRO CUADRADO local intro = Instance.new("Frame", gui) intro.Size = UDim2.fromScale(0,0) intro.Position = UDim2.fromScale(0.5,0.5) intro.AnchorPoint = Vector2.new(0.5,0.5) intro.BackgroundColor3 = Color3.new(0,0,0) intro.BorderSizePixel = 0 local introText = Instance.new("TextLabel", intro) introText.Size = UDim2.fromScale(1,1) introText.BackgroundTransparency = 1 introText.Text = "P+" introText.TextColor3 = Color3.new(1,1,1) introText.TextScaled = true introText.Font = Enum.Font.GothamBold TweenService:Create(intro, TweenInfo.new(0.6), { Size = UDim2.fromScale(0.25,0.25) }):Play() task.wait(1) TweenService:Create(intro, TweenInfo.new(0.6), { Size = UDim2.fromScale(0,0) }):Play() task.wait(0.6) intro:Destroy() -- EXECUTOR FRAME local main = Instance.new("Frame", gui) main.Size = UDim2.fromScale(0.45,0.45) main.Position = UDim2.fromScale(0.5,0.5) main.AnchorPoint = Vector2.new(0.5,0.5) main.BackgroundColor3 = Color3.fromRGB(20,20,20) main.BorderSizePixel = 0 main.Active = true main.Draggable = true -- TITULO local title = Instance.new("TextLabel", main) title.Size = UDim2.new(1,0,0.15,0) title.BackgroundTransparency = 1 title.Text = "P+ SS" title.Font = Enum.Font.GothamBold title.TextScaled = true title.TextColor3 = Color3.new(1,1,1) -- TEXTBOX local box = Instance.new("TextBox", main) box.Position = UDim2.new(0.05,0,0.18,0) box.Size = UDim2.new(0.9,0,0.55,0) box.BackgroundColor3 = Color3.fromRGB(10,10,10) box.TextColor3 = Color3.new(1,1,1) box.ClearTextOnFocus = false box.MultiLine = true box.TextWrapped = true box.TextXAlignment = Enum.TextXAlignment.Left box.TextYAlignment = Enum.TextYAlignment.Top box.Font = Enum.Font.Code box.TextSize = 16 box.Text = "-- Pegá tu script acá" -- BOTONES local exe = Instance.new("TextButton", main) exe.Text = "EXE" exe.Size = UDim2.new(0.4,0,0.12,0) exe.Position = UDim2.new(0.05,0,0.78,0) exe.BackgroundColor3 = Color3.fromRGB(40,40,40) exe.TextColor3 = Color3.new(1,1,1) exe.Font = Enum.Font.GothamBold exe.TextScaled = true local clear = Instance.new("TextButton", main) clear.Text = "CLEAR" clear.Size = UDim2.new(0.4,0,0.12,0) clear.Position = UDim2.new(0.55,0,0.78,0) clear.BackgroundColor3 = Color3.fromRGB(40,40,40) clear.TextColor3 = Color3.new(1,1,1) clear.Font = Enum.Font.GothamBold clear.TextScaled = true -- FUNCIONES local function run(code) local f, err = loadstring(code) if not f then warn(err) return end setfenv(f, getfenv()) pcall(f) end exe.MouseButton1Click:Connect(function() run(box.Text) end) clear.MouseButton1Click:Connect(function() box.Text = "" end)