-- [ MASTER X 🔥 | CUSTOM EDITION ] -- المصمم: كرم | الأردن 🇯🇴 local lp = game.Players.LocalPlayer -- [ 1. نظام الباند (Blacklist) ] if lp.Name == "LUFFY50438" then lp:Kick("🚫 أنت محظور من استخدام سكربت MASTER X (بأمر من المصمم كرم)") return end -- [ 2. تشغيل السكربت مباشرة ] local sg = Instance.new("ScreenGui", game:GetService("CoreGui")) sg.Name = "MasterX_Final_Custom" -- رسالة الترحيب الرينبو local function Welcome() local welcomeLabel = Instance.new("TextLabel", sg) welcomeLabel.Size = UDim2.new(0, 500, 0, 100) welcomeLabel.Position = UDim2.new(0.5, -250, 0.4, 0) welcomeLabel.BackgroundTransparency = 1 welcomeLabel.Text = "تم تشغيل سكربت (مصمم كرم)" welcomeLabel.Font = Enum.Font.GothamBlack welcomeLabel.TextSize = 40 task.spawn(function() local start = tick() while tick() - start < 5 do welcomeLabel.TextColor3 = Color3.fromHSV(tick() % 5 / 5, 1, 1) task.wait() end welcomeLabel:Destroy() end) end task.spawn(Welcome) -- [ 3. الواجهة الرئيسية ] local MainFrame = Instance.new("Frame", sg) local MainCorner = Instance.new("UICorner", MainFrame) local MainStroke = Instance.new("UIStroke", MainFrame) MainFrame.Size = UDim2.new(0, 450, 0, 450) MainFrame.Position = UDim2.new(0.5, -225, 0.5, -225) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.BackgroundTransparency = 0.2 MainFrame.Visible = false MainStroke.Thickness = 3 MainStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border -- [ 4. زر ماستر - كبير وفخم ] local MasterBtn = Instance.new("TextButton", sg) local BtnCorner = Instance.new("UICorner", MasterBtn) local BtnStroke = Instance.new("UIStroke", MasterBtn) MasterBtn.Size = UDim2.new(0, 110, 0, 50) -- حجم أكبر للزر MasterBtn.Position = UDim2.new(0, 15, 0.5, 0) MasterBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MasterBtn.Text = "ماستر" MasterBtn.TextColor3 = Color3.fromRGB(255, 0, 0) MasterBtn.Font = Enum.Font.GothamBold MasterBtn.TextSize = 25 -- خط كبير وواضح MasterBtn.Visible = true -- يظهر مباشرة MasterBtn.Draggable = true BtnStroke.Thickness = 2 -- تأثير الرينبو (الألوان المتحركة) task.spawn(function() while true do local color = Color3.fromHSV(tick() % 5 / 5, 1, 1) MainStroke.Color = color BtnStroke.Color = color task.wait() end end) MasterBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- [ 5. المحتوى الداخلي ] local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 50) Title.Text = "MASTER X 🔥 | مصمم كرم" Title.TextColor3 = Color3.new(1, 1, 1) Title.BackgroundTransparency = 1 Title.Font = Enum.Font.GothamBold Title.TextSize = 22 local Scroll = Instance.new("ScrollingFrame", MainFrame) Scroll.Size = UDim2.new(1, -20, 1, -110) Scroll.Position = UDim2.new(0, 10, 0, 60) Scroll.BackgroundTransparency = 1 Scroll.CanvasSize = UDim2.new(0, 0, 4, 0) Scroll.ScrollBarThickness = 4 local Layout = Instance.new("UIListLayout", Scroll) Layout.Padding = UDim.new(0, 8) local function AddButton(name, callback) local b = Instance.new("TextButton", Scroll) b.Size = UDim2.new(1, -10, 0, 40) b.BackgroundColor3 = Color3.fromRGB(45, 0, 0) b.Text = name b.TextColor3 = Color3.new(1, 1, 1) b.Font = Enum.Font.GothamBold b.TextSize = 16 Instance.new("UICorner", b) b.MouseButton1Click:Connect(callback) end -- [ إضافة الأزرار ] AddButton("Dark ON TOP 🌑", function() loadstring(game:HttpGet("https://pastebin.com/raw/CeVJD20Y"))() end) AddButton("حماية HD Client (Workspace) 🛡️", function() local count = 0 for _, obj in pairs(workspace:GetDescendants()) do if obj.Name == "HDAdminHDClient" then obj:Destroy() count = count + 1 end end game:GetService("StarterGui"):SetCore("SendNotification", {Title = "نظام كرم", Text = "تم تنظيف "..count.." ملفات", Duration = 5}) end) AddButton("حمايه 🛡️ (تنظيف شامل)", function() local count = 0 local targets = {"logs", "nv", "cmdbar", "clogs", "hdadminhdclient", "hdadmin"} local function Clean(parent) for _, obj in pairs(parent:GetChildren()) do local found = false for _, name in pairs(targets) do if obj.Name:lower():find(name) then found = true break end end if found then obj:Destroy() count = count + 1 else pcall(function() Clean(obj) end) end end end Clean(workspace) Clean(lp.PlayerGui) end) AddButton("نسخ v3 المطور 🔥", function() local msg = "logs ;re ;clogs " game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(string.rep(msg, 15), "All") end) AddButton("اهانه VR7", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/VR7ss/OMK/refs/heads/main/VR7-ON-TOP"))() end) AddButton("كاشف لعيبه", function() loadstring(game:HttpGet('https://pastebin.com/raw/1KF6k8ne'))() end) AddButton("سكربت Blood", function() loadstring(game:HttpGet('https://pastebin.com/raw/YE8hR6zG'))() end) -- زر التعريف local About = Instance.new("TextButton", MainFrame) About.Size = UDim2.new(0, 150, 0, 40) About.Position = UDim2.new(0.5, -75, 1, -50) About.BackgroundColor3 = Color3.fromRGB(30, 30, 30) About.Text = "تعريف عني 👤" About.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", About) About.MouseButton1Click:Connect(function() print("المصمم: كرم | الأردن 🇯🇴 | العمر 15") end)