local KavoLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = KavoLib.CreateLib("💀 المطور عسكر", "DarkTheme") -- [[ زر الفتح والقفل العائم ]] local OpenGui = Instance.new("ScreenGui") local OpenButton = Instance.new("TextButton") local UICorner = Instance.new("UICorner") OpenGui.Name = "HamdanGui" OpenGui.Parent = game.CoreGui OpenButton.Name = "ToggleBtn" OpenButton.Parent = OpenGui OpenButton.BackgroundColor3 = Color3.fromRGB(80, 0, 150) OpenButton.Position = UDim2.new(0, 10, 0.5, 0) OpenButton.Size = UDim2.new(0, 100, 0, 45) OpenButton.Text = "💀المطور عسكر" OpenButton.TextColor3 = Color3.fromRGB(255, 255, 255) OpenButton.Font = Enum.Font.SourceSansBold OpenButton.TextSize = 18 OpenButton.Draggable = true UICorner.CornerRadius = UDim.new(0, 8) UICorner.Parent = OpenButton OpenButton.MouseButton1Click:Connect(function() KavoLib:ToggleUI() end) -- [[ تبويب: التحكم الشخصي ]] local PlayerTab = Window:NewTab("تحكم الشخصية") local PlayerSection = PlayerTab:NewSection("ادوات عسكر") PlayerSection:NewSlider("السرعة", "تحكم بالسرعة", 500, 16, function(s) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) PlayerSection:NewSlider("القفز", "تحكم بالقفز", 500, 50, function(s) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) -- [[ تبويب: تخفيف الضغط ]] local OptimizeTab = Window:NewTab("تخفيف الضغط") local OptimizeSection = OptimizeTab:NewSection("تحسين الأداء") OptimizeSection:NewButton("تفعيل تحسين الأداء (8 ساعات)", "يقلل الجرافيك ويمنع الطرد", function() -- سكربت تحسين الأداء الخاص بك local duration = 8 * 60 * 60 local startTime = tick() local Lighting = game:GetService("Lighting") local RunService = game:GetService("RunService") local function OptimizeGraphics() Lighting.GlobalShadows = false Lighting.FogEnd = 9e9 Lighting.Brightness = 1 for _, v in pairs(game:GetDescendants()) do if v:IsA("BasePart") or v:IsA("MeshPart") or v:IsA("UnionOperation") then v.Material = Enum.Material.SmoothPlastic v.CastShadow = false elseif v:IsA("Decal") or v:IsA("Texture") then v:Destroy() elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then v.Enabled = false end end end OptimizeGraphics() local player = game:GetService("Players").LocalPlayer player.Idled:Connect(function() game:GetService("VirtualUser"):CaptureController() game:GetService("VirtualUser"):ClickButton2(Vector2.new()) end) task.spawn(function() while tick() - startTime < duration do task.wait(60) end RunService:Set3dRenderingEnabled(true) Lighting.GlobalShadows = true Lighting.FogEnd = 1000 end) print("✅ تم تفعيل سكربت الأداء العالي") end) -- [[ تبويب: أدوات التلفيل (كلكر عسكر 💀) ]] local ClickerTab = Window:NewTab("كلكر عسكر") local ClickerSection = ClickerTab:NewSection("تلفيل تلقائي") ClickerSection:NewToggle(" تشغيل الكلكر", "يضغط تلقائياً مكان الماوس", function(state) _G.AutoClick = state if state then task.spawn(function() local VirtualInputManager = game:GetService("VirtualInputManager") while _G.AutoClick do VirtualInputManager:SendMouseButtonEvent(0, 0, 0, true, game, 0) VirtualInputManager:SendMouseButtonEvent(0, 0, 0, false, game, 0) task.wait(0.01) end end) end end) -- [[ تبويب: السكربتات ]] local ScriptTab = Window:NewTab("السكربتات") local ScriptSection = ScriptTab:NewSection("💀 مكتبة عسكر") ScriptSection:NewButton(" سكربت NO9AT SAMLAT", "تشغيل سكربت نقاط صملات", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-NO9AT-SAMLAT-47637"))() end) ScriptSection:NewButton(" سكربت N9_7AMS", "تشغيل السكربت", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/hdgdjhfjfhrpppp-png/N9_7AMS-/refs/heads/main/N9_7AMS'))() end) ScriptSection:NewButton(" سكربت زيكو", "تشغيل زيكو", function() loadstring(game:HttpGet('https://pastefy.app/mXMaE9fC/raw'))() end) ScriptSection:NewButton(" سكربت الحفرة", "تشغيل الحفرة", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/MADARA9223/AL7FRAA-MADARAxCATAY/refs/heads/main/AL7FRAA%20%7C%20MADARAxCATAYxROBERTO"))() end) -- [[ تبويب: عسكر القياده🔥 ]] local ChaosTab = Window:NewTab("ميزات الدمار") local ChaosSection = ChaosTab:NewSection("تدمير الماب") ChaosSection:NewButton(" طيران", "Fly", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))() end) ChaosSection:NewToggle(" اختراق الجدران", "Noclip", function(state) _G.Noclip = state game:GetService("RunService").Stepped:Connect(function() if _G.Noclip then for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) end) ChaosSection:NewToggle(" بانق (Bang)", "الهجوم الأمامي والخلفي", function(state) _G.Bang = state task.spawn(function() while _G.Bang and task.wait() do local root = game.Players.LocalPlayer.Character.HumanoidRootPart if root then root.CFrame = root.CFrame * CFrame.new(0, 0, -2) task.wait(0.01) root.CFrame = root.CFrame * CFrame.new(0, 0, 2) end end end) end)