Enable HTTP Service

AntiGamingChair requires HTTP Service to communicate with our authentication API and receive real-time threat updates.

AGC will not work if you do not have 'Allow HTTP Requests' and 'Enable Studio Access to API Services' enabled; this is due to our authentication system requiring external requests to our API.

Steps to access Experience Settings

File → Experience Settings → Security Tab within Experience Settings

Required Settings

  • Enable "Allow HTTP Requests"
  • Enable "Enable Studio Access to API Services"
Both settings must be enabled for AntiGamingChair to function properly.

Configuration

AntiGamingChair uses a simple ModuleScript-based configuration system to enable or disable specific detection modules. Configure your anti-cheat to match your game's needs.

Configuration Example
AntiGamingChair.Detections = {
    Executor = {
        DrawingLibrary          = true,
        InjectionDetected       = true,
        RemoteSpy               = true,
    },
    Environment = {
        ScriptExecution         = true,
        UntrustedServices       = true,
        ForeignFFlags           = true,
    },
    LimbResizing = {
        LimbResize              = true,
        LimbTeleportation       = true,
        FiretouchInterest       = true,
    },
    ClientIntegrity = {
        Saveinstance            = true,
    },
}
Note: Set any detection to false to disable it. All detections are enabled by default for maximum protection.

Drawing Library

Executor High Severity Beta

Detects the use of external drawing libraries commonly used by exploit executors to render ESP boxes, tracers, and other visual cheats.

Injection Detection

Executor Critical Severity

Performs internal checks to detect foreign injection into the Roblox client using a wide variety of vulnerabilities.

Remote Spy

Executor High Severity

Detects remote spy tools that intercept and log RemoteEvent and RemoteFunction calls.

Script Execution

Environment Critical Severity

Uses common vulnerabilities seen in poorly written executors to detect script execution.

Untrusted Services

Environment Medium Severity

Identifies access to Roblox services that shouldn't be accessible from the client, indicating potential exploit activity.

Foreign FFlags

Environment High Severity Beta

Detects modified FFlags (feature flags) that cheaters use to enable hidden Roblox features or bypass client-side restrictions.

Limb Resize

Limb Resizing High Severity

Detects when players artificially resize their character's limbs to gain unfair hitbox advantages or reach exploits.

Limb Teleportation

Limb Resizing Critical Severity

Identifies when individual limbs are teleported to unnatural positions, a common technique for reach hacks and hitbox exploits.

Firetouchinterest

Limb Resizing High Severity

Detects abuse of the firetouchinterest function, which cheaters use to trigger touch events without physical contact.

Saveinstance

Client Integrity Medium Severity

Detects the use of saveinstance functions that allow cheaters to dump your entire game's client-side code and assets.

Recommended: Keep this detection enabled to protect your game's intellectual property.