-- سكربت الفخ المستفز من عمك دارك game.Players.PlayerAdded:Connect(Unit(player) -- إذا كنت تبي تستهدف صاحبك بـ الإسم، غير "PutYourFriendNameHere" لإسم حسابه (Username) -- لو تبي السكربت يشتغل على أي حد يدخل، احذف سطر الشرط (if) والـ (end) تبعه. if player.Name == "PutYourFriendNameHere" then player.CharacterAdded:Connect(function(character) -- إنشاء واجهة الشاشة local screenGui = Instance.new("ScreenGui") screenGui.Name = "DarkTrap" screenGui.ResetOnSpawn = false -- عشان الشاشة ما تروح لو مات ورجع رسبن screenGui.IgnoreGuiInset = true -- تغطي الشاشة كاملة حتى الأطراف العليا screenGui.DisplayOrder = 999999 -- تكون فوق أي واجهة ثانية في اللعبة screenGui.Parent = player:WaitForChild("PlayerGui") -- إنشاء الخلفية البيضاء الكاملة local whiteFrame = Instance.new("Frame") whiteFrame.Size = UDim2.new(1, 0, 1, 0) whiteFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) whiteFrame.BorderSizePixel = 0 whiteFrame.Parent = screenGui -- النص الأساسي (المستفز والمزخرف) local mainText = Instance.new("TextLabel") mainText.Size = UDim2.new(0.8, 0, 0.3, 0) mainText.Position = UDim2.new(0.1, 0, 0.3, 0) mainText.BackgroundTransparency = 1 mainText.Text = "⚡ 𝕬𝕭𝕷𝕬𝕭 𝕸𝕰𝕹 𝕬𝕸𝕶 𝕯𝕬𝕽𝕶 ⚡\n\n「 ابلع من عمك دارك 」" mainText.TextColor3 = Color3.fromRGB(255, 0, 0) -- لون أحمر ناري عشان القهر mainText.TextSize = 45 mainText.Font = Enum.Font.FredokaOne -- خط عريض ومستفز mainText.TextWrapped = true mainText.Parent = whiteFrame -- النص السفلي local footerText = Instance.new("TextLabel") footerText.Size = UDim2.new(0.8, 0, 0.1, 0) footerText.Position = UDim2.new(0.1, 0, 0.7, 0) footerText.BackgroundTransparency = 1 footerText.Text = "🖕 F**K YOU 🖕" footerText.TextColor3 = Color3.fromRGB(0, 0, 0) -- أسود footerText.TextSize = 35 footerText.Font = Enum.Font.SourceSansBold footerText.Parent = whiteFrame -- تشغيل صوت مزعج أو ضحكة مستفزة بالخلفية (اختياري) local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://9069609268" -- صوت ضحكة مضحكة ومستفزة sound.Volume = 1 sound.Looped = true sound.Parent = whiteFrame sound:Play() print("تم تفعيل فخ دارك بنجاح على: " .. player.Name) end) end end)