-- [ 3AZAAM HUB - FIXED VERSION ] -- local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game.CoreGui -- تم التغيير لـ CoreGui لضمان الظهور ScreenGui.Name = "3AzaamHub_Fixed" local MainFrame = Instance.new("Frame") MainFrame.Parent = ScreenGui MainFrame.Size = UDim2.new(0, 300, 0, 400) MainFrame.Position = UDim2.new(0.5, -150, 0.5, -200) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.Active = true MainFrame.Draggable = true -- خاصية التحريك -- زر إغلاق local CloseBtn = Instance.new("TextButton", MainFrame) CloseBtn.Size = UDim2.new(0, 50, 0, 30) CloseBtn.Position = UDim2.new(1, -55, 0, 5) CloseBtn.Text = "X" CloseBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- إضافة عنوان local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 50) Title.Text = "3AZAAM HUB" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundTransparency = 1