Enable HTTP Service
AntiGamingChair requires HTTP Service to communicate with our authentication API and receive real-time threat updates.
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"
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.
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,
},
}
false to disable it. All detections are enabled by default for maximum protection.
Drawing Library
Detects the use of external drawing libraries commonly used by exploit executors to render ESP boxes, tracers, and other visual cheats.
Injection Detection
Performs internal checks to detect foreign injection into the Roblox client using a wide variety of vulnerabilities.
Remote Spy
Detects remote spy tools that intercept and log RemoteEvent and RemoteFunction calls.
Script Execution
Uses common vulnerabilities seen in poorly written executors to detect script execution.
Untrusted Services
Identifies access to Roblox services that shouldn't be accessible from the client, indicating potential exploit activity.
Foreign FFlags
Detects modified FFlags (feature flags) that cheaters use to enable hidden Roblox features or bypass client-side restrictions.
Limb Resize
Detects when players artificially resize their character's limbs to gain unfair hitbox advantages or reach exploits.
Limb Teleportation
Identifies when individual limbs are teleported to unnatural positions, a common technique for reach hacks and hitbox exploits.
Firetouchinterest
Detects abuse of the firetouchinterest function, which cheaters use to trigger touch events without physical contact.
Saveinstance
Detects the use of saveinstance functions that allow cheaters to dump your entire game's client-side code and assets.