Recently a lot of our players have been noticing these bots join and send custom chat messages to join their gambling Robux website. This is a big issue because a few of our players have even fell for this scam and resulted in losing their account. I would hate for our game to turn into a botting paradise where players can fall for scams.
People also believe that BLOXDROP is sponsoring us and are more likely to fall for it. I’m posting announcements on our discord server to warn our player base but that will only reach so many players.
Please let us know if Roblox is working on a solution and if there’s anything we can do to fix this issue in the short term!
I expect Roblox to take action on this exploit and remove it. Even if 0.1% of our players fell for it, that’s still a massive amount of users getting scammed or tricked into gambling.
I would also like to know if there’s anything we as developers can do in the short term.
this is an issue if its actually working, I suggest for now making an in game notice on join, and also make some sort of word blacklist system and adding bloxdrop to it.
This has been an issue for a long time. Roblox doesn’t properly normalize spaces, which allows you to use multiple spaces to wrap the text around simulating a newline. You don’t even need an exploit to achieve this.
The best way to solve this is by normalizing any repetitive spaces using TextChatService.OnIncomingMessage on the client:
local TextChatService = game:GetService("TextChatService")
local function OnIncomingMessage(Message: TextChatMessage)
local Properties = Instance.new("TextChatMessageProperties")
Properties.Text = string.gsub(Message.Text, "%s+", " ")
return Properties
end
TextChatService.OnIncomingMessage = OnIncomingMessage
This is extremely disturbing, as I was playing a game (link) today and these scam bots were literally filling the chat. Every few minutes a random bot account joins the server, types in the chat, and instantly leaves.
This issue started happening very recently. Where is the bot detection system, Roblox?
I searched the profile of the random bot from one of the screenshots I sent, using the search bar on the website, and they’re still in-game. And judging by their badges, they’re targeting a lot of popular games:
We’re seeing these too, and the way they’re framed makes players think they are affiliated with us. Additionally, we’ve seen our session time drop recently and suspect it’s related to these bots.
Thank you for the bug report. We’ve seen accounts joining experiences to post misleading messages promoting off-platform “Robux” sites. Our bot detection system detects this type of behavior, and we’re actively improving real-time detection and action to respond faster on such abuse.
We’re also looking into adding safeguards in Experience Chat so user messages do not look like system messages due to extra spaces.
In the meantime, please continue to report abuse, and ban users as this helps our systems catch these patterns more quickly.