-- [[ سكربت طه الملكي العريض - لون أصفر وأبيض + قسم السكربتات والأوامر 👑 ]] -- local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") -- إنشاء الواجهة الأساسية local ScreenGui = Instance.new("ScreenGui", game.CoreGui) ScreenGui.Name = "TahaRoyalWideGui" -- زر الثلاث شرطات (☰) لفتح وإغلاق القائمة local MenuButton = Instance.new("TextButton", ScreenGui) MenuButton.Size = UDim2.new(0, 55, 0, 55) MenuButton.Position = UDim2.new(0, 20, 0, 20) MenuButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) -- زر أبيض ناصع MenuButton.Text = "☰" MenuButton.TextColor3 = Color3.fromRGB(180, 130, 10) -- نص ذهبي غامق MenuButton.TextSize = 32 MenuButton.Font = Enum.Font.SourceSansBold local MenuStroke = Instance.new("UIStroke", MenuButton) MenuStroke.Color = Color3.fromRGB(255, 215, 0) MenuStroke.Thickness = 2.5 -- اللوحة الرئيسية (تم تقليص الطول وزيادة العرض بشكل ملحوظ) local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 420, 0, 400) -- أعرض (420) وأقصر (400) MainFrame.Position = UDim2.new(0, 20, 0, 90) MainFrame.BackgroundColor3 = Color3.fromRGB(255, 205, 30) -- خلفية صفراء ذهبية ساطعة MainFrame.Visible = false MainFrame.Draggable = true MainFrame.Active = true local MainStroke = Instance.new("UIStroke", MainFrame) MainStroke.Color = Color3.fromRGB(255, 255, 255) -- حواف بيضاء فخمة MainStroke.Thickness = 4 -- التاج الملكي الكبير فوق الاسم local CrownLabel = Instance.new("TextLabel", MainFrame) CrownLabel.Size = UDim2.new(1, 0, 0, 35) CrownLabel.Position = UDim2.new(0, 0, 0, 5) CrownLabel.BackgroundTransparency = 1 CrownLabel.Text = "👑" CrownLabel.TextSize = 38 CrownLabel.Font = Enum.Font.GothamBold -- اسم TAHA الملكي العريض local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 35) Title.Position = UDim2.new(0, 0, 0, 40) Title.BackgroundTransparency = 1 Title.Text = "✨ TAHA ✨" Title.TextColor3 = Color3.fromRGB(255, 255, 255) -- اسم أبيض ساطع Title.TextSize = 26 Title.Font = Enum.Font.GothamBold -- تفعيل إخفاء وإظهار الواجهة MenuButton.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- دالة مساعدة لإنشاء الأزرار البيضاء الناصعة المتباينة مع الخلفية الصفراء local function createWhiteButton(text, pos, sizeY, parent) local btn = Instance.new("TextButton", parent) btn.Size = UDim2.new(0, 260, 0, sizeY or 35) btn.Position = pos btn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) -- زر أبيض بالكامل btn.Text = text btn.TextColor3 = Color3.fromRGB(180, 130, 10) -- نص ذهبي غامق وواضح جداً btn.Font = Enum.Font.SourceSansBold btn.TextSize = 15 local stroke = Instance.new("UIStroke", btn) stroke.Color = Color3.fromRGB(255, 215, 0) stroke.Thickness = 1.5 return btn end -- ==================== إعداد نظام الـ 3 صفحات (التبويب الجانبي) ==================== local Page1 = Instance.new("Frame", MainFrame) Page1.Size = UDim2.new(0, 280, 0, 300) Page1.Position = UDim2.new(0, 120, 0, 85) Page1.BackgroundTransparency = 1 local Page2 = Instance.new("Frame", MainFrame) Page2.Size = UDim2.new(0, 280, 0, 300) Page2.Position = UDim2.new(0, 120, 0, 85) Page2.BackgroundTransparency = 1 Page2.Visible = false local Page3 = Instance.new("Frame", MainFrame) Page3.Size = UDim2.new(0, 280, 0, 300) Page3.Position = UDim2.new(0, 120, 0, 85) Page3.BackgroundTransparency = 1 Page3.Visible = false -- أزرار التنقل الجانبية البيضاء (على جنب) local function createTabButton(text, posY) local tab = Instance.new("TextButton", MainFrame) tab.Size = UDim2.new(0, 95, 0, 40) tab.Position = UDim2.new(0, 12, 0, posY) tab.BackgroundColor3 = Color3.fromRGB(255, 255, 255) tab.Text = text tab.TextColor3 = Color3.fromRGB(180, 130, 10) tab.Font = Enum.Font.SourceSansBold tab.TextSize = 14 local stroke = Instance.new("UIStroke", tab) stroke.Color = Color3.fromRGB(255, 215, 0) stroke.Thickness = 1.5 return tab end local Tab1 = createTabButton("⚙️ الحركات", 90) local Tab2 = createTabButton("🎭 السكنات", 140) local Tab3 = createTabButton("🚀 السكربتات", 190) Tab1.MouseButton1Click:Connect(function() Page1.Visible = true Page2.Visible = false Page3.Visible = false end) Tab2.MouseButton1Click:Connect(function() Page1.Visible = false Page2.Visible = true Page3.Visible = false end) Tab3.MouseButton1Click:Connect(function() Page1.Visible = false Page2.Visible = false Page3.Visible = true end) -- ==================== محتويات الصفحة الأولى (الحركة والتحكم) ==================== local SpeedBtn = createWhiteButton("⚡ سرعة البرق الخارقة", UDim2.new(0, 10, 0, 10), 35, Page1) SpeedBtn.MouseButton1Click:Connect(function() player.Character.Humanoid.WalkSpeed = 100 end) local JumpBtn = createWhiteButton("🦘 قفز الأرانب العالي", UDim2.new(0, 10, 0, 55), 35, Page1) JumpBtn.MouseButton1Click:Connect(function() player.Character.Humanoid.JumpPower = 150 end) local noclip = false local NoclipBtn = createWhiteButton("👻 تشغيل اختراق الجدران (Noclip)", UDim2.new(0, 10, 0, 100), 35, Page1) NoclipBtn.MouseButton1Click:Connect(function() noclip = not noclip NoclipBtn.Text = noclip and "🟢 نكليب مفعل (Noclip)" or "👻 تشغيل اختراق الجدران (Noclip)" end) game:GetService("RunService").Stepped:Connect(function() if noclip and player.Character then for _, part in pairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) local FlyBtn = createWhiteButton("✈️ تشغيل طيران نفاث ✈️", UDim2.new(0, 10, 0, 145), 35, Page1) local flying = false FlyBtn.MouseButton1Click:Connect(function() flying = not flying if flying then FlyBtn.Text = "💥 إيقاف الطيران النفاث 💥" local torso = player.Character:FindFirstChild("HumanoidRootPart") local bv = Instance.new("BodyVelocity", torso) bv.Name = "TahaFly" bv.maxForce = Vector3.new(1e7, 1e7, 1e7) spawn(function() while flying do wait() bv.velocity = player:GetMouse().Hit.lookVector * 80 end if torso:FindFirstChild("TahaFly") then torso.TahaFly:Destroy() end end) else FlyBtn.Text = "✈️ تشغيل طيران نفاث ✈️" end end) -- ==================== محتويات الصفحة الثانية (السكنات والتحكم بالوقت) ==================== local DayBtn = createWhiteButton("☀️ نهار المستودع / Day", UDim2.new(0, 10, 0, 5), 32, Page2) DayBtn.MouseButton1Click:Connect(function() game.Lighting.ClockTime = 12 end) local NightBtn = createWhiteButton("🌙 ليل مظلم / Night", UDim2.new(0, 10, 0, 42), 32, Page2) NightBtn.MouseButton1Click:Connect(function() game.Lighting.ClockTime = 0 end) local NameInput = Instance.new("TextBox", Page2) NameInput.Size = UDim2.new(0, 260, 0, 32) NameInput.Position = UDim2.new(0, 10, 0, 80) NameInput.BackgroundColor3 = Color3.fromRGB(255, 255, 255) NameInput.PlaceholderText = "🔍 اكتب اسم الضحية هنا لسرقته..." NameInput.TextColor3 = Color3.new(0, 0, 0) NameInput.TextSize = 14 local StealBtn = createWhiteButton("👤 سرقة سكن الضحية فورا", UDim2.new(0, 10, 0, 120), 32, Page2) StealBtn.MouseButton1Click:Connect(function() local targetPlayer = game.Players:FindFirstChild(NameInput.Text) if targetPlayer and targetPlayer.Character then player:ApplyDescription(game.Players:GetHumanoidDescriptionFromUserId(targetPlayer.UserId)) end end) local AlHadBtn = createWhiteButton("⚔️ ارتداء سكن الحاد الأسود ⚔️", UDim2.new(0, 10, 0, 160), 32, Page2) AlHadBtn.MouseButton1Click:Connect(function() pcall(function() player:ApplyDescription(game.Players:GetHumanoidDescriptionFromUserId(2203131711)) end) end) -- ==================== محتويات الصفحة الثالثة (السكربتات الخارجية ولوحة الأوامر) ==================== local InfinityBtn = createWhiteButton("🌐 تشغيل سكربت Infinity Yield", UDim2.new(0, 10, 0, 5), 35, Page3) InfinityBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet('https://githubusercontent.com'))() end) local DanceHubBtn = createWhiteButton("🕺 سكربت حزمة الرقصات الكبرى", UDim2.new(0, 10, 0, 45), 35, Page3) DanceHubBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://githubusercontent.com"))() end) -- لوحة الأوامر السريعة (عصثشصثثصصص / Command Line) local CmdInput = Instance.new("TextBox", Page3) CmdInput.Size = UDim2.new(0, 260, 0, 35) CmdInput.Position = UDim2.new(0, 10, 0, 95) CmdInput.BackgroundColor3 = Color3.fromRGB(255, 255, 255) CmdInput.PlaceholderText = "⌨️ لوحة الأوامر السريعة (Console)..." CmdInput.TextColor3 = Color3.new(0, 0, 0) CmdInput.TextSize = 14 local ExecuteCmdBtn = createWhiteButton("⚡ تنفيذ الكود المكتوب فورا", UDim2.new(0, 10, 0, 135), 35, Page3) ExecuteCmdBtn.MouseButton1Click:Connect(function() local code = CmdInput.Text if code ~= "" then local success, err = pcall(loadstring(code)) if not success then warn("خطأ في السكربت: " .. tostring(err)) end end end)