-- ==================== ORX SPAMMER v3.1 ==================== print("✅ ORX Spammer Loading...") local Players = game:GetService("Players") local TextChatService = game:GetService("TextChatService") local player = Players.LocalPlayer -- Draggable GUI local gui = Instance.new("ScreenGui") gui.Name = "ORX_Spammer_GUI" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 420, 0, 450) frame.Position = UDim2.new(0.5, -210, 0.5, -225) frame.BackgroundColor3 = Color3.fromRGB(15, 15, 25) frame.BorderSizePixel = 0 Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 12) frame.Active = true frame.Draggable = true local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 60) title.BackgroundColor3 = Color3.fromRGB(100, 0, 200) title.Text = "🔥 ORX SPAMMER 🔥" title.TextColor3 = Color3.new(1,1,1) title.TextScaled = true title.Font = Enum.Font.GothamBold Instance.new("UICorner", title) local targetBox = Instance.new("TextBox", frame) targetBox.Size = UDim2.new(0.9,0,0,40) targetBox.Position = UDim2.new(0.05,0,0.18,0) targetBox.PlaceholderText = "Hater ka naam likho (default: ALL)" targetBox.BackgroundColor3 = Color3.fromRGB(30,30,45) targetBox.TextColor3 = Color3.new(1,1,1) Instance.new("UICorner", targetBox) local status = Instance.new("TextLabel", frame) status.Size = UDim2.new(1,0,0,30) status.Position = UDim2.new(0,0,0.3,0) status.BackgroundTransparency = 1 status.Text = "Ready to Destroy Haters..." status.TextColor3 = Color3.fromRGB(180, 100, 255) status.TextScaled = true local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0.8,0,0,55) btn.Position = UDim2.new(0.1,0,0.75,0) btn.BackgroundColor3 = Color3.fromRGB(140, 0, 255) btn.Text = "🚀 START ORX SPAMMER" btn.TextColor3 = Color3.new(1,1,1) btn.TextScaled = true Instance.new("UICorner", btn) local saying = false local targetName = "ALL" targetBox.FocusLost:Connect(function() if targetBox.Text and targetBox.Text ~= "" then targetName = targetBox.Text status.Text = "Targeting: " .. targetName end end) btn.MouseButton1Click:Connect(function() saying = not saying btn.Text = saying and "⛔ STOP SPAM" or "🚀 START ORX SPAMMER" if saying then task.spawn(function() while saying do local lines = { "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me fleet", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me shadow", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r pil gya", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me cud", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me charger 🔋🔌", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me laptop 💻", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me Legend 👑", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me harry", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me math sir", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me ronaldo", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me nell", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me Ajju begam", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me Math 📐📊📚", "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ orx h8r tmx me tractor 🚜" } local msg = lines[math.random(1, #lines)] if targetName ~= "ALL" then msg = msg .. " | 🎯 " .. targetName end pcall(function() local channel = TextChatService:FindFirstChild("TextChannels") and TextChatService.TextChannels:FindFirstChild("RBXGeneral") if channel then channel:SendAsync(msg) end end) task.wait(0.65) end end) end end) -- Loading Message task.wait(1) pcall(function() local channel = TextChatService:FindFirstChild("TextChannels") and TextChatService.TextChannels:FindFirstChild("RBXGeneral") if channel then channel:SendAsync("________________________________________________________________________\nORX SPAMMER LOADED 💥\n________________________________________________________________________") end end) print("✅ ORX Spammer Fully Loaded! | Alpha Daddy ORX On Top 🔥")