-- [[ -- اسم السكربت: اِليَاس «» جُوكِر -- تعاون: لِيُون -- الإصدار: المطور الفائق (نسخة الصملة اللانهائية للهواتف) -- ]] local CoreGui = game:GetService("CoreGui") local TweenService = game:GetService("TweenService") local RunService = game:GetService("RunService") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer -- حماية ضد التكرار لتفادي الكراش if CoreGui:FindFirstChild("JokerElyas_AntiCrash_Hub") then CoreGui:FindFirstChild("JokerElyas_AntiCrash_Hub"):Destroy() end -- إنشاء الواجهة الرئيسية local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "JokerElyas_AntiCrash_Hub" ScreenGui.Parent = CoreGui ScreenGui.ResetOnSpawn = false --------------------------------------------------------- -- [1] واجهة التحقق من كلمة السر (Login Frame) --------------------------------------------------------- local LoginFrame = Instance.new("Frame") LoginFrame.Name = "LoginFrame" LoginFrame.Parent = ScreenGui LoginFrame.Position = UDim2.new(0.5, -125, 0.5, -75) LoginFrame.Size = UDim2.new(0, 250, 0, 150) LoginFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) LoginFrame.Active = true LoginFrame.Draggable = true local LoginCorner = Instance.new("UICorner") LoginCorner.CornerRadius = UDim.new(0, 10) LoginCorner.Parent = LoginFrame local LoginStroke = Instance.new("UIStroke") LoginStroke.Color = Color3.fromRGB(255, 0, 0) LoginStroke.Thickness = 1.5 LoginStroke.Parent = LoginFrame local LoginTitle = Instance.new("TextLabel") LoginTitle.Parent = LoginFrame LoginTitle.Size = UDim2.new(1, 0, 0, 35) LoginTitle.BackgroundColor3 = Color3.fromRGB(25, 10, 10) LoginTitle.Text = "🔐 نظام حماية السكربت" LoginTitle.TextColor3 = Color3.fromRGB(255, 0, 0) LoginTitle.Font = Enum.Font.GothamBold LoginTitle.TextSize = 13 local LoginTitleCorner = Instance.new("UICorner") LoginTitleCorner.CornerRadius = UDim.new(0, 10) LoginTitleCorner.Parent = LoginTitle local PasswordInput = Instance.new("TextBox") PasswordInput.Parent = LoginFrame PasswordInput.Position = UDim2.new(0, 20, 0, 55) PasswordInput.Size = UDim2.new(1, -40, 0, 35) PasswordInput.BackgroundColor3 = Color3.fromRGB(25, 25, 25) PasswordInput.Text = "" PasswordInput.PlaceholderText = "أدخل كلمة السر هنا..." PasswordInput.TextColor3 = Color3.fromRGB(255, 255, 255) PasswordInput.PlaceholderColor3 = Color3.fromRGB(100, 100, 100) PasswordInput.Font = Enum.Font.Gotham PasswordInput.TextSize = 14 local InputCorner = Instance.new("UICorner") InputCorner.CornerRadius = UDim.new(0, 6) InputCorner.Parent = PasswordInput local InputStroke = Instance.new("UIStroke") InputStroke.Color = Color3.fromRGB(50, 50, 50) InputStroke.Thickness = 1 InputStroke.Parent = PasswordInput local SubmitBtn = Instance.new("TextButton") SubmitBtn.Parent = LoginFrame SubmitBtn.Position = UDim2.new(0, 20, 0, 103) SubmitBtn.Size = UDim2.new(1, -40, 0, 35) SubmitBtn.BackgroundColor3 = Color3.fromRGB(40, 10, 10) SubmitBtn.Text = "تأكيد الدخول" SubmitBtn.TextColor3 = Color3.fromRGB(255, 255, 255) SubmitBtn.Font = Enum.Font.GothamBold SubmitBtn.TextSize = 14 local SubmitCorner = Instance.new("UICorner") SubmitCorner.CornerRadius = UDim.new(0, 6) SubmitCorner.Parent = SubmitBtn --------------------------------------------------------- -- [2] إنشاء اللوجو المشع والمتحرك (JED) - مخفي مؤقتاً --------------------------------------------------------- local LogoButton = Instance.new("TextButton") LogoButton.Name = "JED_Logo" LogoButton.Parent = ScreenGui LogoButton.Position = UDim2.new(0.85, 0, 0.5, -25) LogoButton.Size = UDim2.new(0, 60, 0, 60) LogoButton.BackgroundColor3 = Color3.fromRGB(20, 20, 20) LogoButton.Text = "JED" LogoButton.TextColor3 = Color3.fromRGB(255, 0, 0) LogoButton.Font = Enum.Font.FredokaOne LogoButton.TextSize = 22 LogoButton.Active = true LogoButton.Draggable = true LogoButton.Visible = false local LogoCorner = Instance.new("UICorner") LogoCorner.CornerRadius = UDim.new(1, 0) LogoCorner.Parent = LogoButton local LogoStroke = Instance.new("UIStroke") LogoStroke.Color = Color3.fromRGB(255, 0, 0) LogoStroke.Thickness = 2 LogoStroke.Parent = LogoButton -- أنيميشن الإشعاع والنبض للوجو coroutine.wrap(function() while true do local tweenInfo = TweenInfo.new(1.5, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1, true) local tween = TweenService:Create(LogoStroke, tweenInfo, {Thickness = 5, Color = Color3.fromRGB(150, 0, 0)}) tween:Play() for i = 0, 360, 2 do if not LogoButton then break end LogoButton.Rotation = math.sin(tick() * 2) * 5 task.wait(0.05) end end end)() --------------------------------------------------------- -- [3] لوحة السكربت الرئيسية (Main Frame) - حجم وسط فخم --------------------------------------------------------- local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.Position = UDim2.new(0.5, -175, 0.5, -150) MainFrame.Size = UDim2.new(0, 350, 0, 300) -- تم تعديل الطول قليلاً ليستوعب الزر الجديد بامتياز MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Visible = false local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 10) MainCorner.Parent = MainFrame local MainStroke = Instance.new("UIStroke") MainStroke.Color = Color3.fromRGB(255, 0, 0) MainStroke.Thickness = 1.5 MainStroke.Parent = MainFrame local uiVisible = true LogoButton.MouseButton1Click:Connect(function() uiVisible = not uiVisible MainFrame.Visible = uiVisible end) -- العنوان المزخرف local TitleLabel = Instance.new("TextLabel") TitleLabel.Parent = MainFrame TitleLabel.Size = UDim2.new(1, 0, 0, 40) TitleLabel.BackgroundColor3 = Color3.fromRGB(25, 10, 10) TitleLabel.Text = " ⚡ [ اِليَاس «» جُوكِر ] • تعاون لِيُون ⚡ " TitleLabel.TextColor3 = Color3.fromRGB(255, 0, 0) TitleLabel.Font = Enum.Font.GothamBold TitleLabel.TextSize = 14 local TitleCorner = Instance.new("UICorner") TitleCorner.CornerRadius = UDim.new(0, 10) TitleCorner.Parent = TitleLabel -- العدادات العلوية (الوقت و الـ FPS) local InfoBar = Instance.new("Frame") InfoBar.Parent = MainFrame InfoBar.Position = UDim2.new(0, 10, 0, 45) InfoBar.Size = UDim2.new(1, -20, 0, 30) InfoBar.BackgroundTransparency = 1 local TimeLabel = Instance.new("TextLabel") TimeLabel.Parent = InfoBar TimeLabel.Size = UDim2.new(0, 180, 1, 0) TimeLabel.BackgroundTransparency = 1 TimeLabel.Text = "⏳ مدة البقاء: 00:00:00" TimeLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TimeLabel.Font = Enum.Font.SourceSansBold TimeLabel.TextSize = 14 TimeLabel.TextXAlignment = Enum.TextXAlignment.Left local FpsLabel = Instance.new("TextLabel") FpsLabel.Parent = InfoBar FpsLabel.Position = UDim2.new(1, -120, 0, 0) FpsLabel.Size = UDim2.new(0, 120, 1, 0) FpsLabel.BackgroundTransparency = 1 FpsLabel.Text = "📊 FPS: --" FpsLabel.TextColor3 = Color3.fromRGB(0, 255, 100) FpsLabel.Font = Enum.Font.SourceSansBold FpsLabel.TextSize = 14 FpsLabel.TextXAlignment = Enum.TextXAlignment.Right -- برمجية العدادات local startTime = tick() local fpsCount = 0 local nextUpdate = tick() RunService.RenderStepped:Connect(function() fpsCount = fpsCount + 1 if tick() >= nextUpdate then FpsLabel.Text = "📊 FPS: " .. tostring(fpsCount) if fpsCount < 20 then FpsLabel.TextColor3 = Color3.fromRGB(255, 50, 50) elseif fpsCount < 40 then FpsLabel.TextColor3 = Color3.fromRGB(255, 150, 0) else FpsLabel.TextColor3 = Color3.fromRGB(0, 255, 100) end fpsCount = 0 nextUpdate = tick() + 1 end local duration = tick() - startTime local hours = math.floor(duration / 3600) local minutes = math.floor((duration % 3600) / 60) local seconds = math.floor(duration % 60) TimeLabel.Text = string.format("⏳ مدة البقاء: %02d:%02d:%02d", hours, minutes, seconds) end) --------------------------------------------------------- -- [4] قائمة الأزرار والوظائف المميزة (Container) --------------------------------------------------------- local ScrollingFrame = Instance.new("ScrollingFrame") ScrollingFrame.Parent = MainFrame ScrollingFrame.Position = UDim2.new(0, 10, 0, 80) ScrollingFrame.Size = UDim2.new(1, -20, 1, -90) ScrollingFrame.BackgroundTransparency = 1 ScrollingFrame.ScrollBarThickness = 2 ScrollingFrame.ScrollBarImageColor3 = Color3.fromRGB(255, 0, 0) ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0) -- التعديل التلقائي للحجم local Layout = Instance.new("UIListLayout") Layout.Parent = ScrollingFrame Layout.SortOrder = Enum.SortOrder.LayoutOrder Layout.Padding = UDim.new(0, 8) Layout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, Layout.AbsoluteContentSize.Y + 10) end) local function CreateButton(text, callback) local Btn = Instance.new("TextButton") Btn.Size = UDim2.new(1, -5, 0, 40) Btn.BackgroundColor3 = Color3.fromRGB(30, 10, 10) Btn.Text = text Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Btn.Font = Enum.Font.Gotham Btn.TextSize = 13 Btn.Parent = ScrollingFrame local BtnCorner = Instance.new("UICorner") BtnCorner.CornerRadius = UDim.new(0, 6) BtnCorner.Parent = Btn local BtnStroke = Instance.new("UIStroke") BtnStroke.Color = Color3.fromRGB(100, 0, 0) BtnStroke.Thickness = 1 BtnStroke.Parent = Btn Btn.MouseEnter:Connect(function() TweenService:Create(Btn, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(50, 10, 10)}):Play() TweenService:Create(BtnStroke, TweenInfo.new(0.2), {Color = Color3.fromRGB(255, 0, 0)}):Play() end) Btn.MouseLeave:Connect(function() TweenService:Create(Btn, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(30, 10, 10)}):Play() TweenService:Create(BtnStroke, TweenInfo.new(0.2), {Color = Color3.fromRGB(100, 0, 0)}):Play() end) Btn.MouseButton1Click:Connect(function() callback(Btn) end) return Btn end -- الأزرار والوظائف: -- 1. زر تقليل اللاق والمحافظة على المعالج للهواتف local LagReducerActive = false CreateButton("🚀 تفعيل وضع مضاد اللاق الفائق (500+ ساعة)", function(btn) if LagReducerActive then return end LagReducerActive = true btn.Text = "✅ مضاد اللاق الفائق (مفعّل)" btn.TextColor3 = Color3.fromRGB(0, 255, 100) settings().Rendering.QualityLevel = Enum.QualityLevel.Level01 game:GetService("Lighting").GlobalShadows = false for _, v in pairs(game:GetDescendants()) do if v:IsA("Part") or v:IsA("MeshPart") or v:IsA("UnionOperation") then v.Material = Enum.Material.SmoothPlastic v.Reflectance = 0 elseif v:IsA("ParticleEmitter") or v:IsA("Smoke") or v:IsA("Sparkles") then v.Enabled = false elseif v:IsA("Decal") or v:IsA("Texture") then v:Destroy() end end end) -- 2. زر تطويل مدة البقاء وتجنب الطرد أو التجميد local HeavyStayActive = false CreateButton("♾️ تفعيل مضاد التجميد وتطويل البقاء المطور", function(btn) if HeavyStayActive then return end HeavyStayActive = true btn.Text = "✅ مضاد التجميد وتطويل البقاء (مفعّل)" btn.TextColor3 = Color3.fromRGB(0, 255, 100) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = false end end) -- 3. زر الـ Anti-AFK الإضافي والمستقل (الذي طلبته) لضمان عدم الطرد نهائياً local AntiAFKActive = false CreateButton("🤖 تفعيل الـ Anti-AFK الفائق (مستمر مدى الحياة)", function(btn) if AntiAFKActive then return end AntiAFKActive = true btn.Text = "✅ نظام Anti-AFK الفائق (يعمل الآن)" btn.TextColor3 = Color3.fromRGB(0, 255, 100) -- الطريقة الرسمية والأقوى لمحاكاة حركة اللاعب الافتراضية لمنع طرد الـ 20 دقيقة LocalPlayer.Idled:Connect(function() local VirtualUser = game:GetService("VirtualUser") VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new(0, 0)) end) -- طريقة حماية احتياطية مدمجة لإجبار المحرك على اعتبار اللاعب نشطاً task.spawn(function() while AntiAFKActive do task.wait(15) local VirtualUser = game:GetService("VirtualUser") VirtualUser:Button2Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame) task.wait(0.5) VirtualUser:Button2Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame) end end) end) -- 4. زر حظر ومكافحة الأفعال الجنسية والسيئة (+18 Anti-Bang) لحماية الحساب شرعياً وأدبياً local AntiBangActive = false CreateButton("🛡️ تفعيل الحماية الفائقة (مضاد الأفعال السيئة +18)", function(btn) if AntiBangActive then return end AntiBangActive = true btn.Text = "✅ حامي الحساب والأخلاق +18 (نشط)" btn.TextColor3 = Color3.fromRGB(0, 255, 100) local function SecureCharacter(char) if not char then return end local animController = char:FindFirstChildOfClass("Humanoid") or char:FindFirstChildOfClass("AnimationController") if animController then animController.AnimationPlayed:Connect(function(animationTrack) local animId = tostring(animationTrack.Animation.AnimationId) -- حظر السكربتات المخلة الشائعة ومقاطعتها فوراً if string.find(animId, "148840371") or string.find(animId, "35654637") or string.find(animId, "148842402") or string.find(animId, "591415417") then animationTrack:Stop() end end) end char.DescendantAdded:Connect(function(descendant) if descendant:IsA("Weld") or descendant:IsA("ManualWeld") or descendant:IsA("WeldConstraint") then if descendant.Part0 ~= char.PrimaryPart and descendant.Part1 ~= char.PrimaryPart then task.wait(0.1) descendant:Destroy() end end end) end SecureCharacter(LocalPlayer.Character) LocalPlayer.CharacterAdded:Connect(SecureCharacter) end) --------------------------------------------------------- -- [5] منطق التحقق وتشغيل السكربت --------------------------------------------------------- SubmitBtn.MouseButton1Click:Connect(function() if PasswordInput.Text == "DARK123" then TweenService:Create(LoginFrame, TweenInfo.new(0.4), {BackgroundTransparency = 1}):Play() LoginTitle.Visible = false PasswordInput.Visible = false SubmitBtn.Visible = false LoginStroke:Destroy() task.wait(0.4) LoginFrame:Destroy() -- فتح اللوجو والسكربت بنجاح LogoButton.Visible = true MainFrame.Visible = true startTime = tick() else local oldColor = LoginStroke.Color LoginStroke.Color = Color3.fromRGB(255, 0, 0) PasswordInput.Text = "" PasswordInput.PlaceholderText = "❌ كلمة السر خاطئة!" task.spawn(function() task.wait(1.5) PasswordInput.PlaceholderText = "أدخل كلمة السر هنا..." LoginStroke.Color = oldColor end) end end)