-
Notifications
You must be signed in to change notification settings - Fork 0
Home
VANITY-ANTICHEAT is a robust anti-cheat solution designed to enhance the security of your game by preventing cheating and exploiting. Developed by Luvmadison, this script includes various mechanisms to detect and ban players engaged in suspicious activities.
- Features
- Installation
- Configuration
- Usage
- Cheat Detection Methods
- Network Optimization
- Update Checking
- Contributing
- License
- Speed Limit Enforcement: Detects and bans players who exceed defined speed limits.
- Damage Threshold Monitoring: Identifies unauthorized damage inflicted by players.
- Jump Height and Gravity Checks: Monitors for abnormal jump heights and manipulated gravity.
- Teleportation Detection: Flags players who teleport beyond the allowed distance.
- Heartbeat Monitoring: Prevents heartbeat interference, which is often used by exploiters.
- Trigger Threshold Control: Limits excessive triggering of events to prevent exploitation.
- Discord Integration: Sends alerts to a Discord webhook for suspicious activities.
- Player Banning: Automatically bans players based on predefined rules.
- Clone the repository or download the script files.
- Open your Roblox Studio project.
- Insert the scripts into your game's server script area.
- Adjust the configuration settings according to your needs.
In the script, you can modify the following settings:
local DISCORD_WEBHOOK_URL = "https://discord.com/api/webhooks/YOUR_WEBHOOK_URL" -- Replace with your actual webhook URL
local SPEED_LIMIT = 50 -- Maximum allowed speed
local DAMAGE_THRESHOLD = 100 -- Maximum allowed damage
local TELEPORT_DISTANCE = 50 -- Maximum allowed teleport distance
local JUMP_HEIGHT_LIMIT = 100 -- Maximum allowed jump height
local GRAVITY = Workspace.Gravity -- Expected gravity in the game
local HEARTBEAT_INTERVAL = 5 -- Interval for heartbeat checks in seconds
local TRIGGER_THRESHOLD = 10 -- Max allowed trigger per second for critical actions
local BAN_DURATION = 30 * 24 * 3600 -- Ban duration in seconds (e.g., 30 days)
Make sure to replace YOUR_WEBHOOK_URL
with the actual URL of your Discord webhook.
Once configured, the script automatically starts monitoring players as they join the game. It will perform checks on their actions and apply the necessary bans if cheating is detected.
The script monitors player speed and jump height to ensure they stay within defined limits. Exceeding these limits will result in an automatic ban.
Players attempting to teleport beyond a specified distance will be flagged and banned for cheating.
The anti-cheat system tracks the player's heartbeat to detect any interference. If the heartbeat stops unexpectedly, the player will be banned.
Any player causing damage above the defined threshold will be logged and banned.
The NETWORK OPTIMIZATION SCRIPT FOR VANITY-ANTICHEAT improves communication between server and client scripts by measuring latency and optimizing player data retrieval. It ensures that player connections are maintained effectively to minimize lag.
- Latency Measurement: Measures the latency for each player on connection.
- Optimized Data Retrieval: Retrieves player data efficiently to ensure smooth gameplay.
The script checks for the latest version on GitHub to ensure you are running the most up-to-date version of VANITY-ANTICHEAT.
Contributions are welcome! Please fork the repository and submit a pull request for any enhancements or bug fixes.
This project is licensed under the terms of the MIT License. See the LICENSE file for details.
Feel free to customize this content further based on your specific needs or additional features that you want to highlight!