-- 🔥 HDX ULTIMATE | نهائي كامل ✅ -- تصميم جديد: ذهبي ✨ × أسود ⚫ | حواف متحركة repeat task.wait() until game:IsLoaded() local Players = game:GetService("Players") local UIS = game:GetService("UserInputService") local RS = game:GetService("RunService") local SG = game:GetService("StarterGui") local TS = game:GetService("TeleportService") local LP = Players.LocalPlayer local PG = LP:WaitForChild("PlayerGui") -- حذف القديم pcall(function() if PG:FindFirstChild("HDX") then PG.HDX:Destroy() end end) -- ========== الروابط الجديدة ========== local DISCORD = "https://discord.gg/FaJGrAcuc" local TIKTOK = "https://www.tiktok.com/@alskndrany_9999?_r=1&_t=ZS-99fGaJGe5VV" local MAP_ID = 95371159069025 local MAP_IMG = "https://assetgame.roblox.com/asset-thumbnail/image?assetId="..MAP_ID.."&width=420&height=420" -- ========== الألوان: ذهبي × أسود ========== local GOLD = Color3.fromRGB(218, 165, 32) local GOLD_LIGHT = Color3.fromRGB(255, 215, 0) local GOLD_DARK = Color3.fromRGB(184, 134, 11) local BLACK_BG = Color3.fromRGB(8, 6, 3) local BLACK_CARD = Color3.fromRGB(18, 14, 8) local BLACK_DEEP = Color3.fromRGB(25, 20, 10) local WHITE = Color3.fromRGB(245, 240, 225) local GRAY = Color3.fromRGB(170, 160, 140) local DISCORD_BLUE = Color3.fromRGB(88, 101, 242) local GREEN = Color3.fromRGB(0, 180, 70) -- إشعار local function Notify(title, text) pcall(function() SG:SetCore("SendNotification", {Title=title, Text=text, Duration=3}) end) end -- دالة إنشاء حواف متحركة local function CreateAnimatedStroke(parent, speed, thickness) speed = speed or 2 thickness = thickness or 2 local Stroke = Instance.new("UIStroke", parent) Stroke.Color = GOLD Stroke.Thickness = thickness Stroke.Transparency = 0.1 local Gradient = Instance.new("UIGradient", Stroke) Gradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, GOLD_DARK), ColorSequenceKeypoint.new(0.5, GOLD_LIGHT), ColorSequenceKeypoint.new(1, GOLD_DARK) }) Gradient.Rotation = 0 -- حركة التدرج task.spawn(function() local angle = 0 while Stroke and Stroke.Parent do angle = (angle + speed) % 360 Gradient.Rotation = angle task.wait(0.03) end end) return Stroke end -- دالة تألق نابض local function CreatePulseEffect(parent) task.spawn(function() local t = 0 while parent and parent.Parent do t = t + 0.05 local pulse = 0.85 + math.sin(t * 3) * 0.15 if parent:FindFirstChildOfClass("UIStroke") then parent.UIStroke.Transparency = 1 - pulse end task.wait(0.03) end end) end -- ============================================== -- 📱 الواجهة الرئيسية -- ============================================== local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "HDX" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = PG -- النافذة الرئيسية local Main = Instance.new("Frame") Main.Size = UDim2.new(0, 520, 0, 420) Main.Position = UDim2.new(0.5, -260, 0.5, -210) Main.BackgroundColor3 = BLACK_BG Main.ClipsDescendants = true Main.Parent = ScreenGui local MainCorner = Instance.new("UICorner", Main) MainCorner.CornerRadius = UDim.new(0, 16) -- حواف متحركة رئيسية CreateAnimatedStroke(Main, 1.5, 2.5) -- تأثير خلفية متوهج local Glow = Instance.new("Frame", Main) Glow.Size = UDim2.new(2, 0, 2, 0) Glow.Position = UDim2.new(-0.5, 0, -0.5, 0) Glow.BackgroundTransparency = 0.92 Glow.BackgroundColor3 = GOLD Glow.ZIndex = 0 task.spawn(function() local t = 0 while Glow and Glow.Parent do t = t + 0.01 Glow.Rotation = t * 20 task.wait(0.05) end end) -- شريط العنوان local TopBar = Instance.new("Frame", Main) TopBar.Size = UDim2.new(1, 0, 0, 42) TopBar.BackgroundColor3 = BLACK_CARD TopBar.ZIndex = 2 local TopCorner = Instance.new("UICorner", TopBar) TopCorner.CornerRadius = UDim.new(0, 16) -- خط تحت شريط العنوان local TopLine = Instance.new("Frame", TopBar) TopLine.Size = UDim2.new(1, 0, 0, 2) TopLine.Position = UDim2.new(0, 0, 1, -1) TopLine.BackgroundColor3 = GOLD TopLine.ZIndex = 3 local Title = Instance.new("TextLabel", TopBar) Title.Size = UDim2.new(1, -60, 1, 0) Title.Position = UDim2.new(0, 14, 0, 0) Title.BackgroundTransparency = 1 Title.Text = "🔥 HDX ULTIMATE ✨ 17+ zjshshnsjsjsnsn" Title.TextColor3 = GOLD_LIGHT Title.Font = Enum.Font.GothamBlack Title.TextSize = 15 Title.TextXAlignment = Enum.TextXAlignment.Left Title.ZIndex = 3 -- زر الإغلاق local CloseBtn = Instance.new("TextButton", TopBar) CloseBtn.Size = UDim2.new(0, 32, 0, 28) CloseBtn.Position = UDim2.new(1, -40, 0.5, -14) CloseBtn.BackgroundColor3 = GOLD_DARK CloseBtn.Text = "✕" CloseBtn.TextColor3 = WHITE CloseBtn.Font = Enum.Font.GothamBold CloseBtn.TextSize = 14 CloseBtn.ZIndex = 3 local CloseCorner = Instance.new("UICorner", CloseBtn) CloseCorner.CornerRadius = UDim.new(0, 8) Instance.new("UIStroke", CloseBtn).Color = GOLD_LIGHT -- زر الإخفاء local MinBtn = Instance.new("TextButton", TopBar) MinBtn.Size = UDim2.new(0, 32, 0, 28) MinBtn.Position = UDim2.new(1, -78, 0.5, -14) MinBtn.BackgroundColor3 = BLACK_DEEP MinBtn.Text = "—" MinBtn.TextColor3 = GOLD MinBtn.Font = Enum.Font.GothamBold MinBtn.TextSize = 14 MinBtn.ZIndex = 3 local MinCorner = Instance.new("UICorner", MinBtn) MinCorner.CornerRadius = UDim.new(0, 8) Instance.new("UIStroke", MinBtn).Color = GOLD_DARK -- الشريط الجانبي local SideBar = Instance.new("Frame", Main) SideBar.Size = UDim2.new(0, 115, 1, -42) SideBar.Position = UDim2.new(0, 0, 0, 42) SideBar.BackgroundColor3 = BLACK_CARD SideBar.ZIndex = 2 -- خط فاصل جانبي local SideLine = Instance.new("Frame", SideBar) SideLine.Size = UDim2.new(0, 2, 1, 0) SideLine.Position = UDim2.new(1, -1, 0, 0) SideLine.BackgroundColor3 = GOLD_DARK SideLine.ZIndex = 3 -- منطقة المحتوى local Content = Instance.new("Frame", Main) Content.Size = UDim2.new(1, -115, 1, -42) Content.Position = UDim2.new(0, 115, 0, 42) Content.BackgroundColor3 = BLACK_BG Content.BackgroundTransparency = 0.3 Content.ZIndex = 2 -- نظام التابات local Tabs = {} local TabIcons = { ["🏠 الرئيسية"] = "🏠", ["🎮 ماب اونر"] = "🎮", ["🎵 تيك توك"] = "🎵", ["📞 تواصل"] = "📞" } local function CreateTab(name, index) local Btn = Instance.new("TextButton", SideBar) Btn.Size = UDim2.new(1, -8, 0, 36) Btn.Position = UDim2.new(0, 4, 0, 6 + (index-1)*40) Btn.BackgroundColor3 = BLACK_DEEP Btn.Text = " "..name Btn.TextColor3 = GRAY Btn.Font = Enum.Font.GothamBold Btn.TextSize = 11 Btn.TextXAlignment = Enum.TextXAlignment.Left Btn.ZIndex = 3 Instance.new("UICorner", Btn).CornerRadius = UDim.new(0, 8) local Page = Instance.new("Frame", Content) Page.Size = UDim2.new(1, 0, 1, 0) Page.BackgroundTransparency = 1 Page.Visible = false Page.Parent = Content Page.ZIndex = 2 Tabs[name] = {Button=Btn, Page=Page} Btn.MouseButton1Click:Connect(function() for _,tab in pairs(Tabs) do tab.Page.Visible = false tab.Button.BackgroundColor3 = BLACK_DEEP tab.Button.TextColor3 = GRAY if tab.Button:FindFirstChildOfClass("UIStroke") then tab.Button.UIStroke:Destroy() end end Page.Visible = true Btn.BackgroundColor3 = Color3.fromRGB(40, 30, 10) Btn.TextColor3 = GOLD_LIGHT local s = Instance.new("UIStroke", Btn) s.Color = GOLD s.Thickness = 1.5 end) return Page end local TabHome = CreateTab("🏠 الرئيسية", 1) local TabMap = CreateTab("🎮 ماب اونر", 2) local TabTikTok = CreateTab("🎵 تيك توك", 3) local TabContact = CreateTab("📞 تواصل", 4) -- تفعيل الرئيسية Tabs["🏠 الرئيسية"].Page.Visible = true Tabs["🏠 الرئيسية"].Button.BackgroundColor3 = Color3.fromRGB(40, 30, 10) Tabs["🏠 الرئيسية"].Button.TextColor3 = GOLD_LIGHT local activeStroke = Instance.new("UIStroke", Tabs["🏠 الرئيسية"].Button) activeStroke.Color = GOLD activeStroke.Thickness = 1.5 -- دالة نص local function AddLabel(parent, text, y, color, size) local lbl = Instance.new("TextLabel", parent) lbl.Size = UDim2.new(1, -20, 0, size or 26) lbl.Position = UDim2.new(0, 10, 0, y) lbl.BackgroundTransparency = 1 lbl.Text = text lbl.TextColor3 = color or WHITE lbl.Font = Enum.Font.GothamBold lbl.TextSize = 12 lbl.TextXAlignment = Enum.TextXAlignment.Right return lbl end -- دالة زر فاخر local function AddButton(parent, text, y, color, callback) local btn = Instance.new("TextButton", parent) btn.Size = UDim2.new(1, -20, 0, 40) btn.Position = UDim2.new(0, 10, 0, y) btn.BackgroundColor3 = color or GOLD_DARK btn.Text = text btn.TextColor3 = WHITE btn.Font = Enum.Font.GothamBlack btn.TextSize = 13 Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 10) local stroke = Instance.new("UIStroke", btn) stroke.Color = GOLD_LIGHT stroke.Thickness = 1.5 -- تأثيرات الزر btn.MouseEnter:Connect(function() btn.BackgroundColor3 = Color3.fromRGB( math.min(255, color.R * 255 + 20), math.min(255, color.G * 255 + 20), math.min(255, color.B * 255 + 20) ) stroke.Thickness = 2.5 end) btn.MouseLeave:Connect(function() btn.BackgroundColor3 = color stroke.Thickness = 1.5 end) btn.MouseButton1Click:Connect(callback) return btn end -- دالة بطاقة فاخرة local function AddCard(parent, y, height) local card = Instance.new("Frame", parent) card.Size = UDim2.new(1, -20, 0, height) card.Position = UDim2.new(0, 10, 0, y) card.BackgroundColor3 = BLACK_CARD Instance.new("UICorner", card).CornerRadius = UDim.new(0, 12) CreateAnimatedStroke(card, 2, 1.5) return card end -- ============================================== -- 🏠 الرئيسية -- ============================================== AddLabel(TabHome, "✨ مرحباً بك في HDX ULTIMATE ✨", 12, GOLD_LIGHT, 30).TextSize = 16 -- بطاقة الإعلان المتوهجة local Announce = AddCard(TabHome, 50, 70) local AnnGlow = Instance.new("UIGradient", Announce) AnnGlow.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, BLACK_CARD), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(35, 28, 10)), ColorSequenceKeypoint.new(1, BLACK_CARD) }) local AnnText = Instance.new("TextLabel", Announce) AnnText.Size = UDim2.new(1, -16, 1, -10) AnnText.Position = UDim2.new(0, 8, 0, 5) AnnText.BackgroundTransparency = 1 AnnText.Text = "📢 إعلان: انضم لقروبنا على الديسكورد للحصول على التحديثات والدعم الحصري! 🎮" AnnText.TextColor3 = GOLD AnnText.Font = Enum.Font.GothamBold AnnText.TextSize = 12 AnnText.TextWrapped = true AnnText.TextXAlignment = Enum.TextXAlignment.Right -- معلومات اللاعب local PlayerCard = AddCard(TabHome, 135, 60) AddLabel(PlayerCard, "👤 اللاعب: "..LP.Name, 8, WHITE).TextXAlignment = Enum.TextXAlignment.Right AddLabel(PlayerCard, "🆔 المعرف: "..LP.UserId, 32, GRAY).TextXAlignment = Enum.TextXAlignment.Right -- شعار الحالة local StatusCard = AddCard(TabHome, 210, 50) local StatusLbl = AddLabel(StatusCard, "✅ النظام يعمل بشكل مثالي", 12, GOLD_LIGHT) StatusLbl.TextXAlignment = Enum.TextXAlignment.Center StatusLbl.TextSize = 13 -- ============================================== -- 🎮 ماب اونر: صورة + زر دخول -- ============================================== AddLabel(TabMap, "🎮 ماب اونر HDX الرسمي", 12, GOLD_LIGHT, 28).TextSize = 14 -- صورة الماب مع حواف متحركة local MapHolder = Instance.new("Frame", TabMap) MapHolder.Size = UDim2.new(0, 200, 0, 200) MapHolder.Position = UDim2.new(0.5, -100, 0, 48) MapHolder.BackgroundColor3 = BLACK_CARD Instance.new("UICorner", MapHolder).CornerRadius = UDim.new(0, 14) CreateAnimatedStroke(MapHolder, 3, 2) CreatePulseEffect(MapHolder) local MapImage = Instance.new("ImageLabel", MapHolder) MapImage.Size = UDim2.new(1, -8, 1, -8) MapImage.Position = UDim2.new(0, 4, 0, 4) MapImage.BackgroundTransparency = 1 MapImage.Image = MAP_IMG MapImage.ScaleType = Enum.ScaleType.Crop Instance.new("UICorner", MapImage).CornerRadius = UDim.new(0, 10) -- زر دخول الماب الرئيسي AddButton(TabMap, "🚀 الدخول المباشر للماب", 260, GOLD_DARK, function() Notify("🎮 جاري الدخول", "تحويلك إلى الماب الرسمي...") pcall(function() TS:Teleport(MAP_ID, LP) end) end) -- معلومات الماب AddLabel(TabMap, "🆔 ايدي الماب: "..MAP_ID, 310, GRAY).TextXAlignment = Enum.TextXAlignment.Center -- ============================================== -- 🎵 تيك توك الجديد -- ============================================== AddLabel(TabTikTok, "🎵 حسابي الرسمي في تيك توك", 12, GOLD_LIGHT, 28).TextSize = 14 -- بطاقة التيك توك local TikTokCard = AddCard(TabTikTok, 50, 120) local TikTokIcon = Instance.new("TextLabel", TikTokCard) TikTokIcon.Size = UDim2.new(0, 60, 0, 60) TikTokIcon.Position = UDim2.new(0.5, -30, 0, 15) TikTokIcon.BackgroundColor3 = BLACK_DEEP TikTokIcon.Text = "🎵" TikTokIcon.TextSize = 32 TikTokIcon.Font = Enum.Font.GothamBold Instance.new("UICorner", TikTokIcon).CornerRadius = UDim.new(0, 14) CreateAnimatedStroke(TikTokIcon, 2.5, 2) AddLabel(TikTokCard, "@alskndrany_9999", 80, GOLD_LIGHT).TextXAlignment = Enum.TextXAlignment.Center AddLabel(TikTokCard, "تابعني للحصول على أحدث الفيديوهات!", 100, GRAY).TextXAlignment = Enum.TextXAlignment.Center -- زر فتح التيك توك AddButton(TabTikTok, "🔗 فتح حساب التيك توك", 185, GOLD_DARK, function() Notify("🎵 تيك توك", "جاري فتح الحساب...") pcall(function() if setclipboard then setclipboard(TIKTOK) Notify("✅ تم النسخ", "رابط التيك توك تم نسخه!") end end) end) -- زر نسخ الرابط AddButton(TabTikTok, "📋 نسخ رابط التيك توك", 235, BLACK_DEEP, function() pcall(function() if setclipboard then setclipboard(TIKTOK) Notify("✅ تم النسخ", "رابط التيك توك جاهز!") else Notify("❌ خطأ", "لا يمكن النسخ الآن") end end) end) -- ============================================== -- 📞 تواصل -- ============================================== AddLabel(TabContact, "📞 تواصل معنا", 12, GOLD_LIGHT, 28).TextSize = 14 AddLabel(TabContact, "👑 المطور: 17+ zjshshnsjsjsnsn", 50, WHITE) -- زر الديسكورد AddButton(TabContact, "💜 نسخ رابط الديسكورد", 85, DISCORD_BLUE, function() pcall(function() if setclipboard then setclipboard(DISCORD) Notify("✅ تم النسخ", "رابط الديسكورد جاهز!") else Notify("❌ خطأ", "لا يمكن النسخ الآن") end end) end) -- زر التيك توك في التواصل AddButton(TabContact, "🎵 حساب التيك توك", 135, GOLD_DARK, function() pcall(function() if setclipboard then setclipboard(TIKTOK) Notify("✅ تم النسخ", "رابط التيك توك جاهز!") end end) end) -- معلومات إضافية local InfoCard = AddCard(TabContact, 190, 90) AddLabel(InfoCard, "✨ HDX ULTIMATE v2.0", 8, GOLD_LIGHT).TextXAlignment = Enum.TextXAlignment.Center AddLabel(InfoCard, "🎨 تصميم: ذهبي × أسود فاخر", 32, GRAY).TextXAlignment = Enum.TextXAlignment.Center AddLabel(InfoCard, "⚡ حواف متحركة + تأثيرات متوهجة", 56, GRAY).TextXAlignment = Enum.TextXAlignment.Center -- ============================================== -- التحكم في النوافذ -- ============================================== CloseBtn.MouseButton1Click:Connect(function() Main.Visible = false Notify("👋 تم الإخفاء", "اضغط RightShift لإظهار الواجهة مجدداً") end) MinBtn.MouseButton1Click:Connect(function() Main.Visible = false end) -- اختصار إظهار/إخفاء: RightShift UIS.InputBegan:Connect(function(input, gp) if gp then return end if input.KeyCode == Enum.KeyCode.RightShift then Main.Visible = not Main.Visible end end) -- سحب النافذة local dragging, dragStart, startPos = false TopBar.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = Main.Position end end) UIS.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then local delta = input.Position - dragStart Main.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) UIS.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end) Notify("✅ تم التحميل بنجاح", "HDX ULTIMATE جاهز! اضغط RightShift للإخفاء") -- 🔥 HDX ULTIMATE v3.1 | مصحح بالكامل ✅ -- Fling All زي الأصل + زر الفتح على الجنب + علامة إغلاق صحيحة -- صاحب السكربت: ❖إسكندراني❖ | TEAM: HDX repeat task.wait() until game:IsLoaded() local Players = game:GetService("Players") local UIS = game:GetService("UserInputService") local RS = game:GetService("RunService") local SG = game:GetService("StarterGui") local LP = Players.LocalPlayer local PG = LP:WaitForChild("PlayerGui") -- حذف النسخة القديمة pcall(function() PG:FindFirstChild("HDX"):Destroy() end) -- علامة مستخدم السكربت local function MarkUser() task.wait(1) pcall(function() local m = Instance.new("StringValue") m.Name = "HDX_USER" m.Value = "1" m.Parent = LP.Character end) end MarkUser() LP.CharacterAdded:Connect(MarkUser) -- إعدادات Fling الأصيلة ✨ local FLING_TIME = 0.5 local FlingAll = false local SavedCFrame = nil -- متغيرات عامة local RED = Color3.new(0.78,0.1,0.1) local GREEN = Color3.new(0,0.7,0.27) local DARK = Color3.new(0.05,0.02,0.02) local DARK2 = Color3.new(0.09,0.03,0.03) local WHITE = Color3.new(0.94,0.94,0.94) local GRAY = Color3.new(0.66,0.58,0.58) local GOLD = Color3.new(1,0.78,0.17) local NoClip, Under, SideMove = false, false, false local AntiVoid, AntiFling = false, false -- دوال مساعدة local function Notify(t,x) pcall(function() SG:SetCore("SendNotification",{Title=t,Text=x,Duration=3}) end) end local function IsHDX(p) return p.Character and p.Character:FindFirstChild("HDX_USER") end -- دالة الشات فوق الراس local function ShowChat(p, msg) if not IsHDX(p) then return end local c = p.Character if not c then return end local h = c:FindFirstChild("Head") if not h then return end pcall(function() h:FindFirstChild("HDX_CHAT"):Destroy() end) local b = Instance.new("BillboardGui") b.Name = "HDX_CHAT" b.AlwaysOnTop = true b.Size = UDim2.new(0,200,0,50) b.StudsOffset = Vector3.new(0,3,0) b.Parent = h local f = Instance.new("Frame") f.Size = UDim2.new(1,0,1,0) f.BackgroundColor3 = Color3.new(0.08,0.03,0.03) f.Parent = b Instance.new("UICorner",f).CornerRadius = UDim.new(0,8) Instance.new("UIStroke",f).Color = RED local t = Instance.new("TextLabel") t.Size = UDim2.new(1,-12,1,-8) t.Position = UDim2.new(0,6,0,4) t.BackgroundTransparency = 1 t.Text = p.Name..": "..msg t.TextColor3 = WHITE t.Font = Enum.Font.GothamBold t.TextSize = 12 t.TextWrapped = true t.Parent = f task.delay(5, function() pcall(function() b:Destroy() end) end) end -- دالة Fling الأصلية بالظبط ✨ local function SkidFling(TargetPlayer) local Character = LP.Character local RootPart = Character and Character:FindFirstChild("HumanoidRootPart") local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid") local TCharacter = TargetPlayer.Character local TRootPart = TCharacter and TCharacter:FindFirstChild("HumanoidRootPart") if not (RootPart and Humanoid and TRootPart) then return end local BV = Instance.new("BodyVelocity") BV.Velocity = Vector3.new(9e8,9e8,9e8) BV.MaxForce = Vector3.new(math.huge,math.huge,math.huge) BV.Parent = RootPart local start = time() local angle = 0 while (time() - start) < FLING_TIME and FlingAll do angle += 120 RootPart.CFrame = TRootPart.CFrame * CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(angle),0,0) RootPart.Velocity = Vector3.new(9e7,9e7,9e7) task.wait() RootPart.CFrame = TRootPart.CFrame * CFrame.new(0, -1.5, 0) task.wait() RootPart.CFrame = TRootPart.CFrame * CFrame.new(2,1,-2) task.wait() RootPart.CFrame = TRootPart.CFrame * CFrame.new(-2,-1,2) task.wait() end BV:Destroy() end -- بناء الواجهة local Gui = Instance.new("ScreenGui") Gui.Name = "HDX" Gui.ResetOnSpawn = false Gui.Parent = PG local Main = Instance.new("Frame") Main.Size = UDim2.new(0,500,0,400) Main.Position = UDim2.new(0.5,-250,0.5,-200) Main.BackgroundColor3 = DARK Main.Parent = Gui Instance.new("UICorner",Main).CornerRadius = UDim.new(0,12) Instance.new("UIStroke",Main).Color = RED local Top = Instance.new("Frame") Top.Size = UDim2.new(1,0,0,36) Top.BackgroundColor3 = DARK2 Top.Parent = Main Instance.new("UICorner",Top).CornerRadius = UDim.new(0,12) local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1,-80,1,0) Title.Position = UDim2.new(0,12,0,0) Title.BackgroundTransparency = 1 Title.Text = "🔥 TEAM HDX SCRIPT" Title.TextColor3 = RED Title.Font = Enum.Font.GothamBold Title.TextSize = 14 Title.TextXAlignment = 0 Title.Parent = Top local Ver = Instance.new("TextLabel") Ver.Size = UDim2.new(0,40,1,0) Ver.Position = UDim2.new(1,-80,0,0) Ver.BackgroundTransparency = 1 Ver.Text = "v3.1" Ver.TextColor3 = GOLD Ver.Font = Enum.Font.GothamBold Ver.TextSize = 12 Ver.TextXAlignment = 2 Ver.Parent = Top -- زر الإغلاق بعلامة ❌ واضحة ✨ local Close = Instance.new("TextButton") Close.Size = UDim2.new(0,28,0,24) Close.Position = UDim2.new(1,-34,0.5,-12) Close.Text = "❌" Close.TextColor3 = WHITE Close.BackgroundColor3 = Color3.new(0.58,0.1,0.1) Close.Font = Enum.Font.GothamBold Close.TextSize = 14 Close.Parent = Top Instance.new("UICorner",Close).CornerRadius = UDim.new(0,6) -- زر الفتح على الجنب اليسار ✨ local OpenBtn = Instance.new("TextButton") OpenBtn.Size = UDim2.new(0,55,0,55) OpenBtn.Position = UDim2.new(0,10,0.5,-27) -- على الجنب اليسار OpenBtn.BackgroundColor3 = Color3.new(0.1,0.03,0.03) OpenBtn.Text = "HDX" OpenBtn.TextColor3 = RED OpenBtn.Font = Enum.Font.GothamBlack OpenBtn.TextSize = 14 OpenBtn.Visible = false OpenBtn.Parent = Gui Instance.new("UICorner",OpenBtn).CornerRadius = UDim.new(1,0) Close.MouseButton1Click:Connect(function() Main.Visible=false; OpenBtn.Visible=true end) OpenBtn.MouseButton1Click:Connect(function() Main.Visible=true; OpenBtn.Visible=false end) -- السحب local Drag, DS, SP = false Top.InputBegan:Connect(function(i) if i.UserInputType.Name=="MouseButton1" or i.UserInputType.Name=="Touch" then Drag=true DS=i.Position SP=Main.Position i.Changed:Connect(function() if i.UserInputState.Name=="End" then Drag=false end end) end end) UIS.InputChanged:Connect(function(i) if not Drag then return end if i.UserInputType.Name=="MouseMovement" or i.UserInputType.Name=="Touch" then local d=i.Position-DS Main.Position=UDim2.new(SP.X.Scale,SP.X.Offset+d.X,SP.Y.Scale,SP.Y.Offset+d.Y) end end) -- الشريط الجانبي local Side = Instance.new("Frame") Side.Size = UDim2.new(0,115,1,-36) Side.Position = UDim2.new(0,0,0,36) Side.BackgroundColor3 = Color3.new(0.06,0.02,0.02) Side.Parent = Main local Content = Instance.new("Frame") Content.Size = UDim2.new(1,-115,1,-36) Content.Position = UDim2.new(0,115,0,36) Content.BackgroundColor3 = Color3.new(0.05,0.02,0.02) Content.Parent = Main -- نظام التابات local Tabs, Cur = {} local function NewTab(n,i) local B = Instance.new("TextButton") B.Size = UDim2.new(1,0,0,30) B.Position = UDim2.new(0,0,0,(i-1)*30) B.BackgroundColor3 = Color3.new(0.08,0.03,0.03) B.Text = n B.TextColor3 = GRAY B.TextSize = 11 B.Font = Enum.Font.Gotham B.AutoButtonColor = false B.Parent = Side local P = Instance.new("ScrollingFrame") P.Size = UDim2.new(1,0,1,0) P.BackgroundTransparency = 1 P.BorderSizePixel = 0 P.ScrollBarThickness = 3 P.CanvasSize = UDim2.new(0,0,0,800) P.Visible = false P.Parent = Content Tabs[n]={B=B,P=P} B.MouseButton1Click:Connect(function() for _,t in pairs(Tabs) do t.P.Visible=false t.B.BackgroundColor3=Color3.new(0.08,0.03,0.03) t.B.TextColor3=GRAY end P.Visible=true B.BackgroundColor3=Color3.new(0.2,0.05,0.05) B.TextColor3=RED Cur=n end) return P end local Home = NewTab("🏠 الرئيسية",1) local Tools = NewTab("🛠 الأدوات",2) local Protect = NewTab("🛡 الحماية",3) local Scripts = NewTab("📜 سكربتات",4) local Chat = NewTab("💬 شات الفريق",5) local About = NewTab("❓ من نحن",6) local Contact = NewTab("📞 تواصل",7) Tabs["🏠 الرئيسية"].B.BackgroundColor3 = Color3.new(0.2,0.05,0.05) Tabs["🏠 الرئيسية"].B.TextColor3 = RED Tabs["🏠 الرئيسية"].P.Visible = true Cur = "🏠 الرئيسية" -- دوال العناصر local function Lbl(p,t,y,s,c) local l = Instance.new("TextLabel") l.Size = UDim2.new(1,-16,0,28) l.Position = UDim2.new(0,8,0,y) l.BackgroundTransparency = 1 l.Text = t l.TextColor3 = c or WHITE l.Font = Enum.Font.GothamBold l.TextSize = s or 12 l.TextXAlignment = 0 l.Parent = p return l end local function Btn(p,t,y,c,cb) local b = Instance.new("TextButton") b.Size = UDim2.new(1,-16,0,32) b.Position = UDim2.new(0,8,0,y) b.BackgroundColor3 = c or Color3.new(0.4,0.1,0.1) b.Text = t b.TextColor3 = WHITE b.Font = Enum.Font.GothamBold b.TextSize = 12 b.AutoButtonColor = true b.Parent = p Instance.new("UICorner",b).CornerRadius = UDim.new(0,6) b.MouseButton1Click:Connect(cb) return b end local function Txt(p,t,y,w) local b = Instance.new("TextBox") b.Size = UDim2.new(0,w or 60,0,28) b.Position = UDim2.new(0,8,0,y) b.BackgroundColor3 = Color3.new(0.12,0.04,0.04) b.Text = t b.TextColor3 = WHITE b.Font = Enum.Font.Gotham b.TextSize = 11 b.ClearTextOnFocus = false b.Parent = p Instance.new("UICorner",b).CornerRadius = UDim.new(0,5) return b end -- ================================================== -- 🏠 الرئيسية -- ================================================== Lbl(Home,"🔥 مرحباً بك في HDX",8,14,RED) Lbl(Home,"👤 معلومات اللاعب",40,12) local UC = Instance.new("Frame") UC.Size = UDim2.new(1,-16,0,65) UC.Position = UDim2.new(0,8,0,65) UC.BackgroundColor3 = DARK2 UC.Parent = Home Instance.new("UICorner",UC).CornerRadius = UDim.new(0,8) local Av = Instance.new("ImageLabel") Av.Size = UDim2.new(0,48,0,48) Av.Position = UDim2.new(0,8,0.5,-24) Av.BackgroundTransparency = 1 Av.Image = "rbxthumb://type=AvatarHeadShot&id="..LP.UserId.."&w=420&h=420" Av.Parent = UC Instance.new("UICorner",Av).CornerRadius = UDim.new(1,0) Instance.new("UIStroke",Av).Color = GOLD Lbl(UC,LP.Name,10,13).Position = UDim2.new(0,68,0,8) Lbl(UC,"ID: "..LP.UserId,32,10,GRAY).Position = UDim2.new(0,68,0,32) Btn(Home,"🔄 تحديث الصورة",140,Color3.new(0.2,0.35,0.6),function() Av.Image = "rbxthumb://type=AvatarHeadShot&id="..LP.UserId.."&w=420&h=420" Notify("✅ تم","تم التحديث") end) Lbl(Home,"📜 حقوق الملكية",180,12) local R = Instance.new("TextLabel") R.Size = UDim2.new(1,-16,0,35) R.Position = UDim2.new(0,8,0,205) R.BackgroundTransparency = 1 R.Text = "جميع الحقوق لـ ❖إسكندراني❖ وفريق HDX\nيُمنع النسخ أو البيع بدون إذن" R.TextColor3 = GRAY R.Font = Enum.Font.Gotham R.TextSize = 10 R.TextXAlignment = 0 R.TextWrapped = true R.Parent = Home -- ================================================== -- 🛠 الأدوات — Fling All مصحح بالكامل ✨ -- ================================================== Lbl(Tools,"⚡ السرعة",8,12) local Spd = Txt(Tools,"16",35,60) Btn(Tools,"تطبيق",35,Color3.new(0.56,0.1,0.1),function() local n = tonumber(Spd.Text) local h = LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") if h and n then h.WalkSpeed = math.clamp(n,0,200) Notify("⚡ السرعة",n) end end).Position = UDim2.new(0,76,0,35) Lbl(Tools,"🦘 القفز",75,12) local Jmp = Txt(Tools,"7.2",102,60) Btn(Tools,"تطبيق",102,Color3.new(0.56,0.1,0.1),function() local n = tonumber(Jmp.Text) local h = LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") if h and n then h.JumpHeight = math.clamp(n,0,100) Notify("🦘 القفز",n) end end).Position = UDim2.new(0,76,0,102) local NCBtn = Btn(Tools,"🚪 NoClip: OFF",140,Color3.new(0.5,0.1,0.1),function() NoClip = not NoClip NCBtn.Text = NoClip and "🚪 NoClip: ON" or "🚪 NoClip: OFF" NCBtn.BackgroundColor3 = NoClip and GREEN or Color3.new(0.5,0.1,0.1) end) Btn(Tools,"🔄 Reset",178,Color3.new(0.4,0.12,0.45),function() local h = LP.Character and LP.Character:FindFirstChildOfClass("Humanoid") if h then h.Health = 0 end end) Btn(Tools,"⚡ Anti-Lag",216,Color3.new(0.15,0.35,0.6),function() pcall(function() settings().Rendering.QualityLevel = Enum.QualityLevel.Level01 end) Notify("⚡ تم","تم تقليل الجودة") end) -- تحت الأرض local UndBox = Txt(Tools,"0.02",256,50) local UndBtn = Btn(Tools,"⬇️ تحت الأرض: OFF",256,Color3.new(0.12,0.4,0.8),function() Under = not Under UndBtn.Text = Under and "⬇️ تحت الأرض: ON" or "⬇️ تحت الأرض: OFF" UndBtn.BackgroundColor3 = Under and RED or Color3.new(0.12,0.4,0.8) end) UndBtn.Position = UDim2.new(0,66,0,256) UndBtn.Size = UDim2.new(1,-82,0,28) -- يمين ويسار local SidBox = Txt(Tools,"0.01",294,50) local SidBtn = Btn(Tools,"↔️ يمين/يسار: OFF",294,Color3.new(0.12,0.4,0.8),function() SideMove = not SideMove SidBtn.Text = SideMove and "↔️ يمين/يسار: ON" or "↔️ يمين/يسار: OFF" SidBtn.BackgroundColor3 = SideMove and RED or Color3.new(0.12,0.4,0.8) end) SidBtn.Position = UDim2.new(0,66,0,294) SidBtn.Size = UDim2.new(1,-82,0,28) -- 💥 Fling All الأصلية بالظبط ✨ Lbl(Tools,"💥 Fling All",332,12) local FlBtn = Btn(Tools,"💥 Fling All: OFF",358,Color3.new(0.7,0.12,0.12),function() FlingAll = not FlingAll if FlingAll then local char = LP.Character local root = char and char:FindFirstChild("HumanoidRootPart") if root then SavedCFrame = root.CFrame end else local char = LP.Character local root = char and char:FindFirstChild("HumanoidRootPart") if root and SavedCFrame then root.CFrame = SavedCFrame end end FlBtn.Text = "💥 Fling All: " .. (FlingAll and "ON" or "OFF") FlBtn.BackgroundColor3 = FlingAll and GREEN or Color3.new(0.7,0.12,0.12) end) -- حلقة Fling الأصلية ✨ task.spawn(function() while true do if FlingAll then for _,plr in pairs(Players:GetPlayers()) do if not FlingAll then break end if plr ~= LP then SkidFling(plr) end end end task.wait() end end) -- ================================================== -- حلقات التشغيل -- ================================================== RS.Stepped:Connect(function() if NoClip and LP.Character then pcall(function() for _,v in ipairs(LP.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end) end end) task.spawn(function() while Gui.Parent do task.wait(0.05) if Under and LP.Character then local r = LP.Character:FindFirstChild("HumanoidRootPart") if r then r.CFrame = CFrame.new(r.Position.X,-150,r.Position.Z) task.wait(tonumber(UndBox.Text) or 0.02) r.CFrame = CFrame.new(r.Position.X,40,r.Position.Z) end end end end) task.spawn(function() local d = 1 while Gui.Parent do task.wait(0.05) if SideMove and LP.Character then local r = LP.Character:FindFirstChild("HumanoidRootPart") if r then d = -d r.CFrame = r.CFrame * CFrame.new(d*4,0,0) task.wait(tonumber(SidBox.Text) or 0.01) end end end end) -- ================================================== -- 🛡 الحماية -- ================================================== Lbl(Protect,"🛡 الحماية المحلية",10,13) local AVBtn = Btn(Protect,"🛡 Anti-Void: OFF",45,Color3.new(0.47,0.12,0.12),function() AntiVoid = not AntiVoid AVBtn.Text = AntiVoid and "🛡 Anti-Void: ON" or "🛡 Anti-Void: OFF" AVBtn.BackgroundColor3 = AntiVoid and GREEN or Color3.new(0.47,0.12,0.12) end) local AFBtn = Btn(Protect,"🌀 Anti-Fling: OFF",87,Color3.new(0.47,0.12,0.12),function() AntiFling = not AntiFling AFBtn.Text = AntiFling and "🌀 Anti-Fling: ON" or "🌀 Anti-Fling: OFF" AFBtn.BackgroundColor3 = AntiFling and GREEN or Color3.new(0.47,0.12,0.12) end) RS.Heartbeat:Connect(function() local c = LP.Character if not c then return end local r = c:FindFirstChild("HumanoidRootPart") if not r then return end if AntiVoid and r.Position.Y < -40 then r.CFrame = CFrame.new(r.Position.X,50,r.Position.Z) end if AntiFling then pcall(function() r.AssemblyAngularVelocity = Vector3.zero end) end end) Lbl(Protect,"✅ Anti-Void: يمنع السقوط في الفراغ",135,10,GRAY) Lbl(Protect,"✅ Anti-Fling: يثبت الشخصية ضد الرمي",158,10,GRAY) -- ================================================== -- 📜 سكربتات خارجية -- ================================================== Lbl(Scripts,"📜 سكربتات خارجية",10,13) Lbl(Scripts,"تحتاج اتصال بالإنترنت",35,10,GRAY) Btn(Scripts,"💃 Anil Emotes (رقصات)",65,Color3.new(0.35,0.16,0.55),function() local ok = pcall(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Anil-Emotes-103537"))() end) Notify(ok and "✅ نجاح" or "❌ خطأ", ok and "تم التشغيل" or "فشل التحميل") end) Btn(Scripts,"👑 Infinite Yield (أدمن)",107,Color3.new(0.2,0.3,0.6),function() local ok = pcall(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Better-Infinite-Yield-245091"))() end) Notify(ok and "✅ نجاح" or "❌ خطأ", ok and "تم التشغيل" or "فشل التحميل") end) Btn(Scripts,"🚀 FH7 Script",149,Color3.new(0.7,0.2,0.47),function() local ok = pcall(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-FH7-Script-224787"))() end) Notify(ok and "✅ نجاح" or "❌ خطأ", ok and "تم التشغيل" or "فشل التحميل") end) -- ================================================== -- 💬 شات الفريق الخاص -- ================================================== Lbl(Chat,"💬 شات الفريق الخاص",10,13) Lbl(Chat,"الرسائل تظهر فوق الراس بس لمستخدمي HDX ✅",35,10,GRAY) local ChatIn = Txt(Chat,"اكتب رسالتك هنا...",70,250) ChatIn.Size = UDim2.new(1,-16,0,32) Btn(Chat,"📤 إرسال الرسالة",112,Color3.new(0.4,0.12,0.12),function() local m = ChatIn.Text if m ~= "" then for _,p in ipairs(Players:GetPlayers()) do ShowChat(p,m) end Notify("💬 تم الإرسال",m) ChatIn.Text = "" end end) Lbl(Chat,"🔒 التواصل بيكون خاص بفريق HDX بس!",160,10,GOLD) -- ================================================== -- ❓ من نحن -- ================================================== Lbl(About,"❓ من نحن",10,14,GOLD) local B1 = Instance.new("Frame") B1.Size = UDim2.new(1,-16,0,75) B1.Position = UDim2.new(0,8,0,40) B1.BackgroundColor3 = DARK2 B1.Parent = About Instance.new("UICorner",B1).CornerRadius = UDim.new(0,8) local T1 = Instance.new("TextLabel") T1.Size = UDim2.new(1,-16,1,-10) T1.Position = UDim2.new(0,8,0,5) T1.BackgroundTransparency = 1 T1.TextColor3 = WHITE T1.Text = "نحن فريق **HDX SCRIPT** — مجموعة مطورين عرب بيهتموا بتطوير سكربتات Roblox قوية وسهلة الاستخدام للجميع! 🚀🔥" T1.Font = Enum.Font.Gotham T1.TextSize = 11 T1.TextWrapped = true T1.TextXAlignment = 0 T1.Parent = B1 Lbl(About,"🎯 هدفنا",125,12,RED) Lbl(About,"نقدملك تجربة لعب أفضل وأكثر متعة بسكربتات آمنة ومجانية! 💪✨",150,10,WHITE) Lbl(About,"💡 مميزاتنا",185,12,GREEN) local F = {"✅ سكربت قوي وآمن","✅ واجهة عربية سهلة","✅ تحديثات مستمرة","✅ دعم فريق متكامل","✅ مجاني للجميع"} for i,f in ipairs(F) do Lbl(About,f,210+(i-1)*20,10) end -- ================================================== -- 📞 تواصل -- ================================================== Lbl(Contact,"📞 تواصل معنا",10,13) Lbl(Contact,"صاحب السكربت: ❖إسكندراني❖",45,12) Lbl(Contact,"المعرف: Alskndrany_9999",72,11,GRAY) Btn(Contact,"📋 نسخ اسم المطور",105,Color3.new(0.5,0.1,0.1),function() pcall(function() if setclipboard then setclipboard("Alskndrany_9999") Notify("✅ تم النسخ","اسم المطور") end end) end) Btn(Contact,"💬 نسخ رابط واتساب",147,Color3.new(0.12,0.6,0.3),function() pcall(function() if setclipboard then setclipboard("https://chat.whatsapp.com/DhimlS3ZfxOBzr0dF5eCPu") Notify("✅ تم النسخ","رابط الواتساب") end end) end) Lbl(Contact,"انضم لقروبنا عشان الدعم والتحديثات! 📱",195,10,GOLD) -- ================================================== -- بدء التشغيل -- ================