I recently noted some bypass by not putting any “dot” in they scam, trying to target and scam peoples.
![]()
![]()
![]()
Might suit the following closed bug report:
System Information:
Windows 11 pro 25h2
I recently noted some bypass by not putting any “dot” in they scam, trying to target and scam peoples.
![]()
![]()
![]()
Might suit the following closed bug report:
System Information:
Windows 11 pro 25h2
This is actively a MASSIVE, widespread issue.
Every single server of any big game I join, a bot joins (and quickly leaves) advertising Bloxdrop, an illegal blackmarket Robux gambling website.
The accounts immediately leave before they can be reported in-game. The scale is massive. There are certainly many thousands of kids who have signed up on this website as a result.
They are also imitating system messages to deceive players who don’t know better into thinking the games that they’re playing are affiliated with this Bloxdrop website.
They actively subvert basic chat filter efforts by slightly changing their message, eg “BLOXDROPE”, “BLOXSDROP” etc.
Something needs to be done to stop this quickly.
Still an ongoing issue. Happened in the first server I joined, within 1 minute of joining.
Each bot account joins many different games, as you can see here:
Bloxdrop, or its affiliates, are purchasing bot Roblox account cookies in bulk from the blackmarket, and using them to run this spam script.
Edit:
i noticed that these bots’ DisplayName always (or at least most of the time) start with 2 words with the initial uppercased, followed by 3 or more digits, i made a script that looks for this when the player joins:
game:GetService("Players").PlayerAdded:Connect(function(p)
if p.DisplayName:match("^[A-Z][a-z]+[A-Z][a-z]+%d%d%d+$") ~= nil then -- match for "WordWord123+"
-- player is most likely a bot, take action here
end
end)