loadstring(game:HttpGet("https://rawscripts.net/raw/admn-hzyn-or-thdyth-altbra-7zN-83277"))() --[[ 🔥 XNY HUB – المركز الإمبراطوري (عريض + صغير + زر إخفاء) 👑 المالك: Alskndrany_9999 🇪🇬 واجهة عريضة، سكربتات، حماية، تواصل، وإشعار دخول المطور ]] 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 TS = game:GetService("TeleportService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local HttpService = game:GetService("HttpService") -- إعدادات الحماية local Protection = { HDAdminShield = false, AdminDataDestroyer = false } -- إشعار local function Notify(title, text, dur) pcall(function() SG:SetCore("SendNotification", {Title = title, Text = text, Duration = dur or 4}) end) end -- ✅ إشعار عند دخول صاحب السكربت Players.PlayerAdded:Connect(function(player) if player.Name == "Alskndrany_9999" then Notify("👑 تنبيه!", "صاحب السكربت دخل الماب!", 6) end end) -- تطبيق الحماية local function ApplyKickShield() if Protection.HDAdminShield then pcall(function() hookfunction(LP.Kick, function() return nil end) hookfunction(TS.Teleport, function() return nil end) end) end end local function DestroyAdminData() local count = 0 for _, obj in ipairs(ReplicatedStorage:GetDescendants()) do local name = obj.Name:lower() if name:find("admin") or name:find("data") or name:find("anticheat") then if obj:IsA("Script") or obj:IsA("LocalScript") or obj:IsA("ModuleScript") then pcall(function() obj.Source = "-- Neutralized"; count += 1 end) elseif obj:IsA("RemoteEvent") or obj:IsA("RemoteFunction") then pcall(function() for _, conn in ipairs(getconnections(obj.OnClientEvent)) do conn:Disable() end count += 1 end) end end end return count end -- 🎨 واجهة المستخدم (عريضة وصغيرة) local gui = Instance.new("ScreenGui", CG) gui.Name = "ImperialCenterCompact" local main = Instance.new("Frame", gui) main.Size = UDim2.new(0, 600, 0, 480) -- زيادة الارتفاع قليلاً لاستيعاب الصور main.Position = UDim2.new(0.5, -300, 0.5, -240) main.BackgroundColor3 = Color3.fromRGB(10, 10, 15) main.BorderSizePixel = 0 main.Visible = true Instance.new("UICorner", main).CornerRadius = UDim.new(0, 15) Instance.new("UIStroke", main).Color = Color3.fromRGB(255, 215, 0) -- شريط العنوان local titleBar = Instance.new("Frame", main) titleBar.Size = UDim2.new(1, 0, 0, 35) titleBar.BackgroundColor3 = Color3.fromRGB(20, 20, 30) Instance.new("UICorner", titleBar).CornerRadius = UDim.new(0, 15) local title = Instance.new("TextLabel", titleBar) title.Size = UDim2.new(1, -50, 1, 0) title.Text = "🔥 المركز الإمبراطوري" title.TextColor3 = Color3.fromRGB(255, 215, 0) title.Font = Enum.Font.GothamBlack title.TextSize = 16 title.BackgroundTransparency = 1 local closeBtn = Instance.new("TextButton", titleBar) closeBtn.Size = UDim2.new(0, 30, 0, 25) closeBtn.Position = UDim2.new(1, -35, 0.5, -12) closeBtn.Text = "✕" closeBtn.TextColor3 = Color3.new(1,1,1) closeBtn.BackgroundColor3 = Color3.fromRGB(200, 50, 50) Instance.new("UICorner", closeBtn).CornerRadius = UDim.new(0, 5) closeBtn.MouseButton1Click:Connect(function() gui:Destroy() end) -- ============================================= -- 🔥 قسم صور المطورين (3 صور مع أزرار) -- ============================================= local devFrame = Instance.new("Frame", main) devFrame.Size = UDim2.new(1, 0, 0, 100) devFrame.Position = UDim2.new(0, 0, 0, 45) devFrame.BackgroundTransparency = 1 -- دالة لإنشاء صورة مطور local function CreateDevImage(parent, xPos, userId, displayName, copyName, isOnline) local frame = Instance.new("Frame", parent) frame.Size = UDim2.new(0, 100, 0, 100) frame.Position = UDim2.new(xPos, -50, 0, 0) frame.BackgroundTransparency = 1 -- الصورة مع دائرة local img = Instance.new("ImageLabel", frame) img.Size = UDim2.new(0, 75, 0, 75) img.Position = UDim2.new(0.5, -37.5, 0, 0) img.Image = "rbxthumb://type=AvatarHeadShot&id=" .. userId .. "&w=420&h=420" img.BackgroundColor3 = Color3.fromRGB(255, 255, 255) img.BackgroundTransparency = 0 Instance.new("UICorner", img).CornerRadius = UDim.new(1, 0) -- دائرة كاملة Instance.new("UIStroke", img).Color = Color3.fromRGB(255, 215, 0) Instance.new("UIStroke", img).Thickness = 2 -- زر نسخ الاسم (يغطي الصورة) local copyBtn = Instance.new("TextButton", frame) copyBtn.Size = UDim2.new(0, 75, 0, 75) copyBtn.Position = UDim2.new(0.5, -37.5, 0, 0) copyBtn.Text = "" copyBtn.BackgroundTransparency = 1 copyBtn.MouseButton1Click:Connect(function() setclipboard(copyName) Notify("✅", "تم نسخ اسم الحساب: " .. copyName, 3) end) -- اسم المطور تحت الصورة local nameLabel = Instance.new("TextLabel", frame) nameLabel.Size = UDim2.new(1, 0, 0, 20) nameLabel.Position = UDim2.new(0, 0, 0, 78) nameLabel.Text = displayName nameLabel.TextColor3 = Color3.fromRGB(255, 215, 0) nameLabel.Font = Enum.Font.GothamBold nameLabel.TextSize = 11 nameLabel.BackgroundTransparency = 1 nameLabel.TextScaled = true -- علامة 🟢 (حالة الاتصال) local status = Instance.new("TextLabel", frame) status.Size = UDim2.new(0, 20, 0, 20) status.Position = UDim2.new(0.85, -10, 0.85, -10) status.Text = isOnline and "🟢" or "🔴" status.TextColor3 = Color3.new(1,1,1) status.Font = Enum.Font.GothamBold status.TextSize = 14 status.BackgroundTransparency = 1 status.ZIndex = 2 -- زر الدخول إلى الماب (يظهر عند الضغط على العلامة) local joinBtn = Instance.new("TextButton", frame) joinBtn.Size = UDim2.new(0, 20, 0, 20) joinBtn.Position = UDim2.new(0.85, -10, 0.85, -10) joinBtn.Text = "" joinBtn.BackgroundTransparency = 1 joinBtn.ZIndex = 2 joinBtn.MouseButton1Click:Connect(function() -- محاولة الدخول إلى سيرفر المطور local success, err = pcall(function() -- نبحث عن المطور في اللاعبين for _, player in ipairs(Players:GetPlayers()) do if player.Name == copyName then local args = { [1] = player } -- محاولة استخدام TeleportService TS:Teleport(game.PlaceId, player) Notify("✅", "جاري الدخول إلى سيرفر " .. copyName, 3) return end end -- إذا لم يتم العثور على المطور Notify("⚠️", copyName .. " غير متواجد حالياً!", 3) end) if not success then Notify("❌", "فشل الدخول إلى السيرفر!", 3) end end) return frame end -- إنشاء صور المطورين الثلاثة CreateDevImage(devFrame, 0.17, 10841397475, "👑 Alskndrany_9999", "Alskndrany_9999", true) -- المالك CreateDevImage(devFrame, 0.50, 8757584048, "🛠️ Dhdhshehrei", "Dhdhshehrei", true) -- مطور CreateDevImage(devFrame, 0.83, 10430115772, "⚡ King6540k", "King6540k", true) -- مشرف -- ============================================= -- 📦 أزرار السكربتات -- ============================================= local scriptsFrame = Instance.new("Frame", main) scriptsFrame.Size = UDim2.new(1, -30, 0, 120) scriptsFrame.Position = UDim2.new(0, 15, 0, 155) scriptsFrame.BackgroundTransparency = 1 local scriptsLabel = Instance.new("TextLabel", scriptsFrame) scriptsLabel.Size = UDim2.new(1, 0, 0, 20) scriptsLabel.Text = "📦 سكربتات جاهزة" scriptsLabel.TextColor3 = Color3.new(1,1,1) scriptsLabel.Font = Enum.Font.GothamBold scriptsLabel.TextSize = 13 scriptsLabel.BackgroundTransparency = 1 scriptsLabel.TextXAlignment = Enum.TextXAlignment.Left local iyBtn = Instance.new("TextButton", scriptsFrame) iyBtn.Size = UDim2.new(0.48, 0, 0, 35) iyBtn.Position = UDim2.new(0, 0, 0, 25) iyBtn.Text = "⚡ Infinite Yield" iyBtn.TextColor3 = Color3.new(1,1,1) iyBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 200) iyBtn.Font = Enum.Font.GothamBold iyBtn.TextSize = 13 Instance.new("UICorner", iyBtn).CornerRadius = UDim.new(0, 6) iyBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-IY-InfiniteYield-137097"))() Notify("✅", "تم تحميل Infinite Yield!") end) local emotesBtn = Instance.new("TextButton", scriptsFrame) emotesBtn.Size = UDim2.new(0.48, 0, 0, 35) emotesBtn.Position = UDim2.new(0.52, 0, 0, 25) emotesBtn.Text = "💃 Anil Emotes" emotesBtn.TextColor3 = Color3.new(1,1,1) emotesBtn.BackgroundColor3 = Color3.fromRGB(150, 50, 200) emotesBtn.Font = Enum.Font.GothamBold emotesBtn.TextSize = 13 Instance.new("UICorner", emotesBtn).CornerRadius = UDim.new(0, 6) emotesBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Anil-Emotes-103537"))() Notify("✅", "تم تحميل Anil Emotes!") end) local dexBtn = Instance.new("TextButton", scriptsFrame) dexBtn.Size = UDim2.new(0.48, 0, 0, 35) dexBtn.Position = UDim2.new(0, 0, 0, 65) dexBtn.Text = "🛠️ Dex Explorer" dexBtn.TextColor3 = Color3.new(1,1,1) dexBtn.BackgroundColor3 = Color3.fromRGB(100, 100, 100) dexBtn.Font = Enum.Font.GothamBold dexBtn.TextSize = 13 Instance.new("UICorner", dexBtn).CornerRadius = UDim.new(0, 6) dexBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-DEX-REContinued-216140"))() Notify("✅", "تم تحميل Dex Explorer!") end) local cmdBtn = Instance.new("TextButton", scriptsFrame) cmdBtn.Size = UDim2.new(0.48, 0, 0, 35) cmdBtn.Position = UDim2.new(0.52, 0, 0, 65) cmdBtn.Text = "📋 CMD-X" cmdBtn.TextColor3 = Color3.new(1,1,1) cmdBtn.BackgroundColor3 = Color3.fromRGB(200, 150, 0) cmdBtn.Font = Enum.Font.GothamBold cmdBtn.TextSize = 13 Instance.new("UICorner", cmdBtn).CornerRadius = UDim.new(0, 6) cmdBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-CMD-X-224427"))() Notify("✅", "تم تحميل CMD-X!") end) -- ============================================= -- 🛡️ قسم الحماية -- ============================================= local protFrame = Instance.new("Frame", main) protFrame.Size = UDim2.new(1, -30, 0, 50) protFrame.Position = UDim2.new(0, 15, 0, 285) protFrame.BackgroundTransparency = 1 local protLabel = Instance.new("TextLabel", protFrame) protLabel.Size = UDim2.new(1, 0, 0, 20) protLabel.Text = "🛡️ الحماية" protLabel.TextColor3 = Color3.new(1,1,1) protLabel.Font = Enum.Font.GothamBold protLabel.TextSize = 13 protLabel.BackgroundTransparency = 1 protLabel.TextXAlignment = Enum.TextXAlignment.Left local hdBtn = Instance.new("TextButton", protFrame) hdBtn.Size = UDim2.new(0.48, 0, 0, 30) hdBtn.Position = UDim2.new(0, 0, 0, 20) hdBtn.Text = "❌ منع الطرد (HD Admin)" hdBtn.TextColor3 = Color3.new(1,1,1) hdBtn.BackgroundColor3 = Color3.fromRGB(200, 50, 50) hdBtn.Font = Enum.Font.Gotham hdBtn.TextSize = 11 Instance.new("UICorner", hdBtn).CornerRadius = UDim.new(0, 5) hdBtn.MouseButton1Click:Connect(function() Protection.HDAdminShield = not Protection.HDAdminShield hdBtn.Text = (Protection.HDAdminShield and "✅ " or "❌ ") .. "منع الطرد" hdBtn.BackgroundColor3 = Protection.HDAdminShield and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(200, 50, 50) ApplyKickShield() end) local admBtn = Instance.new("TextButton", protFrame) admBtn.Size = UDim2.new(0.48, 0, 0, 30) admBtn.Position = UDim2.new(0.52, 0, 0, 20) admBtn.Text = "❌ تدمير AdminData" admBtn.TextColor3 = Color3.new(1,1,1) admBtn.BackgroundColor3 = Color3.fromRGB(200, 50, 50) admBtn.Font = Enum.Font.Gotham admBtn.TextSize = 11 Instance.new("UICorner", admBtn).CornerRadius = UDim.new(0, 5) admBtn.MouseButton1Click:Connect(function() Protection.AdminDataDestroyer = not Protection.AdminDataDestroyer admBtn.Text = (Protection.AdminDataDestroyer and "✅ " or "❌ ") .. "تدمير AdminData" admBtn.BackgroundColor3 = Protection.AdminDataDestroyer and Color3.fromRGB(0, 150, 0) or Color3.fromRGB(200, 50, 50) if Protection.AdminDataDestroyer then local count = DestroyAdminData() Notify("💣", "تم تدمير " .. count .. " عنصر!") end end) -- ============================================= -- 📞 قسم التواصل -- ============================================= local contactFrame = Instance.new("Frame", main) contactFrame.Size = UDim2.new(1, -30, 0, 50) contactFrame.Position = UDim2.new(0, 15, 0, 345) contactFrame.BackgroundTransparency = 1 local contactLabel = Instance.new("TextLabel", contactFrame) contactLabel.Size = UDim2.new(1, 0, 0, 20) contactLabel.Text = "📞 تواصل مع ❖إِسْـكَـنْـدَرَانِـي❖" contactLabel.TextColor3 = Color3.new(1,1,1) contactLabel.Font = Enum.Font.GothamBold contactLabel.TextSize = 13 contactLabel.BackgroundTransparency = 1 contactLabel.TextXAlignment = Enum.TextXAlignment.Left local waBtn = Instance.new("TextButton", contactFrame) waBtn.Size = UDim2.new(0.48, 0, 0, 30) waBtn.Position = UDim2.new(0, 0, 0, 20) waBtn.Text = "📱 واتساب" waBtn.TextColor3 = Color3.new(1,1,1) waBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 50) waBtn.Font = Enum.Font.GothamBold waBtn.TextSize = 12 Instance.new("UICorner", waBtn).CornerRadius = UDim.new(0, 5) waBtn.MouseButton1Click:Connect(function() setclipboard("https://chat.whatsapp.com/DhimlS3ZfxOBzr0dF5eCPu") Notify("✅", "تم نسخ رابط الواتساب!") end) local tiktokBtn = Instance.new("TextButton", contactFrame) tiktokBtn.Size = UDim2.new(0.48, 0, 0, 30) tiktokBtn.Position = UDim2.new(0.52, 0, 0, 20) tiktokBtn.Text = "🎵 تيك توك" tiktokBtn.TextColor3 = Color3.new(1,1,1) tiktokBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 80) tiktokBtn.Font = Enum.Font.GothamBold tiktokBtn.TextSize = 12 Instance.new("UICorner", tiktokBtn).CornerRadius = UDim.new(0, 5) tiktokBtn.MouseButton1Click:Connect(function() setclipboard("tiktok.com/@abdlazizrahed") Notify("✅", "تم نسخ رابط التيك توك!") end) -- إشعار صغير أسفل الواجهة local infoLabel = Instance.new("TextLabel", main) infoLabel.Size = UDim2.new(1, -20, 0, 20) infoLabel.Position = UDim2.new(0, 10, 0, 410) infoLabel.Text = "🔔 عند دخول Alskndrany_9999 يصلك إشعار | اضغط على الصورة لنسخ الاسم" infoLabel.TextColor3 = Color3.new(0.7, 0.7, 0.7) infoLabel.Font = Enum.Font.Gotham infoLabel.TextSize = 11 infoLabel.BackgroundTransparency = 1 -- 🆕 زر الإخفاء والإظهار (أعلى اليسار خارج الواجهة) local toggleBtn = Instance.new("TextButton", gui) toggleBtn.Size = UDim2.new(0, 45, 0, 45) toggleBtn.Position = UDim2.new(0, 10, 0, 10) toggleBtn.BackgroundColor3 = Color3.fromRGB(255, 215, 0) toggleBtn.Text = "🔥" toggleBtn.Font = Enum.Font.GothamBlack toggleBtn.TextSize = 22 toggleBtn.BorderSizePixel = 0 Instance.new("UICorner", toggleBtn).CornerRadius = UDim.new(0, 12) local mainVisible = true toggleBtn.MouseButton1Click:Connect(function() mainVisible = not mainVisible main.Visible = mainVisible toggleBtn.Text = mainVisible and "🔥" or "👁️" toggleBtn.BackgroundColor3 = mainVisible and Color3.fromRGB(255, 215, 0) or Color3.fromRGB(100, 100, 100) end) -- نظام السحب للواجهة والزر local function makeDraggable(obj) local dragging, start, pos obj.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true start = input.Position pos = obj.Position end end) obj.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then local delta = input.Position - start obj.Position = UDim2.new(pos.X.Scale, pos.X.Offset + delta.X, pos.Y.Scale, pos.Y.Offset + delta.Y) end end) obj.InputEnded:Connect(function() dragging = false end) end makeDraggable(main) makeDraggable(toggleBtn) Notify("🔥 المركز الإمبراطوري", "✅ جاهز! زر الإخفاء أعلى اليسار", 5) print("🔥 Imperial Center Compact Ready!")