-- سكربت Brookhaven باسم يزن 💛💚💙 local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() -- واجهة GUI local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "YazanUltimateGUI" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 270, 0, 400) frame.Position = UDim2.new(0.05, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(255, 255, 0) frame.Active = true frame.Draggable = true -- صوت ترحيب أنمي local sound = Instance.new("Sound", player:WaitForChild("PlayerGui")) sound.SoundId = "rbxassetid://7149259484" -- صوت أنمي "Sugoi!" sound.Volume = 2 sound:Play() -- رسالة ترحيب local welcome = Instance.new("TextLabel", frame) welcome.Size = UDim2.new(1, 0, 0, 50) welcome.Text = "🎉 أهلاً بك يا يـزن! سكربت أنمي 🔥" welcome.TextColor3 = Color3.fromRGB(0, 255, 0) welcome.Font = Enum.Font.FredokaOne welcome.TextScaled = true task.delay(15, function() welcome.Visible = false end) -- وظيفة إنشاء زر local function createButton(text, yPos, color, callback) local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(1, 0, 0, 35) btn.Position = UDim2.new(0, 0, yPos, 0) btn.Text = text btn.BackgroundColor3 = color btn.Font = Enum.Font.FredokaOne btn.TextScaled = true btn.MouseButton1Click:Connect(callback) end -- نسخ سكن لاعب createButton("🎭 نسخ سكن لاعب", 0.15, Color3.fromRGB(0,170,255), function() for _, p in pairs(game.Players:GetPlayers()) do if p ~= player and p.Character then char:FindFirstChildOfClass("Humanoid").Description = p.Character:FindFirstChildOfClass("Humanoid").Description:Clone() break end end end) -- تخريب البيوت createButton("💥 تخريب البيوت", 0.25, Color3.fromRGB(255,85,0), function() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("Part") and obj.Name == "HouseWall" then obj:Destroy() end end end) -- دخول بيت مغلق createButton("🏠 دخول بيت مغلق", 0.35, Color3.fromRGB(0,255,127), function() local door = workspace:FindFirstChild("HouseDoor") if door then char:MoveTo(door.Position + Vector3.new(0,5,0)) end end) -- طيران local flying = false createButton("🕊️ تشغيل/إيقاف الطيران", 0.45, Color3.fromRGB(128,0,255), function() local humanoid = char:FindFirstChildOfClass("Humanoid") if humanoid then flying = not flying humanoid.PlatformStand = flying if flying then char:MoveTo(char.Position + Vector3.new(0,50,0)) end end end) -- سرعة local speed = 16 createButton("⚡ زيادة السرعة", 0.55, Color3.fromRGB(0,255,255), function() char:FindFirstChildOfClass("Humanoid").WalkSpeed = speed + 10 end) createButton("🐢 تقليل السرعة", 0.65, Color3.fromRGB(255,0,255), function() char:FindFirstChildOfClass("Humanoid").WalkSpeed = speed end) -- تلغيم الأرض createButton("💣 تلغيم الأرض", 0.75, Color3.fromRGB(255,255,255), function() local bomb = Instance.new("Part", workspace) bomb.Size = Vector3.new(2,2,2) bomb.Position = char.Position - Vector3.new(0,3,0) bomb.BrickColor = BrickColor.Red() bomb.Anchored = false end) -- تغيير شكل الشخصية لأنمي createButton("🎌 شكل أنمي", 0.85, Color3.fromRGB(255,200,0), function() local hum = char:FindFirstChildOfClass("Humanoid") if hum then hum.Description.Head = 0 hum.Description.Face = 0 hum.Description.Shirt = 0 end end) -- إظهار اسمك فوق الشخصية createButton("🔖 إظهار اسم يزن", 0.95, Color3.fromRGB(0,200,0), function() local tag = Instance.new("BillboardGui", char) tag.Size = UDim2.new(0,200,0,50) tag.Adornee = char:FindFirstChild("Head") local txt = Instance.new("TextLabel", tag) txt.Size = UDim2.new(1,0,1,0) txt.Text = "يـزن 🔥" txt.TextColor3 = Color3.fromRGB(255,255,0) txt.BackgroundTransparency = 1 txt.Font = Enum.Font.FredokaOne txt.TextScaled = true end) -- زر إخفاء/إظهار الواجهة createButton("👁️ إخفاء/إظهار الواجهة", 1.05, Color3.fromRGB(100,100,100), function() frame.Visible = not frame.Visible end)