local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer if CoreGui:FindFirstChild("DeltaCustomExecutor") then CoreGui.DeltaCustomExecutor:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "DeltaCustomExecutor" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = CoreGui local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 480, 0, 320) MainFrame.Position = UDim2.new(0.5, -240, 0.5, -160) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 25) MainFrame.BackgroundTransparency = 0.25 MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 10) MainCorner.Parent = MainFrame local TitleLabel = Instance.new("TextLabel") TitleLabel.Name = "TitleLabel" TitleLabel.Size = UDim2.new(1, 0, 0, 35) TitleLabel.BackgroundColor3 = Color3.fromRGB(30, 30, 35) TitleLabel.BackgroundTransparency = 0.2 TitleLabel.Text = " Bloximum666 executor" TitleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TitleLabel.Font = Enum.Font.GothamBold TitleLabel.TextSize = 14 TitleLabel.TextXAlignment = Enum.TextXAlignment.Left TitleLabel.BorderSizePixel = 0 TitleLabel.Parent = MainFrame local TitleCorner = Instance.new("UICorner") TitleCorner.CornerRadius = UDim.new(0, 10) TitleCorner.Parent = TitleLabel local ToggleButton = Instance.new("TextButton") ToggleButton.Name = "ToggleButton" ToggleButton.Size = UDim2.new(0, 25, 0, 25) ToggleButton.Position = UDim2.new(1, -30, 0, 5) ToggleButton.BackgroundColor3 = Color3.fromRGB(50, 50, 55) ToggleButton.BackgroundTransparency = 0.3 ToggleButton.Text = "-" ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.Font = Enum.Font.GothamBold ToggleButton.TextSize = 14 ToggleButton.BorderSizePixel = 0 ToggleButton.Parent = TitleLabel local ToggleCorner = Instance.new("UICorner") ToggleCorner.CornerRadius = UDim.new(0, 4) ToggleCorner.Parent = ToggleButton local AttachedButton = Instance.new("TextButton") AttachedButton.Name = "AttachedButton" AttachedButton.Size = UDim2.new(0, 80, 0, 22) AttachedButton.Position = UDim2.new(1, -120, 0, 6) AttachedButton.BackgroundColor3 = Color3.fromRGB(0, 180, 100) AttachedButton.BackgroundTransparency = 0.1 ToggleButton.BackgroundTransparency = 0.3 AttachedButton.Text = "ATTACHED" AttachedButton.TextColor3 = Color3.fromRGB(255, 255, 255) AttachedButton.Font = Enum.Font.GothamBold AttachedButton.TextSize = 11 AttachedButton.BorderSizePixel = 0 AttachedButton.Parent = TitleLabel local AttachedCorner = Instance.new("UICorner") AttachedCorner.CornerRadius = UDim.new(0, 4) AttachedCorner.Parent = AttachedButton local ContentFrame = Instance.new("Frame") ContentFrame.Name = "ContentFrame" ContentFrame.Size = UDim2.new(1, 0, 1, -35) ContentFrame.Position = UDim2.new(0, 0, 0, 35) ContentFrame.BackgroundTransparency = 1 ContentFrame.Parent = MainFrame local CreditsLabel = Instance.new("TextLabel") CreditsLabel.Name = "CreditsLabel" CreditsLabel.Size = UDim2.new(0, 200, 0, 15) CreditsLabel.Position = UDim2.new(0, 15, 0, 5) CreditsLabel.BackgroundTransparency = 1 CreditsLabel.Text = "made by MHYT (mysteryhackeryt)" CreditsLabel.TextColor3 = Color3.fromRGB(180, 180, 180) CreditsLabel.Font = Enum.Font.Gotham CreditsLabel.TextSize = 10 CreditsLabel.TextXAlignment = Enum.TextXAlignment.Left CreditsLabel.Parent = ContentFrame local ApiLabel = Instance.new("TextLabel") ApiLabel.Name = "ApiLabel" ApiLabel.Size = UDim2.new(0, 60, 0, 25) ApiLabel.Position = UDim2.new(0, 15, 0, 25) ApiLabel.BackgroundTransparency = 1 ApiLabel.Text = "API SELECT:" ApiLabel.TextColor3 = Color3.fromRGB(220, 220, 220) ApiLabel.Font = Enum.Font.GothamBold ApiLabel.TextSize = 11 ApiLabel.TextXAlignment = Enum.TextXAlignment.Left ApiLabel.Parent = ContentFrame local ApiButton = Instance.new("TextButton") ApiButton.Name = "ApiButton" ApiButton.Size = UDim2.new(0, 100, 0, 25) ApiButton.Position = UDim2.new(0, 85, 0, 25) ApiButton.BackgroundColor3 = Color3.fromRGB(45, 45, 50) ApiButton.BackgroundTransparency = 0.2 ApiButton.Text = "KRNL API" ApiButton.TextColor3 = Color3.fromRGB(255, 165, 0) ApiButton.Font = Enum.Font.GothamBold ApiButton.TextSize = 11 ApiButton.BorderSizePixel = 0 ApiButton.Parent = ContentFrame local ApiCorner = Instance.new("UICorner") ApiCorner.CornerRadius = UDim.new(0, 4) ApiCorner.Parent = ApiButton local TextBox = Instance.new("TextBox") TextBox.Name = "TextBox" TextBox.Size = UDim2.new(1, -30, 1, -115) TextBox.Position = UDim2.new(0, 15, 0, 60) TextBox.BackgroundColor3 = Color3.fromRGB(15, 15, 18) TextBox.BackgroundTransparency = 0.3 TextBox.TextColor3 = Color3.fromRGB(0, 255, 150) TextBox.Text = "" TextBox.ClearTextOnFocus = false TextBox.MultiLine = true TextBox.Font = Enum.Font.Code TextBox.TextSize = 12 TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.TextYAlignment = Enum.TextYAlignment.Top TextBox.BorderSizePixel = 0 TextBox.Parent = ContentFrame local TextCorner = Instance.new("UICorner") TextCorner.CornerRadius = UDim.new(0, 6) TextCorner.Parent = TextBox local UIPadding = Instance.new("UIPadding") UIPadding.PaddingLeft = UDim.new(0, 8) UIPadding.PaddingTop = UDim.new(0, 8) UIPadding.Parent = TextBox local ExecuteButton = Instance.new("TextButton") ExecuteButton.Name = "ExecuteButton" ExecuteButton.Size = UDim2.new(0, 215, 0, 35) ExecuteButton.Position = UDim2.new(0, 15, 1, -45) ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 180, 100) ExecuteButton.BackgroundTransparency = 0.1 ExecuteButton.Text = "EXECUTE" ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255) ExecuteButton.Font = Enum.Font.GothamBold ExecuteButton.TextSize = 14 ExecuteButton.BorderSizePixel = 0 ExecuteButton.Parent = ContentFrame local ButtonCorner1 = Instance.new("UICorner") ButtonCorner1.CornerRadius = UDim.new(0, 6) ButtonCorner1.Parent = ExecuteButton local ClearButton = Instance.new("TextButton") ClearButton.Name = "ClearButton" ClearButton.Size = UDim2.new(0, 215, 0, 35) ClearButton.Position = UDim2.new(1, -230, 1, -45) ClearButton.BackgroundColor3 = Color3.fromRGB(180, 50, 50) ClearButton.BackgroundTransparency = 0.1 ClearButton.Text = "CLEAR" ClearButton.TextColor3 = Color3.fromRGB(255, 255, 255) ClearButton.Font = Enum.Font.GothamBold ClearButton.TextSize = 14 ClearButton.BorderSizePixel = 0 ClearButton.Parent = ContentFrame local ButtonCorner2 = Instance.new("UICorner") ButtonCorner2.CornerRadius = UDim.new(0, 6) ButtonCorner2.Parent = ClearButton local isMinimized = false ToggleButton.MouseButton1Click:Connect(function() if isMinimized then MainFrame:TweenSize(UDim2.new(0, 480, 0, 320), "Out", "Quad", 0.2, true) ContentFrame.Visible = true ToggleButton.Text = "-" isMinimized = false MainFrame.Active = true MainFrame.Draggable = true else MainFrame:TweenSize(UDim2.new(0, 480, 0, 35), "Out", "Quad", 0.2, true) ContentFrame.Visible = false ToggleButton.Text = "+" isMinimized = true MainFrame.Active = true MainFrame.Draggable = true end end) ExecuteButton.MouseButton1Click:Connect(function() local codigo = TextBox.Text if codigo == "" then return end local funcion, errorDeSintaxis = loadstring(codigo) if funcion then local exito, errorDeEjecucion = pcall(funcion) if not exito then warn(tostring(errorDeEjecucion)) end else warn(tostring(errorDeSintaxis)) end end) ClearButton.MouseButton1Click:Connect(function() TextBox.Text = "" end)