General Detection

General detections that don't fall into a niche category

Error Catching

Error Catching is a great way to mitigate exploiters. If enabled, it will listen for errors that cannot be traced back to a script. If it's triggered, the player will be kicked and the owner will receive a log containing the error that triggered the detection.

{
    ErrorCatching = true; -- This will trigger for any untraced errors.
}
{
    ErrorCatching = {"Carbon_CEngine"}; -- This will whitelist any errors containing "Carbon_CEngine"
}

Environment Detection

Environment Detection is going to protect you against any scripts that attempt to tamper with your environment without using proper protection first. This detection is highly recommended and will not false-positive in any circumstance.

Last updated

Was this helpful?