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("Sigma Skibidi Hax: Successfully Reported " .. v.Name .. " for " .. reason.category) end end end