-- واجهة SABOXHEMA بنفس شكل VR7 TEAM -- ضع هذا الكود في LocalScript داخل StarterGui local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "SABOXHEMA_UI" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") -- زر إظهار/إخفاء (قابل للتحريك) local toggleButton = Instance.new("TextButton") toggleButton.Size = UDim2.new(0, 140, 0, 45) toggleButton.Position = UDim2.new(0, 10, 0, 10) toggleButton.Text = "إظهار/إخفاء" toggleButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) toggleButton.TextColor3 = Color3.fromRGB(255,255,255) toggleButton.Font = Enum.Font.GothamBold toggleButton.TextSize = 20 toggleButton.Parent = screenGui toggleButton.Active = true toggleButton.Draggable = true -- الإطار الرئيسي local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 600, 0, 400) mainFrame.Position = UDim2.new(0.5, -300, 0.5, -200) mainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) mainFrame.BorderSizePixel = 0 mainFrame.Visible = true mainFrame.Parent = screenGui -- مؤثر خلفية local gradient = Instance.new("UIGradient") gradient.Color = ColorSequence.new{ ColorSequenceKeypoint.new(0, Color3.fromRGB(0, 170, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 170)) } gradient.Rotation = 45 gradient.Parent = mainFrame -- عنوان الواجهة local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Text = "VR7 TEAM: The Mercy Script - SABOXHEMA" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 22 title.Parent = mainFrame -- وظيفة زر الإظهار/الإخفاء مع حركة toggleButton.MouseButton1Click:Connect(function() if mainFrame.Visible then mainFrame:TweenSize(UDim2.new(0,0,0,0), "Out", "Quad", 0.4, true, function() mainFrame.Visible = false end) else mainFrame.Visible = true mainFrame:TweenSize(UDim2.new(0,600,0,400), "Out", "Bounce", 0.5, true) end end) -- القائمة الجانبية (Base1..Base8) local sideMenu = Instance.new("Frame") sideMenu.Size = UDim2.new(0, 150, 1, -40) sideMenu.Position = UDim2.new(0, 0, 0, 40) sideMenu.BackgroundColor3 = Color3.fromRGB(40,40,40) sideMenu.Parent = mainFrame for i=1,8 do local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -10, 0, 35) btn.Position = UDim2.new(0, 5, 0, (i-1)*40 + 5) btn.Text = "Base"..i btn.BackgroundColor3 = Color3.fromRGB(60,60,60) btn.TextColor3 = Color3.fromRGB(255,255,255) btn.Font = Enum.Font.GothamBold btn.TextSize = 18 btn.Parent = sideMenu btn.MouseEnter:Connect(function() btn.BackgroundColor3 = Color3.fromRGB(0,170,255) end) btn.MouseLeave:Connect(function() btn.BackgroundColor3 = Color3.fromRGB(60,60,60) end) end -- المنطقة الرئيسية للأزرار local buttonArea = Instance.new("Frame") buttonArea.Size = UDim2.new(1, -160, 1, -40) buttonArea.Position = UDim2.new(0, 160, 0, 40) buttonArea.BackgroundTransparency = 1 buttonArea.Parent = mainFrame -- قائمة الأزرار (مثل الصورة) local features = { {name="سحب اللاعبين", action=function() print("سحب اللاعبين شغال") end}, {name="هكر", action=function() print("هكر شغال") end}, {name="تفعيل سبام", action=function() print("سبام شغال") end}, {name="تعطيل كلام اللاعبين", action=function() print("تعطيل الكلام شغال") end}, {name="القيادة السريعة", action=function() print("قيادة سريعة شغالة") end}, {name="تدمير المركبة", action=function() print("تدمير المركبة شغال") end}, {name="سبام سكان", action=function() print("سبام سكان شغال") end}, {name="رضى اللاعبين", action=function() print("رضى اللاعبين شغال") end}, {name="تكبير وتصغير", action=function() print("تكبير وتصغير شغال") end} } for i, feature in ipairs(features) do local btn = Instance.new("TextButton") btn.Size = UDim2.new(0, 200, 0, 35) btn.Position = UDim2.new(0, ((i-1)%3)*210, 0, math.floor((i-1)/3)*45 + 10) btn.Text = feature.name btn.BackgroundColor3 = Color3.fromRGB(70,70,70) btn.TextColor3 = Color3.fromRGB(255,255,255) btn.Font = Enum.Font.GothamBold btn.TextSize = 18 btn.Parent = buttonArea btn.MouseEnter:Connect(function() btn:TweenSize(UDim2.new(0,220,0,40), "Out", "Quad", 0.2, true) btn.BackgroundColor3 = Color3.fromRGB(0,170,255) end) btn.MouseLeave:Connect(function() btn:TweenSize(UDim2.new(0,200,0,35), "Out", "Quad", 0.2, true) btn.BackgroundColor3 = Color3.fromRGB(70,70,70) end) btn.MouseButton1Click:Connect(function() feature.action() end) end