MaxproGlitcher

Script Auto Report For all players and game

Nov 13th, 2025
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. -- "Auto Report For all players and game"
  2.  
  3. getgenv().enabled = true
  4. local reasons = {
  5. {category = "Bullying", comment = "called me fat"},
  6. {category = "Swearing", comment = "used bad words"},
  7. {category = "Cheating", comment = "hacking the game"},
  8. {category = "Scamming", comment = "tried to scam my items"},
  9. {category = "Off-platform links", comment = "tried directing me off platform and sending me third party shops to buy items."},
  10. {category = "Personal Information", comment = "threatened to leak my address off platform if i didnt follow his actions"}
  11. }
  12.  
  13. while getgenv().enabled do
  14. for i, v in pairs(game.Players:GetChildren()) do
  15. task.wait(0.03)
  16. if v.Name ~= game.Players.LocalPlayer.Name then
  17. local reason = reasons[math.random(1, #reasons)]
  18. game:GetService("Players"):ReportAbuse(v, reason.category, reason.comment)
  19. print("You're lucky you got banned!!! Hax: Successfully Reported " .. v.Name .. " for " .. reason.category)
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment