MADE BY kanomi13
FEATURE:
- BAN PEOPLE
- .
- NOTE:
- Get an account in the game with an auto report script.
- THIS IS FOR EDUCATIONAL PURPOSES AND SINCE THE DUMB DEVS OBFUSCATED THEIR METHOD 2 TIMES.
- (MAY GET YOU HWID BANNED)
- I AM NOT RESPONSIBLE FOR ANYTHING BAD THAT HAPPENS.
- It just uses chatservice to make the player say stuff.
DOWNLOAD:
https://www.mediafire.com/file/50q1yfqjkrddzoh/autoban.rbxl/file
SCRIPT:
local safe = {game.Players.LocalPlayer.Name;} -- put usernames in here
local renderStepped = game:GetService("RunService").RenderStepped
local players = game:GetService("Players")
renderStepped:Connect(function()
for _,v in pairs(players:GetPlayers()) do
if v.Name ~= players.LocalPlayer.Name and not table.find(safe, v.Name) then
players:ReportAbuse(v, "Swearing", "Said a lot of swear words.")
end
end
end)