local Players = game:GetService("Players") local RunService = game:GetService("RunService") local Workspace = game:GetService("Workspace") local LocalPlayer = Players.LocalPlayer -- GUI local gui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui")) gui.Name = "YOUVI_GUI" gui.ResetOnSpawn = false -- زر YV local toggleButton = Instance.new("TextButton", gui) toggleButton.Size = UDim2.new(0, 60, 0, 60) toggleButton.Position = UDim2.new(0.9, -30, 0.05, 0) toggleButton.Text = "YV" toggleButton.TextScaled = true toggleButton.Font = Enum.Font.Arcade toggleButton.TextColor3 = Color3.new(1, 1, 1) toggleButton.BackgroundColor3 = Color3.fromRGB(255, 0, 150) toggleButton.Draggable = true -- الإطار الرئيسي local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0.4, 0, 0.7, 0) frame.Position = UDim2.new(0.3, 0, 0.15, 0) frame.BackgroundColor3 = Color3.fromRGB(20, 20, 40) frame.Visible = false frame.Active = true frame.Draggable = true toggleButton.MouseButton1Click:Connect(function() frame.Visible = not frame.Visible end) -- العنوان local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0.1, 0) title.Text = "صُنع بواسطة: YOUVI" title.Font = Enum.Font.Arcade title.TextScaled = true title.TextColor3 = Color3.fromRGB(255, 0, 255) title.BackgroundTransparency = 1 -- إدخال اسم التارجت local nameBox = Instance.new("TextBox", frame) nameBox.Size = UDim2.new(0.8, 0, 0.1, 0) nameBox.Position = UDim2.new(0.1, 0, 0.12, 0) nameBox.PlaceholderText = "اسم التارجت" nameBox.TextScaled = true nameBox.Font = Enum.Font.GothamBold nameBox.TextColor3 = Color3.new(1, 1, 1) nameBox.BackgroundColor3 = Color3.fromRGB(100, 0, 150) -- إدخال القفزة local jumpBox = Instance.new("TextBox", frame) jumpBox.Size = UDim2.new(0.8, 0, 0.1, 0) jumpBox.Position = UDim2.new(0.1, 0, 0.24, 0) jumpBox.PlaceholderText = "القفزة" jumpBox.TextScaled = true jumpBox.Font = Enum.Font.GothamBold jumpBox.TextColor3 = Color3.new(1, 1, 1) jumpBox.BackgroundColor3 = Color3.fromRGB(60, 0, 100) -- إدخال السرعة local speedBox = Instance.new("TextBox", frame) speedBox.Size = UDim2.new(0.8, 0, 0.1, 0) speedBox.Position = UDim2.new(0.1, 0, 0.36, 0) speedBox.PlaceholderText = "السرعة" speedBox.TextScaled = true speedBox.Font = Enum.Font.GothamBold speedBox.TextColor3 = Color3.new(1, 1, 1) speedBox.BackgroundColor3 = Color3.fromRGB(0, 100, 150) -- زر تغيير القيم local setButton = Instance.new("TextButton", frame) setButton.Size = UDim2.new(0.8, 0, 0.08, 0) setButton.Position = UDim2.new(0.1, 0, 0.48, 0) setButton.Text = "تغيير القيم" setButton.TextScaled = true setButton.Font = Enum.Font.Arcade setButton.TextColor3 = Color3.new(1, 1, 1) setButton.BackgroundColor3 = Color3.fromRGB(255, 170, 0) setButton.MouseButton1Click:Connect(function() local j = tonumber(jumpBox.Text) local s = tonumber(speedBox.Text) if j then LocalPlayer.Character.Humanoid.JumpPower = j end if s then LocalPlayer.Character.Humanoid.WalkSpeed = s end end) -- دالة الفخ local function startTrap(char) local hum = char:WaitForChild("Humanoid") local root = char:WaitForChild("HumanoidRootPart") local myChar = LocalPlayer.Character local myRoot = myChar:WaitForChild("HumanoidRootPart") -- Teleport التارجت قدامك char:SetPrimaryPartCFrame(myRoot.CFrame * CFrame.new(0, 0, -5)) -- NoClip قوي RunService.Stepped:Connect(function() for _, part in pairs(myChar:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end) -- Follow التارجت local followLoop = RunService.Heartbeat:Connect(function() myChar:SetPrimaryPartCFrame(root.CFrame * CFrame.new(0, 0, 2)) end) -- لما يقعد على كرسي: صاروخ فوق + موت for _, seat in pairs(Workspace:GetDescendants()) do if seat:IsA("Seat") then seat:GetPropertyChangedSignal("Occupant"):Connect(function() if seat.Occupant and seat.Occupant.Parent == char then followLoop:Disconnect() for i = 1, 50 do char:SetPrimaryPartCFrame(char.PrimaryPart.CFrame + Vector3.new(0, 10, 0)) task.wait(0.01) end task.delay(0.5, function() hum.Health = 0 end) end end) end end end -- زر تفعيل الفخ (بعد تعريف الدالة) local trapButton = Instance.new("TextButton", frame) trapButton.Size = UDim2.new(0.8, 0, 0.08, 0) trapButton.Position = UDim2.new(0.1, 0, 0.58, 0) trapButton.Text = "تفعيل الفخ" trapButton.TextScaled = true trapButton.Font = Enum.Font.Arcade trapButton.TextColor3 = Color3.new(1, 1, 1) trapButton.BackgroundColor3 = Color3.fromRGB(255, 0, 100) trapButton.MouseButton1Click:Connect(function() local target = Players:FindFirstChild(nameBox.Text) if target then if target.Character then startTrap(target.Character) else target.CharacterAdded:Connect(startTrap) end end end) -- زر المشاهدة local spectateButton = Instance.new("TextButton", frame) spectateButton.Size = UDim2.new(0.8, 0, 0.08, 0) spectateButton.Position = UDim2.new(0.1, 0, 0.68, 0) spectateButton.Text = "مشاهدة التارجت" spectateButton.TextScaled = true spectateButton.Font = Enum.Font.Arcade spectateButton.TextColor3 = Color3.new(1, 1, 1) spectateButton.BackgroundColor3 = Color3.fromRGB(0, 150, 200) local spectating = false spectateButton.MouseButton1Click:Connect(function() local target = Players:FindFirstChild(nameBox.Text) if target and target.Character and target.Character:FindFirstChild("Humanoid") then local cam = Workspace.CurrentCamera if not spectating then cam.CameraSubject = target.Character.Humanoid spectateButton.Text = "إيقاف المشاهدة" spectating = true else cam.CameraSubject = LocalPlayer.Character:FindFirstChild("Humanoid") spectateButton.Text = "مشاهدة التارجت" spectating = false end end end) -- زر رسالة شكر local thankButton = Instance.new("TextButton", frame) thankButton.Size = UDim2.new(0.8, 0, 0.08, 0) thankButton.Position = UDim2.new(0.1, 0, 0.78, 0) thankButton.Text = "رسالة شكر" thankButton.TextScaled = true thankButton.Font = Enum.Font.GothamBold thankButton.TextColor3 = Color3.new(1, 1, 1) thankButton.BackgroundColor3 = Color3.fromRGB(0, 200, 100) -- عنصر عرض الرسالة local messageBox = Instance.new("TextLabel", frame) messageBox.Size = UDim2.new(0.9, 0, 0.08, 0) messageBox.Position = UDim2.new(0.05, 0, 0.88, 0) messageBox.Text = "" messageBox.Font = Enum.Font.Gotham messageBox.TextScaled = true messageBox.TextColor3 = Color3.fromRGB(0, 255, 0) messageBox.BackgroundTransparency = 1 messageBox.Visible = false -- تفعيل الرسالة thankButton.MouseButton1Click:Connect(function() messageBox.Text = "شكرا لكل من استخدم السكربت و تعاطفنا مع اهل غزه 💚" messageBox.Visible = true task.delay(6, function() messageBox.Visible = false end) end) local function setRPName() local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local head = char:WaitForChild("Head") -- دور على العنصر اللي بيعرض الاسم for _, child in pairs(head:GetChildren()) do if child:IsA("BillboardGui") then local label = child:FindFirstChildWhichIsA("TextLabel") if label then label.Text = "سكربت المطور: YOUVI" end end end end -- نفذها أول ما السكربت يشتغل setRPName() -- لو الشخصية اتغيرت أو ماتت LocalPlayer.CharacterAdded:Connect(function() setRPName() end) -- واجهة الأكواد local skinGui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui")) skinGui.Name = "YOUVISKINGUI" skinGui.ResetOnSpawn = false local skinFrame = Instance.new("Frame", skinGui) skinFrame.Size = UDim2.new(0.3, 0, 0.6, 0) skinFrame.Position = UDim2.new(0.35, 0, 0.2, 0) skinFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 60) skinFrame.Active = true skinFrame.Draggable = true local skinTitle = Instance.new("TextLabel", skinFrame) skinTitle.Size = UDim2.new(1, 0, 0.1, 0) skinTitle.Text = "🧬 أكواد YOUVI للسكنات" skinTitle.Font = Enum.Font.Arcade skinTitle.TextScaled = true skinTitle.TextColor3 = Color3.new(1, 1, 1) skinTitle.BackgroundTransparency = 1 -- الأكواد local codes = { ["🧠 Half Head"] = "104741388932912", ["😵‍💫 وجه المحشش"] = "110677625607323", ["😶 مش هتكلم"] = "125527014849134", ["🤓 مستر بين"] = "116402119240978", ["💀 سكيلتون"] = "14957926132", ["🐔 فرخه"] = "255397920720402", ["🐱 قطة نينجا"] = "116398507972828", ["🦭 فقمه"] = "18692725169" } local y = 0.12 for name, id in pairs(codes) do local label = Instance.new("TextLabel", skinFrame) label.Size = UDim2.new(0.6, 0, 0.06, 0) label.Position = UDim2.new(0.05, 0, y, 0) label.Text = name .. ": " .. id label.Font = Enum.Font.Gotham label.TextScaled = true label.TextColor3 = Color3.new(1, 1, 1) label.BackgroundTransparency = 1 label.TextXAlignment = Enum.TextXAlignment.Left local copyBtn = Instance.new("TextButton", skinFrame) copyBtn.Size = UDim2.new(0.3, 0, 0.06, 0) copyBtn.Position = UDim2.new(0.65, 0, y, 0) copyBtn.Text = "📋 نسخ" copyBtn.Font = Enum.Font.GothamBold copyBtn.TextScaled = true copyBtn.TextColor3 = Color3.new(1, 1, 1) copyBtn.BackgroundColor3 = Color3.fromRGB(0, 200, 100) copyBtn.MouseButton1Click:Connect(function() setclipboard(id) end) y = y + 0.07 end -- زر فتح/إغلاق الواجهة local skinToggle = Instance.new("TextButton", gui) skinToggle.Size = UDim2.new(0, 60, 0, 60) skinToggle.Position = UDim2.new(0.9, -100, 0.05, 0) skinToggle.Text = "SK" skinToggle.TextScaled = true skinToggle.Font = Enum.Font.Arcade skinToggle.TextColor3 = Color3.new(1, 1, 1) skinToggle.BackgroundColor3 = Color3.fromRGB(0, 255, 150) skinToggle.Draggable = true skinToggle.MouseButton1Click:Connect(function() skinFrame.Visible = not skinFrame.Visible end)