local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TextChatService = game:GetService("TextChatService") local ScreenGui = Instance.new("ScreenGui") local success, err = pcall(function() ScreenGui.Parent = game:GetService("CoreGui") end) if not success then ScreenGui.Parent = Players.LocalPlayer:WaitForChild("PlayerGui") end ScreenGui.Name = "CVX_AntiTag_GUI" ----------------------------------------------------------- -- 1. MAIN PANEL (ANIME BACKGROUND) ----------------------------------------------------------- local MainFrame = Instance.new("ImageLabel", ScreenGui) MainFrame.Size = UDim2.new(0, 350, 0, 400) MainFrame.Position = UDim2.new(0.5, -175, 0.5, -200) MainFrame.Image = "rbxassetid://132174304896796" -- Screenshot 2026-05-13 9.14.11 PM.png MainFrame.Active = true MainFrame.Draggable = true Instance.new("UICorner", MainFrame) local DevCredit = Instance.new("TextLabel", MainFrame) DevCredit.Size = UDim2.new(0, 200, 0, 20) DevCredit.Position = UDim2.new(0, 5, 1, -25) DevCredit.Text = "DEVELOPED BY -> HARRY" DevCredit.TextColor3 = Color3.fromRGB(255, 255, 255) DevCredit.BackgroundTransparency = 1 DevCredit.TextXAlignment = Enum.TextXAlignment.Left DevCredit.Font = Enum.Font.SourceSansBold ----------------------------------------------------------- -- 2. INPUT & BUTTONS (BLUE THEME) ----------------------------------------------------------- local BlueTheme = Color3.fromRGB(72, 189, 238) -- Screenshot 2026-05-13 12.15.44 PM.png local TargetInput = Instance.new("TextBox", MainFrame) TargetInput.Size = UDim2.new(0.8, 0, 0, 40) TargetInput.Position = UDim2.new(0.1, 0, 0.2, 0) TargetInput.PlaceholderText = "NAME OF ENEMY" TargetInput.Text = "" TargetInput.BackgroundColor3 = BlueTheme TargetInput.TextColor3 = Color3.fromRGB(255, 255, 255) TargetInput.Font = Enum.Font.SourceSansBold Instance.new("UICorner", TargetInput) local StartBtn = Instance.new("TextButton", MainFrame) StartBtn.Size = UDim2.new(0.35, 0, 0, 45) StartBtn.Position = UDim2.new(0.1, 0, 0.45, 0) StartBtn.Text = "START" StartBtn.BackgroundColor3 = BlueTheme StartBtn.TextColor3 = Color3.fromRGB(255, 255, 255) StartBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", StartBtn) local StopBtn = Instance.new("TextButton", MainFrame) StopBtn.Size = UDim2.new(0.35, 0, 0, 45) StopBtn.Position = UDim2.new(0.55, 0, 0.45, 0) StopBtn.Text = "STOP" StopBtn.BackgroundColor3 = BlueTheme StopBtn.TextColor3 = Color3.fromRGB(255, 255, 255) StopBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", StopBtn) ----------------------------------------------------------- -- 3. BYPASS LOGIC (PREVENTS TAGS) ----------------------------------------------------------- local isSpamming = false local function SendChat(msg) pcall(function() if TextChatService.ChatVersion == Enum.ChatVersion.TextChatService then TextChatService.TextChannels.RBXGeneral:SendAsync(msg) else ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") end end) end StartBtn.MouseButton1Click:Connect(function() if isSpamming then return end local hater = TargetInput.Text if hater == "" then hater = "noob" end isSpamming = true task.spawn(function() local count = 1 while isSpamming do -- Optimized repetition with hidden separators to bypass filter local syms = {"@", "_", "$", "&", "%"} local phrases = { "{"..hater.."} 6kka", "{"..hater.."} noob", "{"..hater.."} CVX OP BOL", "{"..hater.."} NOBU/HARRY PAPA BOL", "{"..hater.."} SORRY BOLDE" } -- Generates a mix of 80 symbols and spaces to avoid "unbroken string" tags local visualSpam = "" for i = 1, 40 do visualSpam = visualSpam .. syms[count] .. " " end SendChat(visualSpam .. phrases[count]) count = count % 5 + 1 task.wait(2.2) -- Slightly increased delay to further prevent tagging end end) end) StopBtn.MouseButton1Click:Connect(function() isSpamming = false end)