--[[ 🔥 HDX Script | Ultimate صاحب السكربت: ❖إسكندراني❖ ]] if not game:IsLoaded() then game.Loaded:Wait() end local Players = game:GetService("Players") local LP = Players.LocalPlayer local CG = game:GetService("CoreGui") local SG = game:GetService("StarterGui") local UIS = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local RunService = game:GetService("RunService") pcall(function() if CG:FindFirstChild("HDX_Script") then CG.HDX_Script:Destroy() end end) local function Notify(title, text) pcall(function() SG:SetCore("SendNotification", {Title = title, Text = text, Duration = 4}) end) end local TEAM = { ["Alskndrany_9999"] = true, ["Dhdhshehrei"] = true, ["King6540k"] = true, ["JOO111222333"] = true, ["ahmed_121212121"] = true } local isTeam = TEAM[LP.Name] == true -- حماية local Protection = {AntiKick=false, AntiBan=false, AntiTeleport=false, AntiVoid=false} local oldNamecall, oldKick local blockedWords = {"kick","ban","punish","hdadmin","admin","rank","command","cmd","shutdown","mute","jail"} local function ApplyProtection() pcall(function() if Protection.AntiKick and not oldKick then oldKick = hookfunction(LP.Kick, function() return nil end) end end) pcall(function() if not oldNamecall then oldNamecall = hookmetamethod(game, "__namecall", function(self, ...) local method = getnamecallmethod() if Protection.AntiKick and method == "Kick" then return nil end if Protection.AntiTeleport and (method == "Teleport" or method == "TeleportToPlaceInstance") then return nil end if (Protection.AntiKick or Protection.AntiBan) and (method == "FireServer" or method == "InvokeServer") then local n = tostring(self.Name):lower() for _, w in ipairs(blockedWords) do if n:find(w) then return nil end end end return oldNamecall(self, ...) end) end end) end task.spawn(function() while true do task.wait(0.07) if Protection.AntiKick or Protection.AntiBan or Protection.AntiTeleport then ApplyProtection() end end end) task.spawn(function() while true do task.wait(0.25) if Protection.AntiVoid and LP.Character then local root = LP.Character:FindFirstChild("HumanoidRootPart") if root and root.Position.Y < -40 then root.CFrame = CFrame.new(root.Position.X, 50, root.Position.Z) end end end end) -- واجهة local gui = Instance.new("ScreenGui") gui.Name = "HDX_Script" gui.ResetOnSpawn = false gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling gui.Parent = CG local accent = Color3.fromRGB(200, 20, 20) local accent2 = Color3.fromRGB(0, 200, 70) local dark = Color3.fromRGB(12, 6, 6) -- إعلان local ad = Instance.new("Frame") ad.Size = UDim2.new(1, 0, 1, 0) ad.BackgroundColor3 = Color3.fromRGB(8, 0, 0) ad.BorderSizePixel = 0 ad.ZIndex = 30 ad.Parent = gui local adAv = Instance.new("ImageLabel") adAv.Size = UDim2.new(0, 95, 0, 95) adAv.Position = UDim2.new(0.5, -47, 0.26, 0) adAv.BackgroundColor3 = Color3.fromRGB(30, 10, 10) adAv.Image = "rbxthumb://type=AvatarHeadShot&id=10841397475&w=420&h=420" adAv.ZIndex = 31 adAv.Parent = ad Instance.new("UICorner", adAv).CornerRadius = UDim.new(1, 0) Instance.new("UIStroke", adAv).Color = accent local adT1 = Instance.new("TextLabel") adT1.Size = UDim2.new(1, 0, 0, 32) adT1.Position = UDim2.new(0, 0, 0.52, 0) adT1.BackgroundTransparency = 1 adT1.Text = "تم رجوع ❖إسكندراني❖" adT1.TextColor3 = accent adT1.Font = Enum.Font.GothamBlack adT1.TextSize = 24 adT1.ZIndex = 31 adT1.Parent = ad local adT2 = Instance.new("TextLabel") adT2.Size = UDim2.new(1, 0, 0, 22) adT2.Position = UDim2.new(0, 0, 0.62, 0) adT2.BackgroundTransparency = 1 adT2.Text = "💎 Alskndrany_9999 💎" adT2.TextColor3 = accent2 adT2.Font = Enum.Font.GothamBold adT2.TextSize = 16 adT2.ZIndex = 31 adT2.Parent = ad task.delay(3.8, function() pcall(function() local ti = TweenInfo.new(0.9) TweenService:Create(ad, ti, {BackgroundTransparency = 1}):Play() TweenService:Create(adAv, ti, {ImageTransparency = 1}):Play() TweenService:Create(adT1, ti, {TextTransparency = 1}):Play() TweenService:Create(adT2, ti, {TextTransparency = 1}):Play() task.wait(1) ad:Destroy() end) end) -- المين 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 = dark main.BorderSizePixel = 0 main.Parent = gui Instance.new("UICorner", main).CornerRadius = UDim.new(0, 12) local stroke = Instance.new("UIStroke", main) stroke.Color = accent stroke.Thickness = 2.4 task.spawn(function() while main and main.Parent do for i = 0.1, 0.4, 0.03 do stroke.Transparency = i task.wait(0.03) end for i = 0.4, 0.1, -0.03 do stroke.Transparency = i task.wait(0.03) end end end) local topBar = Instance.new("Frame") topBar.Size = UDim2.new(1, 0, 0, 36) topBar.BackgroundColor3 = Color3.fromRGB(20, 6, 6) topBar.BorderSizePixel = 0 topBar.Parent = main Instance.new("UICorner", topBar).CornerRadius = UDim.new(0, 12) local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -40, 1, 0) title.Position = UDim2.new(0, 12, 0, 0) title.BackgroundTransparency = 1 title.Text = "TEAM HDX Script" title.TextColor3 = accent title.Font = Enum.Font.GothamBold title.TextSize = 15 title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = topBar local closeBtn = Instance.new("TextButton") closeBtn.Size = UDim2.new(0, 28, 0, 24) closeBtn.Position = UDim2.new(1, -34, 0.5, -12) closeBtn.BackgroundColor3 = Color3.fromRGB(160, 25, 25) closeBtn.Text = "X" closeBtn.TextColor3 = Color3.new(1,1,1) closeBtn.Font = Enum.Font.GothamBold closeBtn.TextSize = 13 closeBtn.Parent = topBar Instance.new("UICorner", closeBtn).CornerRadius = UDim.new(0, 6) closeBtn.MouseButton1Click:Connect(function() gui:Destroy() end) local sidebar = Instance.new("Frame") sidebar.Size = UDim2.new(0, 115, 1, -36) sidebar.Position = UDim2.new(0, 0, 0, 36) sidebar.BackgroundColor3 = Color3.fromRGB(16, 5, 5) sidebar.BorderSizePixel = 0 sidebar.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.fromRGB(14, 5, 5) content.BorderSizePixel = 0 content.Parent = main local tabs, currentTab = {}, nil local function CreateTab(name, order) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, 0, 0, 30) btn.Position = UDim2.new(0, 0, 0, (order-1)*30) btn.BackgroundColor3 = Color3.fromRGB(22, 8, 8) btn.Text = "" btn.AutoButtonColor = false btn.Parent = sidebar local lbl = Instance.new("TextLabel") lbl.Size = UDim2.new(1, -8, 1, 0) lbl.Position = UDim2.new(0, 8, 0, 0) lbl.BackgroundTransparency = 1 lbl.Text = name lbl.TextColor3 = Color3.fromRGB(170, 150, 150) lbl.Font = Enum.Font.Gotham lbl.TextSize = 12 lbl.TextXAlignment = Enum.TextXAlignment.Left lbl.Parent = btn local page = Instance.new("ScrollingFrame") page.Size = UDim2.new(1, 0, 1, 0) page.BackgroundTransparency = 1 page.BorderSizePixel = 0 page.ScrollBarThickness = 3 page.CanvasSize = UDim2.new(0, 0, 0, 600) page.Visible = false page.Parent = content tabs[name] = {btn=btn, lbl=lbl, page=page} btn.MouseButton1Click:Connect(function() if currentTab then tabs[currentTab].btn.BackgroundColor3 = Color3.fromRGB(22, 8, 8) tabs[currentTab].lbl.TextColor3 = Color3.fromRGB(170, 150, 150) tabs[currentTab].page.Visible = false end currentTab = name btn.BackgroundColor3 = Color3.fromRGB(50, 12, 12) lbl.TextColor3 = accent page.Visible = true end) return page end local homePage = CreateTab("الرئيسية", 1) local gamesPage = CreateTab("الألعاب", 2) local toolsPage = CreateTab("أدوات", 3) local scriptsPage = CreateTab("سكربتات", 4) local protectPage = CreateTab("الحماية", 5) local teamPage = CreateTab("الفريق 🌟", 6) local chatPage = CreateTab("شات الفريق", 7) local contactPage = CreateTab("تواصل", 8) tabs["الرئيسية"].btn.BackgroundColor3 = Color3.fromRGB(50, 12, 12) tabs["الرئيسية"].lbl.TextColor3 = accent tabs["الرئيسية"].page.Visible = true currentTab = "الرئيسية" -- الرئيسية local welcome = Instance.new("TextLabel") welcome.Size = UDim2.new(1, -16, 0, 20) welcome.Position = UDim2.new(0, 8, 0, 8) welcome.BackgroundTransparency = 1 welcome.Text = "🔥 مرحباً بك في HDX Ultimate" welcome.TextColor3 = accent welcome.Font = Enum.Font.GothamBold welcome.TextSize = 14 welcome.Parent = homePage local uTitle = Instance.new("TextLabel") uTitle.Size = UDim2.new(1, -16, 0, 16) uTitle.Position = UDim2.new(0, 8, 0, 32) uTitle.BackgroundTransparency = 1 uTitle.Text = "👤 حقوق المستخدم" uTitle.TextColor3 = accent2 uTitle.Font = Enum.Font.GothamBold uTitle.TextSize = 12 uTitle.Parent = homePage local userCard = Instance.new("Frame") userCard.Size = UDim2.new(1, -16, 0, 68) userCard.Position = UDim2.new(0, 8, 0, 52) userCard.BackgroundColor3 = Color3.fromRGB(22, 8, 8) userCard.Parent = homePage Instance.new("UICorner", userCard).CornerRadius = UDim.new(0, 9) local uAv = Instance.new("ImageLabel") uAv.Size = UDim2.new(0, 48, 0, 48) uAv.Position = UDim2.new(0, 10, 0.5, -24) uAv.Image = "rbxthumb://type=AvatarHeadShot&id="..LP.UserId.."&w=420&h=420" uAv.BackgroundColor3 = Color3.fromRGB(30, 10, 10) uAv.Parent = userCard Instance.new("UICorner", uAv).CornerRadius = UDim.new(1, 0) local gold = Instance.new("UIStroke", uAv) gold.Color = Color3.fromRGB(255, 200, 40) gold.Thickness = 2.3 task.spawn(function() while uAv and uAv.Parent do for i = 1.5, 3.8, 0.12 do gold.Thickness = i task.wait(0.03) end for i = 3.8, 1.5, -0.12 do gold.Thickness = i task.wait(0.03) end end end) local uName = Instance.new("TextLabel") uName.Size = UDim2.new(1, -70, 0, 18) uName.Position = UDim2.new(0, 68, 0, 12) uName.BackgroundTransparency = 1 uName.Text = LP.Name uName.TextColor3 = Color3.new(1,1,1) uName.Font = Enum.Font.GothamBold uName.TextSize = 13 uName.TextXAlignment = Enum.TextXAlignment.Left uName.Parent = userCard local uId = Instance.new("TextLabel") uId.Size = UDim2.new(1, -70, 0, 16) uId.Position = UDim2.new(0, 68, 0, 36) uId.BackgroundTransparency = 1 uId.Text = "ID: "..LP.UserId uId.TextColor3 = Color3.fromRGB(170, 150, 150) uId.Font = Enum.Font.Gotham uId.TextSize = 11 uId.TextXAlignment = Enum.TextXAlignment.Left uId.Parent = userCard local dTitle = Instance.new("TextLabel") dTitle.Size = UDim2.new(1, -16, 0, 16) dTitle.Position = UDim2.new(0, 8, 0, 130) dTitle.BackgroundTransparency = 1 dTitle.Text = "📜 حقوق المطورين" dTitle.TextColor3 = accent dTitle.Font = Enum.Font.GothamBold dTitle.TextSize = 12 dTitle.Parent = homePage local rights = Instance.new("TextLabel") rights.Size = UDim2.new(1, -16, 0, 32) rights.Position = UDim2.new(0, 8, 0, 148) rights.BackgroundTransparency = 1 rights.Text = "جميع الحقوق محفوظة لـ ❖إسكندراني❖ وفريق HDX\nيُمنع النسخ أو البيع بدون إذن" rights.TextColor3 = Color3.fromRGB(180, 160, 160) rights.Font = Enum.Font.Gotham rights.TextSize = 11 rights.TextXAlignment = Enum.TextXAlignment.Left rights.Parent = homePage local devTitle = Instance.new("TextLabel") devTitle.Size = UDim2.new(1, -16, 0, 16) devTitle.Position = UDim2.new(0, 8, 0, 190) devTitle.BackgroundTransparency = 1 devTitle.Text = "👑 مطورين السكربت" devTitle.TextColor3 = accent devTitle.Font = Enum.Font.GothamBold devTitle.TextSize = 12 devTitle.Parent = homePage local devsData = { {id=10841397475, name="Alskndrany", copy="Alskndrany_9999"}, {id=8757584048, name="Dhdhshehrei", copy="Dhdhshehrei"}, {id=10430115772, name="King6540k", copy="King6540k"}, {id=10948481053, name="JOO111222", copy="JOO111222333"}, {id=9002244351, name="ahmed_121212", copy="ahmed_121212121"} } for i, data in ipairs(devsData) do local x = ((i-1)%5)*68 + 10 local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 62, 0, 82) frame.Position = UDim2.new(0, x, 0, 212) frame.BackgroundTransparency = 1 frame.Parent = homePage local img = Instance.new("ImageLabel") img.Size = UDim2.new(0, 44, 0, 44) img.Position = UDim2.new(0.5, -22, 0, 0) img.Image = "rbxthumb://type=AvatarHeadShot&id="..data.id.."&w=420&h=420" img.BackgroundColor3 = Color3.fromRGB(30, 10, 10) img.Parent = frame Instance.new("UICorner", img).CornerRadius = UDim.new(1, 0) Instance.new("UIStroke", img).Color = accent local b = Instance.new("TextButton") b.Size = UDim2.new(0, 44, 0, 44) b.Position = UDim2.new(0.5, -22, 0, 0) b.BackgroundTransparency = 1 b.Text = "" b.Parent = frame b.MouseButton1Click:Connect(function() setclipboard(data.copy) Notify("✅", "تم نسخ: "..data.copy) end) local n = Instance.new("TextLabel") n.Size = UDim2.new(1, 0, 0, 14) n.Position = UDim2.new(0, 0, 0, 50) n.BackgroundTransparency = 1 n.Text = data.name n.TextColor3 = Color3.fromRGB(200, 180, 180) n.Font = Enum.Font.Gotham n.TextSize = 10 n.TextScaled = true n.Parent = frame end -- أدوات local function MakeButton(parent, text, y, color, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -16, 0, 32) btn.Position = UDim2.new(0, 8, 0, y) btn.BackgroundColor3 = color btn.Text = text btn.TextColor3 = Color3.new(1,1,1) btn.Font = Enum.Font.GothamBold btn.TextSize = 12 btn.Parent = parent Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 7) btn.MouseButton1Click:Connect(callback) return btn end local speedBox = Instance.new("TextBox") speedBox.Size = UDim2.new(0, 60, 0, 26) speedBox.Position = UDim2.new(0, 8, 0, 10) speedBox.BackgroundColor3 = Color3.fromRGB(28, 10, 10) speedBox.Text = "16" speedBox.TextColor3 = Color3.new(1,1,1) speedBox.Font = Enum.Font.Gotham speedBox.TextSize = 12 speedBox.Parent = toolsPage Instance.new("UICorner", speedBox).CornerRadius = UDim.new(0, 6) MakeButton(toolsPage, "تطبيق السرعة", 10, Color3.fromRGB(150, 25, 25), function() local val = tonumber(speedBox.Text) if val and LP.Character then local hum = LP.Character:FindFirstChildOfClass("Humanoid") if hum then hum.WalkSpeed = val Notify("✅", "السرعة: "..val) end end end).Position = UDim2.new(0, 75, 0, 10) local jumpBox = Instance.new("TextBox") jumpBox.Size = UDim2.new(0, 60, 0, 26) jumpBox.Position = UDim2.new(0, 8, 0, 48) jumpBox.BackgroundColor3 = Color3.fromRGB(28, 10, 10) jumpBox.Text = "7.2" jumpBox.TextColor3 = Color3.new(1,1,1) jumpBox.Font = Enum.Font.Gotham jumpBox.TextSize = 12 jumpBox.Parent = toolsPage Instance.new("UICorner", jumpBox).CornerRadius = UDim.new(0, 6) local jumpBtn = MakeButton(toolsPage, "تطبيق القفز", 48, Color3.fromRGB(150, 25, 25), function() local val = tonumber(jumpBox.Text) if val and LP.Character then local hum = LP.Character:FindFirstChildOfClass("Humanoid") if hum then hum.UseJumpPower=false hum.JumpHeight=val Notify("✅", "القفز: "..val) end end end) jumpBtn.Position = UDim2.new(0, 75, 0, 48) jumpBtn.Size = UDim2.new(0, 95, 0, 26) local noclip = false local noclipBtn = MakeButton(toolsPage, "🚪 NoClip: OFF", 90, Color3.fromRGB(130, 25, 25), function() noclip = not noclip noclipBtn.Text = noclip and "🚪 NoClip: ON" or "🚪 NoClip: OFF" noclipBtn.BackgroundColor3 = noclip and Color3.fromRGB(0, 150, 60) or Color3.fromRGB(130, 25, 25) end) RunService.Stepped:Connect(function() if noclip and LP.Character then pcall(function() for _, v in pairs(LP.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end) end end) MakeButton(toolsPage, "🔄 Reset", 130, Color3.fromRGB(100, 30, 110), function() if LP.Character then LP.Character:BreakJoints() Notify("✅", "تم") end end) MakeButton(toolsPage, "⚡ Anti-Lag", 170, Color3.fromRGB(40, 90, 150), function() pcall(function() settings().Rendering.QualityLevel = Enum.QualityLevel.Level01 end) Notify("⚡", "تم") end) -- تحت الأرض local underLoop = false local underSpeed = 0.02 local underSpeedBox = Instance.new("TextBox") underSpeedBox.Size = UDim2.new(0, 55, 0, 28) underSpeedBox.Position = UDim2.new(0, 8, 0, 210) underSpeedBox.BackgroundColor3 = Color3.fromRGB(28, 10, 10) underSpeedBox.Text = "0.02" underSpeedBox.TextColor3 = Color3.new(1,1,1) underSpeedBox.Font = Enum.Font.Gotham underSpeedBox.TextSize = 12 underSpeedBox.Parent = toolsPage Instance.new("UICorner", underSpeedBox).CornerRadius = UDim.new(0, 6) local underBtn = MakeButton(toolsPage, "⬇️ تحت الأرض: OFF", 210, Color3.fromRGB(30, 100, 200), function() local val = tonumber(underSpeedBox.Text) if val and val > 0 then underSpeed = val else underSpeed = 0.02 underSpeedBox.Text = "0.02" end underLoop = not underLoop if underLoop then underBtn.Text = "⬇️ تحت الأرض: ON" underBtn.BackgroundColor3 = Color3.fromRGB(180, 25, 25) Notify("⚡", "شغال | السرعة: "..underSpeed) else underBtn.Text = "⬇️ تحت الأرض: OFF" underBtn.BackgroundColor3 = Color3.fromRGB(30, 100, 200) if LP.Character then local root = LP.Character:FindFirstChild("HumanoidRootPart") if root then root.CFrame = CFrame.new(root.Position.X, 50, root.Position.Z) end end Notify("⬆️", "اتوقف وطلعت فوق") end end) underBtn.Position = UDim2.new(0, 70, 0, 210) underBtn.Size = UDim2.new(1, -86, 0, 28) task.spawn(function() while true do if underLoop and LP.Character then local root = LP.Character:FindFirstChild("HumanoidRootPart") if root then root.CFrame = CFrame.new(root.Position.X, -150, root.Position.Z) task.wait(underSpeed) if underLoop and root and root.Parent then root.CFrame = CFrame.new(root.Position.X, 40, root.Position.Z) end task.wait(underSpeed) else task.wait(0.05) end else task.wait(0.1) end end end) -- يمين / يسار local sideLoop = false local sideSpeed = 0.01 local sideDir = 1 local sideSpeedBox = Instance.new("TextBox") sideSpeedBox.Size = UDim2.new(0, 55, 0, 28) sideSpeedBox.Position = UDim2.new(0, 8, 0, 250) sideSpeedBox.BackgroundColor3 = Color3.fromRGB(28, 10, 10) sideSpeedBox.Text = "0.01" sideSpeedBox.TextColor3 = Color3.new(1,1,1) sideSpeedBox.Font = Enum.Font.Gotham sideSpeedBox.TextSize = 12 sideSpeedBox.Parent = toolsPage Instance.new("UICorner", sideSpeedBox).CornerRadius = UDim.new(0, 6) local sideBtn = MakeButton(toolsPage, "↔️ يمين/يسار: OFF", 250, Color3.fromRGB(30, 100, 200), function() local val = tonumber(sideSpeedBox.Text) if val and val > 0 then sideSpeed = val else sideSpeed = 0.01 sideSpeedBox.Text = "0.01" end sideLoop = not sideLoop if sideLoop then sideBtn.Text = "↔️ يمين/يسار: ON" sideBtn.BackgroundColor3 = Color3.fromRGB(180, 25, 25) Notify("⚡", "شغال | السرعة: "..sideSpeed) else sideBtn.Text = "↔️ يمين/يسار: OFF" sideBtn.BackgroundColor3 = Color3.fromRGB(30, 100, 200) Notify("⏹️", "اتوقف") end end) sideBtn.Position = UDim2.new(0, 70, 0, 250) sideBtn.Size = UDim2.new(1, -86, 0, 28) task.spawn(function() while true do if sideLoop and LP.Character then local root = LP.Character:FindFirstChild("HumanoidRootPart") if root then sideDir = -sideDir root.CFrame = root.CFrame * CFrame.new(sideDir * 4, 0, 0)