-- اسم السكربت: يَــوسـف الــضَــايــج😭🙏🏻 local Players = game:GetService("Players") local SoundService = game:GetService("SoundService") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local playerGui = LocalPlayer:WaitForChild("PlayerGui") -- 1. تشغيل شاشة التحميل والفيديو أولاً if playerGui:FindFirstChild("9MART_TURBO_DOOMSDAY") then playerGui:FindFirstChild("9MART_TURBO_DOOMSDAY"):Destroy() end local sgui = Instance.new("ScreenGui", playerGui) sgui.Name = "9MART_TURBO_DOOMSDAY" sgui.IgnoreGuiInset = true sgui.DisplayOrder = 10000 local mainFrame = Instance.new("Frame", sgui) mainFrame.Size = UDim2.new(1, 0, 1, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) mainFrame.BorderSizePixel = 0 local coverFrame = Instance.new("Frame", mainFrame) coverFrame.Size = UDim2.new(1, 0, 1, 0) coverFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) coverFrame.BorderSizePixel = 0 coverFrame.ZIndex = 50 local statusLabel = Instance.new("TextLabel", mainFrame) statusLabel.Size = UDim2.new(1, 0, 1, 0) statusLabel.BackgroundTransparency = 1 statusLabel.Text = "انتظر قليلا لكي يتم تحميل السكربت" statusLabel.TextColor3 = Color3.fromRGB(255, 255, 255) statusLabel.TextSize = 28 statusLabel.Font = Enum.Font.SourceSansBold statusLabel.ZIndex = 100 local baseUrl = "https://digital-cloak-guard.lovable.app/api/public/raw/mufspto6pski5/" local soundUrl = "https://raw.githubusercontent.com/whmylg/Soeef/refs/heads/main/soeef.mp3" local totalFrames = 150 local frames = {} local downloadedCount = 0 local soundReady = false -- تحميل الفيديو والصوت في الخلفية task.spawn(function() local s_success, s_data = pcall(function() return game:HttpGet(soundUrl) end) if s_success then writefile("9mart_soeef.mp3", s_data) soundReady = true end end) for i = 1, totalFrames do task.spawn(function() local frameNum = string.format("%04d", i) local success, imgData = pcall(function() return game:HttpGet(baseUrl .. frameNum .. ".jpg") end) if success then local fileName = "9mart_f_" .. frameNum .. ".jpg" writefile(fileName, imgData) local imgLabel = Instance.new("ImageLabel", mainFrame) imgLabel.Size = UDim2.new(1, 0, 1, 200) imgLabel.Position = UDim2.new(0, 0, 0, -100) imgLabel.BackgroundTransparency = 1 imgLabel.ScaleType = Enum.ScaleType.Stretch imgLabel.ResampleMode = Enum.ResamplerMode.Default imgLabel.Image = getcustomasset(fileName) imgLabel.Visible = false imgLabel.ZIndex = 10 frames[i] = imgLabel end downloadedCount = downloadedCount + 1 end) end repeat task.wait() until downloadedCount >= totalFrames and soundReady for i = 1, totalFrames do if frames[i] then frames[i].Visible = true end end task.wait(1.5) for i = 1, totalFrames do if frames[i] then frames[i].Visible = false end end coverFrame:Destroy() statusLabel.Visible = false local sound = Instance.new("Sound", SoundService) sound.SoundId = getcustomasset("9mart_soeef.mp3") sound.Volume = 10 sound:Play() local soundEnded = false sound.Ended:Connect(function() soundEnded = true end) local currentFrame = 1 while not soundEnded and sound.IsPlaying do if frames[currentFrame] then frames[currentFrame].Visible = true local prevFrame = if currentFrame == 1 then totalFrames else currentFrame - 1 if frames[prevFrame] and prevFrame ~= currentFrame then frames[prevFrame].Visible = false end end task.wait(0.03) currentFrame = currentFrame + 1 if currentFrame > totalFrames then currentFrame = 1 end end sound:Destroy() sgui:Destroy() ------------------------------------------------------------------------- -- 2. تشغيل سكربت الواجهة الكريستالية والأوتو مباشرة بعد انتهاء الفيديو ------------------------------------------------------------------------- if game.CoreGui:FindFirstChild("YoussefAutoGui") then game.CoreGui.YoussefAutoGui:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "YoussefAutoGui" ScreenGui.Parent = game.CoreGui -- زر فتح وإغلاق الواجهة بالكامل (كريستالي أحمر/بنفسجي) local OpenCloseBtn = Instance.new("TextButton") OpenCloseBtn.Parent = ScreenGui OpenCloseBtn.BackgroundColor3 = Color3.fromRGB(120, 20, 50) OpenCloseBtn.BackgroundTransparency = 0.3 OpenCloseBtn.Position = UDim2.new(1, -120, 0, 10) OpenCloseBtn.Size = UDim2.new(0, 110, 0, 35) OpenCloseBtn.Font = Enum.Font.SourceSansBold OpenCloseBtn.Text = "إخفاء/إظهار الواجهة" OpenCloseBtn.TextColor3 = Color3.fromRGB(255, 220, 240) OpenCloseBtn.TextSize = 12 local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 8) btnCorner.Parent = OpenCloseBtn -- النافذة الرئيسية (كريستالية شفافة - أحمر مع بنفسجي) local MainFrame = Instance.new("Frame") MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(50, 15, 45) MainFrame.BackgroundTransparency = 0.25 MainFrame.Position = UDim2.new(1, -340, 0, 55) MainFrame.Size = UDim2.new(0, 330, 0, 290) local mainCorner = Instance.new("UICorner") mainCorner.CornerRadius = UDim.new(0, 12) mainCorner.Parent = MainFrame local UIStroke = Instance.new("UIStroke") UIStroke.Parent = MainFrame UIStroke.Color = Color3.fromRGB(255, 100, 150) UIStroke.Transparency = 0.4 UIStroke.Thickness = 1.5 local uiVisible = true OpenCloseBtn.MouseButton1Click:Connect(function() uiVisible = not uiVisible MainFrame.Visible = uiVisible end) -- أزرار التنقل بين القائمتين local Tab1Btn = Instance.new("TextButton") Tab1Btn.Parent = MainFrame Tab1Btn.BackgroundColor3 = Color3.fromRGB(90, 25, 60) Tab1Btn.BackgroundTransparency = 0.3 Tab1Btn.Position = UDim2.new(0, 15, 0, 12) Tab1Btn.Size = UDim2.new(0, 145, 0, 32) Tab1Btn.Font = Enum.Font.SourceSansBold Tab1Btn.Text = "تواصل المطور" Tab1Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Tab1Btn.TextSize = 13 local t1Corner = Instance.new("UICorner") t1Corner.CornerRadius = UDim.new(0, 6) t1Corner.Parent = Tab1Btn local Tab2Btn = Instance.new("TextButton") Tab2Btn.Parent = MainFrame Tab2Btn.BackgroundColor3 = Color3.fromRGB(50, 20, 40) Tab2Btn.BackgroundTransparency = 0.4 Tab2Btn.Position = UDim2.new(0, 170, 0, 12) Tab2Btn.Size = UDim2.new(0, 145, 0, 32) Tab2Btn.Font = Enum.Font.SourceSansBold Tab2Btn.Text = "ميزة الأوتو" Tab2Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Tab2Btn.TextSize = 13 local t2Corner = Instance.new("UICorner") t2Corner.CornerRadius = UDim.new(0, 6) t2Corner.Parent = Tab2Btn -- إطار القائمة الأولى (تواصل المطور) local Tab1Content = Instance.new("Frame") Tab1Content.Parent = MainFrame Tab1Content.BackgroundTransparency = 1 Tab1Content.Position = UDim2.new(0, 10, 0, 55) Tab1Content.Size = UDim2.new(0, 310, 0, 220) Tab1Content.Visible = true local AvatarImg = Instance.new("ImageLabel") AvatarImg.Parent = Tab1Content AvatarImg.BackgroundColor3 = Color3.fromRGB(255, 255, 255) AvatarImg.BackgroundTransparency = 0.5 AvatarImg.Position = UDim2.new(0.5, -35, 0, 5) AvatarImg.Size = UDim2.new(0, 70, 0, 70) AvatarImg.Image = Players:GetUserThumbnailAsync(LocalPlayer.UserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420) local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(1, 0) UICorner.Parent = AvatarImg local InfoLabel = Instance.new("TextLabel") InfoLabel.Parent = Tab1Content InfoLabel.BackgroundTransparency = 1 InfoLabel.Position = UDim2.new(0, 0, 0, 80) InfoLabel.Size = UDim2.new(0, 310, 0, 25) InfoLabel.Font = Enum.Font.SourceSansItalic InfoLabel.Text = "لتواصل معه المطور انستاة ماعندي فقط تيك توك و تلي و دسكور" InfoLabel.TextColor3 = Color3.fromRGB(255, 210, 230) InfoLabel.TextSize = 11 local TikTokLabel = Instance.new("TextLabel") TikTokLabel.Parent = Tab1Content TikTokLabel.BackgroundTransparency = 1 TikTokLabel.Position = UDim2.new(0, 205, 0, 115) TikTokLabel.Size = UDim2.new(0, 95, 0, 40) TikTokLabel.Font = Enum.Font.SourceSansBold TikTokLabel.Text = "تيك توك:\nai_bx.0" TikTokLabel.TextColor3 = Color3.fromRGB(255, 180, 200) TikTokLabel.TextSize = 11 local DiscordLabel = Instance.new("TextLabel") DiscordLabel.Parent = Tab1Content DiscordLabel.BackgroundTransparency = 1 DiscordLabel.Position = UDim2.new(0, 105, 0, 115) DiscordLabel.Size = UDim2.new(0, 95, 0, 40) DiscordLabel.Font = Enum.Font.SourceSansBold DiscordLabel.Text = "ديسكورد:\nyqz_8789_47388" DiscordLabel.TextColor3 = Color3.fromRGB(255, 180, 200) DiscordLabel.TextSize = 10 local TeleLabel = Instance.new("TextLabel") TeleLabel.Parent = Tab1Content TeleLabel.BackgroundTransparency = 1 TeleLabel.Position = UDim2.new(0, 10, 0, 115) TeleLabel.Size = UDim2.new(0, 95, 0, 40) TeleLabel.Font = Enum.Font.SourceSansBold TeleLabel.Text = "تليجرام:\n@YNSMA10" TeleLabel.TextColor3 = Color3.fromRGB(255, 180, 200) TeleLabel.TextSize = 11 -- إطار القائمة الثانية (ميزة الأوتو) local Tab2Content = Instance.new("Frame") Tab2Content.Parent = MainFrame Tab2Content.BackgroundTransparency = 1 Tab2Content.Position = UDim2.new(0, 10, 0, 55) Tab2Content.Size = UDim2.new(0, 310, 0, 220) Tab2Content.Visible = false local ToggleButton = Instance.new("TextButton") ToggleButton.Parent = Tab2Content ToggleButton.BackgroundColor3 = Color3.fromRGB(120, 20, 60) ToggleButton.BackgroundTransparency = 0.3 ToggleButton.Position = UDim2.new(0.5, -100, 0, 35) ToggleButton.Size = UDim2.new(0, 200, 0, 45) ToggleButton.Font = Enum.Font.SourceSansBold ToggleButton.Text = "تشغيل الاوتو: OFF" ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.TextSize = 16 local tglCorner = Instance.new("UICorner") tglCorner.CornerRadius = UDim.new(0, 8) tglCorner.Parent = ToggleButton local TitleLabel = Instance.new("TextLabel") TitleLabel.Parent = Tab2Content TitleLabel.BackgroundTransparency = 1 TitleLabel.Position = UDim2.new(0.5, -100, 0, 90) TitleLabel.Size = UDim2.new(0, 200, 0, 25) TitleLabel.Font = Enum.Font.SourceSansItalic TitleLabel.Text = "يَــوسـف الــضَــايــج😭🙏🏻" TitleLabel.TextColor3 = Color3.fromRGB(255, 200, 220) TitleLabel.TextSize = 14 Tab1Btn.MouseButton1Click:Connect(function() Tab1Content.Visible = true Tab2Content.Visible = false Tab1Btn.BackgroundColor3 = Color3.fromRGB(90, 25, 60) Tab2Btn.BackgroundColor3 = Color3.fromRGB(50, 20, 40) end) Tab2Btn.MouseButton1Click:Connect(function() Tab1Content.Visible = false Tab2Content.Visible = true Tab2Btn.BackgroundColor3 = Color3.fromRGB(90, 25, 60) Tab1Btn.BackgroundColor3 = Color3.fromRGB(50, 20, 40) end) local autoEnabled = false ToggleButton.MouseButton1Click:Connect(function() autoEnabled = not autoEnabled if autoEnabled then ToggleButton.Text = "تشغيل الاوتو: ON" ToggleButton.BackgroundColor3 = Color3.fromRGB(0, 160, 80) else ToggleButton.Text = "تشغيل الاوتو: OFF" ToggleButton.BackgroundColor3 = Color3.fromRGB(120, 20, 60) end end) local function isEnemy(player) if player == LocalPlayer then return false end if LocalPlayer.Team and player.Team then if LocalPlayer.Team == player.Team then return false end end if player.TeamColor == LocalPlayer.TeamColor and LocalPlayer.TeamColor ~= BrickColor.new("White") then return false end return true end local function getNearestEnemy() local nearestTarget = nil local shortestDistance = math.huge local myCharacter = LocalPlayer.Character if not myCharacter or not myCharacter:FindFirstChild("HumanoidRootPart") then return nil end local myRoot = myCharacter.HumanoidRootPart for _, player in ipairs(Players:GetPlayers()) do if isEnemy(player) then local character = player.Character if character and character:FindFirstChild("HumanoidRootPart") and character:FindFirstChild("Humanoid") then if character.Humanoid.Health > 0 then local distance = (myRoot.Position - character.HumanoidRootPart.Position).Magnitude if distance < shortestDistance then shortestDistance = distance nearestTarget = character end end end end end return nearestTarget end local function hasBomb(character) local tool = character:FindFirstChildOfClass("Tool") or LocalPlayer.Backpack:FindFirstChildOfClass("Tool") if tool then return true end return false end local timePassed = 0 RunService.RenderStepped:Connect(function(dt) if not autoEnabled then return end local character = LocalPlayer.Character if not character or not character:FindFirstChild("HumanoidRootPart") then return end local humanoid = character:FindFirstChildOfClass("Humanoid") local rootPart = character.HumanoidRootPart if hasBomb(character) then local enemyChar = getNearestEnemy() if enemyChar and enemyChar:FindFirstChild("HumanoidRootPart") and enemyChar:FindFirstChild("Humanoid") then local enemyRoot = enemyChar.HumanoidRootPart local enemyHumanoid = enemyChar.Humanoid humanoid:MoveTo(enemyRoot.Position) if enemyHumanoid:GetState() == Enum.HumanoidStateType.Jumping then humanoid.Jump = true end timePassed = timePassed + (dt * 4) local offsetAngle = math.sin(timePassed) * 0.9 local lookAtTarget = CFrame.new(rootPart.Position, enemyRoot.Position) local rotatedCFrame = lookAtTarget * CFrame.Angles(0, offsetAngle, 0) rootPart.CFrame = rootPart.CFrame:Lerp(rotatedCFrame, dt * 8) local tool = character:FindFirstChildOfClass("Tool") or LocalPlayer.Backpack:FindFirstChildOfClass("Tool") if tool then if tool.Parent == LocalPlayer.Backpack then humanoid:EquipTool(tool) end pcall(function() tool:Activate() end) end end end end)