Introducing the Ban API and Alt Account Detection

Since the alt detection isn’t working, perhaps an alternative system: Optional phone verification requirement for your games.

2 Likes

image

cmon man.

local config = {
    UserIds = {userId},
    Duration = timeconv,
    DisplayReason = "You are banned for " .. info.ban_length .. " day(s) for '" .. info.ban_reason,
    PrivateReason = privateReason,
    ExcludeAltAccounts = not isExploiting,
    ApplyToUniverse = true
}
2 Likes

You can already script something like that using Player:IsVerified().

1 Like

Has the Ban API been updated to detect alt accounts, or is it still using the old method of detecting alt accounts?

1 Like

I’m encountering an issue with the BanAsync message filtering because of the ban case id in randomized alphanumerical name. I don’t think I can implement BanAsync for my upcoming release Essential Admin.

2 Likes

I believe similar to the Kick() API, some part of the message should be able to be added without filtering.

For example, a mod can input a ban message like "Harassment is not allowed’ and the server would process it and also append “Contact mods for an appeal” or anything of sorts.

That way, important necessary details are available to the users at the cost of moderating the developer for what they append.

Maybe something like a predefined nonscriptable Post/Premessage property in game.Players? This message would appear on ALL bans and can be moderared similarly to how devs are moderated on their text choices in games, rather than relying on real-time filtering.

1 Like

yeah, my ban system also uses an event id.

stripping it out sucks, but for permabans it’s not really needed, but for normal ones the message is tagged. i use a truncated sha1 so stuff like “12f3b6e4” trips the filter. even stuff like “You are banned for 30 day(s)” is tagged due to numbers for some reason, really stupid.

maybe the sha1 is detected as a possible discord invite code?

3 Likes

Probably the sha1 id or numbers most likely (Roblox moderation might think it’s a phone number you’re sharing). I don’t think the ban message variables–status codes, moderator name and id, and start/end date have to do with the BanAsync message being filtered, also excluding the reason of the ban.

1 Like

Actually in regards to the ban message, I thought that I allowed the admin system to use the settings-configured ban message for BanAsync message, but actually a pre-defined ban message due to very strict filtering of course.

Here’s the open filter BanAsync message that Essential was suppose to show:

	[Essential Ban 11002] Case Id: eb4cfe1aeae317e8735bbfd0c335884c Moderator Id: 327713710 Contact the in-game administrators for ban appeal or the full details of your Universal ban

As a result, the client who received the ban only sees this:

    #########################################################################

Strange.

1 Like

Could you create a bug report with some sample text that got filtered? I’m happy to look into our filter settings. Unfortunately, sometimes the text filter team makes global changes and things regress.

1 Like

Could you create a bug report as well? I want to chase down these text filter bugs.

2 Likes

This can be accomplished with DataStore API.

1 Like

It seems I still find loopholes in the alt account detection. Just recently, I encountered a case of an exploiter in my game, and it appears they managed to create a similar-named account and exploit my game again.


1st account (7590335268) : KNTOLSUPERBIG - Roblox
2nd account (7590499366) : KNTOLSUPERBIGGER - Roblox

1 Like

This feature needs a complete overhaul. The current method of detecting alt accounts is hardly effective and doesn’t merit its current status as a solution to helping developers moderate their games successfully.

6 Likes

Is this feature coming? I would like to give Private Server admins a way to Ban Players from there server without having to use a DataStore for this.

1 Like

Let’s say I want to see if a player is banned from a certain subplace in my universe. How would i go about that?

1 Like

The alt detection is basically non-existant. An exploiter was able to join with a brand new account just minutes after their other account was banned and the system detected nothing. I tested this on my account and then created a brand new account, same IP, same device, and it let me into the experience just fine. Whatever mechanism is behind this “alt detection”, if you can even call it that, is literally useless and very uneffective. Was very excited for this feature. Do better, Roblox.

8 Likes

This has been ignored for months. It would be nice if they at least said “Hey, we’re aware this tool is completely useless currently and we’re redoing the entire system to better combat repeat offenders” but it just seems forgotten, just like the rest of their non-functioning anti-exploit measures. Really such a letdown the way this has been handled.

2 Likes

truly an effective anti alt system (theres another page of this btw)

4 Likes

Is there a way to allow other individuals (I guess we can call them collaborators) to access the Ban API?

1 Like