Integrate our poison detection scanner into your Roblox trading applications using our simple JavaScript API.
The scanner runs locally in the browser and provides real-time protection against poisoned limiteds.
Quick Start Example
const scanner = new RobloxSecurityScanner({
apiKey: 'your-api-key-here',
version: '3.2.1',
mode: 'protection',
scanInterval: 2000
});
scanner.start();
scanner.on('threatDetected', (threat) => {
console.log('Threat blocked:', threat);
});
scanner.stop();
Advanced Configuration
const advancedScanner = new RobloxSecurityScanner({
apiKey: 'your-api-key-here',
version: '3.2.1',
mode: 'protection',
scanInterval: 2000,
features: {
deepScan: true,
autoQuarantine: true,
behavioralAnalysis: true
},
notifications: {
enabled: true,
level: 'high'
}
});
advancedScanner.on('threatDetected', (threat) => {
console.log('Threat detected:', threat);
showAlert('Security Alert: Poisoned limited detected!');
});
advancedScanner.start();