-- Amerah Mega Universal v8 (Ultra Light & Pro Design) local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local MiniBar = Instance.new("Frame") local MiniIcon = Instance.new("ImageButton") local OpenBtn = Instance.new("TextButton") -- علامة + ScreenGui.Parent = game.CoreGui ScreenGui.Name = "AmerahMegaUI" -- [ الإعدادات ] local MY_IMAGE = "rbxassetid://6031063467" -- صورتك المفضلة -- [1] الصورة الصغيرة (عند ضغط *) MiniIcon.Parent = ScreenGui MiniIcon.Size = UDim2.new(0, 70, 0, 70) MiniIcon.Position = UDim2.new(0, 10, 0.4, 0) MiniIcon.Image = MY_IMAGE MiniIcon.Visible = false MiniIcon.Draggable = true -- [2] الشريط الأزرق (عند ضغط -) MiniBar.Parent = ScreenGui MiniBar.Size = UDim2.new(0, 250, 0, 40) -- عريض كما طلبتِ MiniBar.Position = UDim2.new(0.5, -125, 0, 5) MiniBar.BackgroundColor3 = Color3.fromRGB(0, 170, 255) MiniBar.Visible = false MiniBar.Draggable = true OpenBtn.Parent = MiniBar OpenBtn.Size = UDim2.new(0, 40, 1, 0) OpenBtn.Position = UDim2.new(1, -40, 0, 0) OpenBtn.Text = "+" OpenBtn.TextSize = 30 OpenBtn.BackgroundColor3 = Color3.fromRGB(0, 100, 200) -- [3] الواجهة العملاقة (طول وعرض) MainFrame.Parent = ScreenGui MainFrame.Size = UDim2.new(0, 600, 0, 450) -- كبيرة جداً MainFrame.Position = UDim2.new(0.5, -300, 0.5, -225) MainFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) MainFrame.BorderSizePixel = 4 MainFrame.BorderColor3 = Color3.fromRGB(0, 170, 255) MainFrame.Draggable = true -- العنوان والأزرار local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 60) Title.Text = "👑 AMERAH ULTIMATE SYSTEM" Title.TextColor3 = Color3.fromRGB(0, 255, 255) Title.BackgroundColor3 = Color3.fromRGB(20, 20, 20) Title.TextSize = 25 local MinBtn = Instance.new("TextButton", MainFrame) MinBtn.Text = "-" MinBtn.Size = UDim2.new(0, 50, 0, 50) MinBtn.Position = UDim2.new(1, -110, 0, 5) MinBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) local HideBtn = Instance.new("TextButton", MainFrame) HideBtn.Text = "*" HideBtn.Size = UDim2.new(0, 50, 0, 50) HideBtn.Position = UDim2.new(1, -55, 0, 5) HideBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) -- وظائف التنقل MinBtn.MouseButton1Click:Connect(function() MainFrame.Visible = false; MiniBar.Visible = true end) OpenBtn.MouseButton1Click:Connect(function() MainFrame.Visible = true; MiniBar.Visible = false end) HideBtn.MouseButton1Click:Connect(function() MainFrame.Visible = false; MiniIcon.Visible = true end) MiniIcon.MouseButton1Click:Connect(function() MainFrame.Visible = true; MiniIcon.Visible = false end) -- [ برمجة الميزات الجديدة ] local function AddBtn(txt, pos, color, func) local b = Instance.new("TextButton", MainFrame) b.Size = UDim2.new(0.45, 0, 0, 55) b.Position = pos b.Text = txt b.BackgroundColor3 = color b.TextColor3 = Color3.fromRGB(255, 255, 255) b.TextSize = 18 b.MouseButton1Click:Connect(func) end -- العمود الأول AddBtn("سرعة خارقة 200 ⚡", UDim2.new(0.03, 0, 0.2, 0), Color3.fromRGB(30, 30, 30), function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200 end) AddBtn("نطة أسطورية 250 🚀", UDim2.new(0.03, 0, 0.35, 0), Color3.fromRGB(30, 30, 30), function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 250 end) AddBtn("كاشف لاعبين (ESP) 👁️", UDim2.new(0.03, 0, 0.5, 0), Color3.fromRGB(30, 30, 30), function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character and not v.Character:FindFirstChild("Highlight") then local h = Instance.new("Highlight", v.Character) h.FillColor = Color3.fromRGB(0, 255, 255) end end end) AddBtn("جعل الدنيا نهار ☀️", UDim2.new(0.03, 0, 0.65, 0), Color3.fromRGB(30, 30, 30), function() game.Lighting.ClockTime = 14 end) -- العمود الثاني AddBtn("انعدام الجاذبية 🎈", UDim2.new(0.52, 0, 0.2, 0), Color3.fromRGB(30, 30, 30), function() game.Workspace.Gravity = 30 end) AddBtn("إزالة الضباب 🌫️", UDim2.new(0.52, 0, 0.35, 0), Color3.fromRGB(30, 30, 30), function() game.Lighting.FogEnd = 999999 end) AddBtn("عرض الإحداثيات📍", UDim2.new(0.52, 0, 0.5, 0), Color3.fromRGB(30, 30, 30), function() print(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) end) AddBtn("إعادة الضبط 🔄", UDim2.new(0.52, 0, 0.65, 0), Color3.fromRGB(100, 0, 0), function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 game.Workspace.Gravity = 196.2 end) AddBtn("إغلاق السكربت نهائياً ❌", UDim2.new(0.25, 0, 0.85, 0), Color3.fromRGB(50, 0, 0), function() ScreenGui:Destroy() end)