Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- "Auto Report For all players and game"
- getgenv().enabled = true
- local reasons = {
- {category = "Bullying", comment = "called me fat"},
- {category = "Swearing", comment = "used bad words"},
- {category = "Cheating", comment = "hacking the game"},
- {category = "Scamming", comment = "tried to scam my items"},
- {category = "Off-platform links", comment = "tried directing me off platform and sending me third party shops to buy items."},
- {category = "Personal Information", comment = "threatened to leak my address off platform if i didnt follow his actions"}
- }
- while getgenv().enabled do
- for i, v in pairs(game.Players:GetChildren()) do
- task.wait(0.03)
- if v.Name ~= game.Players.LocalPlayer.Name then
- local reason = reasons[math.random(1, #reasons)]
- game:GetService("Players"):ReportAbuse(v, reason.category, reason.comment)
- print("You're lucky you got banned!!! Hax: Successfully Reported " .. v.Name .. " for " .. reason.category)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment