Skip to content

rbxrulebreakers/list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Caution

The only official place to get the rbxrulebreakers list is https://github.com/rbxrulebreakers/list. Any other websites offering downloads or claiming to be us are not controlled by us.

Warning

We are not Roblox employees! If you require assistance from Roblox then click here or call roblox (United States Number) at 888-858-2569.

Important

This repository is created for informational, educational, moderation, and safety purposes only. This repository is not intended to target, harass or bully any individual mentioned. We strongly condemn harassment, bullying, raiding and any form of online misconduct. Users are reminded to engage respectfully and responsibly.

Adudu21's Roblox Rule Breakers

Discord Server

Roblox Client Exploiters and Terms of Use/Community Standards Violators List

A list of users which violate the rules of Roblox (that could be considered serious violations) so you can prevent them from joining your Roblox Game(s)

âť—Reports and Appealsđź“„

Tip

Before requesting for a user to be added into the list, it's recommended to also use Roblox's Reporting Features, if you're within the EU, you may visit https://www.roblox.com/illegal-content-reporting then afterwards report the user there (EU Reports have a higher chance to be accepted than regular roblox reports).

You can report and appeal within the Discord Server.

Caution

Reports, Appeals or such are carefully and fairly reviewed. Tickets that do not follow the guidelines may result getting ticket blacklisted or such.

Note

Terminated users might be removed from the list, if a user was removed because of being terminated but is now unterminated, you can request for them to be readded into the list.

❓Quick FAQ

Q: "You're adding everyone into the list!"

A: We do not "add everyone" into the list, we only add users which have Exploited in Roblox Experiences ("Games"), ERP'ed or such. Users are flagged for review if they are friends with any accounts that are within the list. If you really do not trust such a list, you are not forced to use it.

Q: What is this for?

A: To prevent individuals that can harm your playerbase or such.

Q: Why and when did this exist?

A: The RbxRuleBreakers List has been active since November 17, 2024 (this is the new Repository). The reason why this was created is because adudu21 had gotten tired of how many rule breakers exist that were not moderated by Roblox and as-well was inspired by MFD (another project/organization, created by Ruben).

Tip

You may find more frequently asked questions within the Discord Server.

General information

This is a list with Roblox UserId(s), Roblox UserId(s) are PUBLIC INFORMATION.

This list is made for Roblox Game Developers to use it.

Official Roblox Community/Group for rbxrulebreakers is https://www.roblox.com/communities/35633326/rbxrulebreakers

For testing purposes, the official account for RbxRuleBreakers is within the list https://www.roblox.com/users/8027214461/profile.

Usage

Note

Join the Discord Server before using the list for your game(s).

Important

These are examples. The game must have HTTP Requests Enabled otherwise it will not work.

Tip

If your game has at-least 500K Visits and 1K+ DAU ("Daily Active Users"), you can create an inquiry within the Discord Server for it to be listed in https://devforum.roblox.com/t/adudu21s-rbxrulebreakers-list/3506160.

Fetch list

Note

Outputs the list.

print(game:GetService("HttpService"):GetAsync("https://raw.githubusercontent.com/rbxrulebreakers/list/main/users"))

Using the list

Note

Prevents users which are within the list from joining your Roblox Game

--// Services
local http = game:GetService("HttpService")
local plrs = game:GetService("Players")

--// Vars
local IsInStudio,fetching,list = game:GetService("RunService"):IsStudio(),nil,nil

--// Functions

-- Fetches the latest list of https://github.com/rbxrulebreakers/list
@native
local function FetchList()
   if fetching then while task.wait(1) do if not fetching then return end end end
   fetching=true
   local s,r,t=nil,nil,3
   repeat
      s,r=pcall(function()
         return http:GetAsync("https://raw.githubusercontent.com/rbxrulebreakers/list/main/users",true)
      end)
      if not s then
         if string.match(r,"exceeded") then warn("RATELIMIT. Waiting 30 seconds...")task.wait(30)else t=-1 task.wait(1)end
      end
   until s or t == 0
   if s then list=r end
   fetching=nil
end

-- Checks if the user is on the list.
@native
local function IsOnList(id)
   return list and string.match(list,`,{id},`)
end

--// When new players join
plrs.PlayerAdded:Connect(function(p)
   local id = p.UserId
   --// Is User on list? Put this somewhere that its ok if the code yields
   if not list then FetchList()end
   if IsOnList(id) and not IsInStudio then
      --// Kick the rule breaker from the game
      return p:Kick([[You have violated Roblox's ToU ("Terms of Use")/Community Standards or such.

Moderating any users associated with Roblox Rule Breakers (RRB) does not remove you from the list.

Before appealing, mention the game which you were kicked from because of this.

To appeal, join the Roblox Rule Breakers (RRB) Communications server (.gg/U7JstgHdyg).]])
   end
end)

--// Update list cache every hour
task.spawn(function()
   while task.wait(3600) do
      FetchList()
   end
end)

About

A list of users that have violated the Community Standards/Terms of Use of Roblox (RRB List)

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks