en
Feedback
قناة معلومات تفيدك في تبادل حسابات Roblox

قناة معلومات تفيدك في تبادل حسابات Roblox

Open in Telegram

قناة مسابقات 𒉭

Show more
601
Subscribers
No data24 hours
-47 days
-1430 days
Posts Archive
السلام عليكم 👋🏻 معلومات تفيدكم 🔥 تبادل بحسابات Roblox حساب مربوط او غير مربوط/يستطيع صاحب الحساب يلي هوه يربط حساب ب أول بريد يرجع حساب من شركه ب رساله Hello Roblox Support, My Roblox account was hacked and I can no longer access it. I created and linked the account myself, but someone else changed the password and possibly the email. Because of this, I cannot log in anymore. Username: (اكتب اسم المستخدم هنا) I am the original owner of the account. Please help me recover it and restore my access. If you need any more information to verify ownership, I am ready to provide it. Thank you for your help. Best regards. من هذي رساله بخدمه دعم https://www.roblox.com/support ف نصيحه مني لك لا تشتري حساب مربوط او غير مربوط

السلام عليكم 👋🏻 معلومات تفيدكم 🔥 تبادل بحسابات Roblox حساب مربوط او غير مربوط/يستطيع صاحب الحساب يلي هوه يربط حساب ب أول بريد يرجع حساب من شركه ب رساله Hello Roblox Support, My Roblox account was hacked and I can no longer access it. I created and linked the account myself, but someone else changed the password and possibly the email. Because of this, I cannot log in anymore. Username: (اكتب اسم المستخدم هنا) I am the original owner of the account. Please help me recover it and restore my access. If you need any more information to verify ownership, I am ready to provide it. Thank you for your help. Best regards. من هذي رساله بخدمه دعم https://www.roblox.com/support ف نصيحه مني لك لا تشتري حساب مربوط او غير مربوط

شلونهم بعدكم عدلين المتكلم محارب

ضل على مزرعه و سرقه 😂

حجي نلعب بلوكس فورت
حجي نلعب بلوكس فورت

-- إرسال بـ Enter من الكيبورد UserInputService.InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.Return then if inputBox:IsFocused() then sendMessage() elseif chatEnabled then inputBox:CaptureFocus() end end if input.KeyCode == Enum.KeyCode.Tab and not inputBox:IsFocused() then chatFrame.Visible = not chatFrame.Visible end end) -- رسالة ترحيب task.delay(1, function() local welcome = WELCOME_MESSAGES[math.random(1, #WELCOME_MESSAGES)] addMessage("💬 النظام", welcome, false) addMessage("🔒 النظام", "الكلمات المسيئة مشفرة تلقائياً", false) addMessage("👤 النظام", "الرسائل تظهر فوق رأس اللاعب", false) end) -- تنظيف البيلبوردات عند موت الشخصية localPlayer.CharacterAdded:Connect(function(character) task.wait(0.5) -- تنظيف أي بيلبورد قديم if headBillboards[localPlayer] then headBillboards[localPlayer]:Destroy() headBillboards[localPlayer] = nil end end) print("✅ نظام الدردشة جاهز للاستخدام!") print("✅ زر 💬 في الأعلى يمين") print("✅ كلمات 'كحبه، قحبه، جحبه' مشفرة إلى ####") print("✅ رسائل تظهر فوق رأس اللاعب") print("✅ نص أسود على خلفية بيضاء صغيرة") print("✅ مناسب لـ Studio Lite")

-- إضافة رسالة للدردشة local function addMessage(sender, text, isLocal) local encryptedText = encryptWords(text) if #encryptedText > 100 then encryptedText = string.sub(encryptedText, 1, 100) .. "..." end local msgFrame = Instance.new("Frame") msgFrame.Size = UDim2.new(1, -5, 0, 0) msgFrame.BackgroundTransparency = 1 msgFrame.AutomaticSize = Enum.AutomaticSize.Y msgFrame.LayoutOrder = #messagesScroll:GetChildren() local bg = Instance.new("Frame") bg.Size = UDim2.new(1, 0, 0, 0) bg.BackgroundColor3 = isLocal and Color3.fromRGB(30, 65, 100) or Color3.fromRGB(60, 60, 60) bg.BackgroundTransparency = 0.2 bg.BorderSizePixel = 0 bg.AutomaticSize = Enum.AutomaticSize.Y bg.Parent = msgFrame local bgCorner = Instance.new("UICorner") bgCorner.CornerRadius = UDim.new(0, 6) bgCorner.Parent = bg local content = Instance.new("Frame") content.Size = UDim2.new(1, -8, 0, 0) content.Position = UDim2.new(0, 4, 0, 4) content.BackgroundTransparency = 1 content.AutomaticSize = Enum.AutomaticSize.Y content.Parent = bg local senderLabel = Instance.new("TextLabel") senderLabel.Size = UDim2.new(1, 0, 0, 18) senderLabel.Text = sender .. ":" senderLabel.TextColor3 = isLocal and Color3.fromRGB(100, 200, 255) or Color3.fromRGB(255, 200, 100) senderLabel.TextSize = 13 senderLabel.Font = Enum.Font.SourceSansSemibold senderLabel.BackgroundTransparency = 1 senderLabel.TextXAlignment = Enum.TextXAlignment.Right senderLabel.Parent = content local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 0, 0) textLabel.Position = UDim2.new(0, 0, 0, 20) textLabel.Text = encryptedText textLabel.TextColor3 = Color3.fromRGB(240, 240, 240) textLabel.TextSize = 13 textLabel.Font = Enum.Font.SourceSans textLabel.BackgroundTransparency = 1 textLabel.TextXAlignment = Enum.TextXAlignment.Right textLabel.TextWrapped = true textLabel.AutomaticSize = Enum.AutomaticSize.Y textLabel.Parent = content local timeLabel = Instance.new("TextLabel") timeLabel.Size = UDim2.new(0, 35, 0, 12) timeLabel.Position = UDim2.new(0, 4, 0, 4) timeLabel.Text = os.date("%H:%M") timeLabel.TextColor3 = Color3.fromRGB(150, 150, 150) timeLabel.TextSize = 10 timeLabel.Font = Enum.Font.SourceSans timeLabel.BackgroundTransparency = 1 timeLabel.TextXAlignment = Enum.TextXAlignment.Left timeLabel.Parent = bg msgFrame.Parent = messagesScroll -- تمرير للأسفل task.wait(0.05) local target = messagesScroll.CanvasSize.Y.Offset - messagesScroll.AbsoluteWindowSize.Y if target > 0 then TweenService:Create(messagesScroll, TweenInfo.new(0.2), { CanvasPosition = Vector2.new(0, target) }):Play() end table.insert(messageHistory, { sender = sender, message = encryptedText, original = text, time = os.time(), isLocal = isLocal }) end -- إرسال رسالة local function sendMessage() local text = string.gsub(inputBox.Text, "^%s*(.-)%s*$", "%1") if #text == 0 or not chatEnabled then return end -- إضافة الرسالة للدردشة addMessage(localPlayer.Name, text, true) -- عرض الرسالة فوق رأس اللاعب showMessageAboveHead(localPlayer, text) -- تفريغ حقل الإدخال inputBox.Text = "" end -- ==================== [الأحداث] ==================== -- فتح/إغلاق الدردشة chatBtn.MouseButton1Click:Connect(function() chatFrame.Visible = not chatFrame.Visible if chatFrame.Visible then chatEnabled = true end end) -- إرسال بالزر sendBtn.MouseButton1Click:Connect(sendMessage) -- إرسال بـ Enter inputBox.FocusLost:Connect(function(enterPressed) if enterPressed then sendMessage() end end)

-- حفظ البيلبورد للتحكم فيه لاحقاً headBillboards[player] = billboard -- إزالة البيلبورد تلقائياً بعد 4 ثواني task.delay(4, function() if billboard and billboard.Parent then billboard:Destroy() headBillboards[player] = nil end end) end -- ==================== [إنشاء واجهة بسيطة] ==================== local screenGui = Instance.new("ScreenGui") screenGui.Name = "SimpleChat" screenGui.ResetOnSpawn = false screenGui.Parent = localPlayer:WaitForChild("PlayerGui") -- زر الدردشة local chatBtn = Instance.new("TextButton") chatBtn.Name = "ChatButton" chatBtn.Size = UDim2.new(0, 40, 0, 40) chatBtn.Position = UDim2.new(1, -50, 0, 10) chatBtn.Text = "💬" chatBtn.TextSize = 20 chatBtn.Font = Enum.Font.SourceSans chatBtn.BackgroundColor3 = Color3.fromRGB(0, 100, 200) chatBtn.TextColor3 = Color3.fromRGB(255, 255, 255) chatBtn.BorderSizePixel = 0 chatBtn.Parent = screenGui local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 8) btnCorner.Parent = chatBtn -- إطار الدردشة local chatFrame = Instance.new("Frame") chatFrame.Name = "ChatFrame" chatFrame.Size = UDim2.new(0, 320, 0, 240) chatFrame.Position = UDim2.new(0.5, -160, 0.5, -120) chatFrame.AnchorPoint = Vector2.new(0.5, 0.5) chatFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) chatFrame.BackgroundTransparency = 0.1 chatFrame.BorderSizePixel = 0 chatFrame.ClipsDescendants = true chatFrame.Visible = true chatFrame.Parent = screenGui local frameCorner = Instance.new("UICorner") frameCorner.CornerRadius = UDim.new(0, 10) frameCorner.Parent = chatFrame -- عنوان local title = Instance.new("TextLabel") title.Name = "Title" title.Size = UDim2.new(1, 0, 0, 35) title.Text = "💬 الدردشة" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 18 title.Font = Enum.Font.SourceSansBold title.BackgroundTransparency = 1 title.TextXAlignment = Enum.TextXAlignment.Center title.Parent = chatFrame -- قائمة الرسائل local messagesScroll = Instance.new("ScrollingFrame") messagesScroll.Name = "Messages" messagesScroll.Size = UDim2.new(1, -10, 1, -90) messagesScroll.Position = UDim2.new(0, 5, 0, 40) messagesScroll.BackgroundTransparency = 1 messagesScroll.BorderSizePixel = 0 messagesScroll.ScrollBarThickness = 5 messagesScroll.CanvasSize = UDim2.new(0, 0, 0, 0) messagesScroll.AutomaticCanvasSize = Enum.AutomaticSize.Y messagesScroll.ScrollingEnabled = true messagesScroll.Parent = chatFrame local listLayout = Instance.new("UIListLayout") listLayout.Parent = messagesScroll listLayout.SortOrder = Enum.SortOrder.LayoutOrder listLayout.Padding = UDim.new(0, 6) -- حقل الإدخال local inputBox = Instance.new("TextBox") inputBox.Name = "Input" inputBox.Size = UDim2.new(1, -80, 0, 36) inputBox.Position = UDim2.new(0, 5, 1, -46) inputBox.PlaceholderText = "اكتب رسالة..." inputBox.Text = "" inputBox.ClearTextOnFocus = false inputBox.TextColor3 = Color3.fromRGB(255, 255, 255) inputBox.PlaceholderColor3 = Color3.fromRGB(150, 150, 150) inputBox.TextSize = 14 inputBox.Font = Enum.Font.SourceSans inputBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) inputBox.TextXAlignment = Enum.TextXAlignment.Right inputBox.Parent = chatFrame local inputCorner = Instance.new("UICorner") inputCorner.CornerRadius = UDim.new(0, 6) inputCorner.Parent = inputBox -- زر الإرسال local sendBtn = Instance.new("TextButton") sendBtn.Name = "Send" sendBtn.Size = UDim2.new(0, 70, 0, 36) sendBtn.Position = UDim2.new(1, -75, 1, -46) sendBtn.Text = "إرسال" sendBtn.TextSize = 14 sendBtn.Font = Enum.Font.SourceSansBold sendBtn.BackgroundColor3 = Color3.fromRGB(0, 120, 215) sendBtn.TextColor3 = Color3.fromRGB(255, 255, 255) sendBtn.BorderSizePixel = 0 sendBtn.Parent = chatFrame local sendCorner = Instance.new("UICorner") sendCorner.CornerRadius = UDim.new(0, 6) sendCorner.Parent = sendBtn -- ==================== [وظائف النظام] ====================

-- نظام دردشة كامل لـ Roblox Studio Lite -- مع رسائل تظهر فوق رأس اللاعب -- ضعه في LocalScript داخل StarterGui local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local StarterGui = game:GetService("StarterGui") local localPlayer = Players.LocalPlayer -- إخفاء دردشة روبلكس الأصلية StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false) -- متغيرات النظام local chatEnabled = true local messageHistory = {} local headBillboards = {} -- تخزين البيلبوردات فوق الرأس local isScrollingManually = false local lastScrollTime = 0 -- كلمات بديلة للترحيب local WELCOME_MESSAGES = { "مرحباً! هذه دردشة اللعبة", "تواصل مع اللاعبين بلطف", "استمتع بتجربة اللعب", "اللعبة ممتعة مع الأصدقاء" } -- ==================== [تشفير الكلمات فقط] ==================== local ENCRYPT_WORDS = { ["كحبه"] = "####", ["قحبه"] = "####", ["جحبه"] = "####", ["كحبة"] = "####", ["قحبة"] = "####", ["جحبة"] = "####", ["گحبه"] = "####", ["گحبة"] = "####" } -- دالة تشفير فقط الكلمات المطلوبة local function encryptWords(message) local encrypted = message local lowerMsg = string.lower(message) for word, code in pairs(ENCRYPT_WORDS) do local lowerWord = string.lower(word) -- بحث مباشر local pattern = string.gsub(word, "([%(%)%.%%%+%-%*%?%[%]%^%$])", "%%%1") encrypted = string.gsub(encrypted, pattern, code) -- بحث بالأحرف الصغيرة local lowerPattern = string.gsub(lowerWord, "([%(%)%.%%%+%-%*%?%[%]%^%$])", "%%%1") encrypted = string.gsub(encrypted, lowerPattern, code) end return encrypted end -- ==================== [دالة عرض الرسالة فوق الرأس] ==================== local function showMessageAboveHead(player, text) -- التحقق من وجود الشخصية if not player or not player.Character then return end local head = player.Character:FindFirstChild("Head") if not head then return end -- إزالة الرسالة القديمة إن وجدت if headBillboards[player] then headBillboards[player]:Destroy() headBillboards[player] = nil end -- تقصير النص إذا كان طويلاً local displayText = text if #displayText > 20 then displayText = string.sub(displayText, 1, 20) .. "..." end -- إنشاء البيلبورد (الإطار الذي يظهر فوق الرأس) local billboard = Instance.new("BillboardGui") billboard.Name = "HeadMessage" billboard.Size = UDim2.new(0, 180, 0, 30) -- حجم صغير جداً billboard.StudsOffset = Vector3.new(0, 2.2, 0) -- ارتفاع فوق الرأس billboard.AlwaysOnTop = true billboard.MaxDistance = 50 -- المسافة القصوى للرؤية billboard.Adornee = head billboard.Parent = head -- خلفية بيضاء صغيرة local bg = Instance.new("Frame") bg.Size = UDim2.new(1, 0, 1, 0) bg.BackgroundColor3 = Color3.fromRGB(255, 255, 255) -- أبيض bg.BackgroundTransparency = 0.15 -- شفافية بسيطة bg.BorderSizePixel = 0 bg.Parent = billboard -- زوايا مستديرة local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 5) corner.Parent = bg -- نص الرسالة (لون أسود) local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, -6, 1, -6) textLabel.Position = UDim2.new(0, 3, 0, 3) textLabel.Text = displayText textLabel.TextColor3 = Color3.fromRGB(0, 0, 0) -- أسود textLabel.TextSize = 11 textLabel.Font = Enum.Font.SourceSansSemibold textLabel.BackgroundTransparency = 1 textLabel.TextWrapped = true textLabel.TextXAlignment = Enum.TextXAlignment.Center textLabel.TextStrokeTransparency = 0.6 -- حدود للنص textLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255) textLabel.Parent = bg

شات شغال و سويته ماب و نتيجه