IN DEPTH / 03
Inside the code.
Full Luau scripts from a few of the systems I've built. Open a system, then choose a script to read it.
SYSTEM / 01
Smart Gun
The server side of the smart weapon shown in Extra Work. This is the full script that handles the weapon and its different firing behavior.
01Smart Gun ServerServer logic for the smart weapon system.SmartGunServer.luau+
Loading script...
SYSTEM / 02
Musket System
The core script from the musket system I built during my short contract work for Police Roleplay.
02Musket System CoreThe main server core for the musket system.MusketSystemCore.luau+
Loading script...
SYSTEM / 03
Ash Tool
A client and server tool that lets a player select a nearby target and run the ash effect through server validated interaction.
03Ash Tool ServerValidation, state, and the server controlled ash sequence.AshToolServer.luau+
Loading script...
04Ash Tool ClientTarget selection, local feedback, and server requests.AshToolClient.luau+
Loading script...
SYSTEM / 04
SentinelAC
An anti-cheat framework I built around a smaller server core and separate detection plugins. The core handles shared checks, scoring, enforcement, rate limits, and remote protection. New guards can be added through the hook system, so adding another detection does not mean rewriting one massive server script.
Shared validation, scoring, rate limits, bans, and remote protection.
Plugins can use Init, PreCheck, PostCheck, OnFlag, and player lifecycle hooks.
New detection modules can be added without modifying the main anti-cheat core.
05SentinelAC Server CoreValidation, scoring, enforcement, remote binding, and plugin loading.SentinelAC.luau+
Loading script...
06Flight Integrity GuardMovement checks for snapping, hovering, air driving, and impossible velocity.FlightIntegrityGuard.luau+
Loading script...
07Method Abuse GuardRandomized canary remotes and malformed payload burst detection.MethodAbuseGuard.luau+
Loading script...
08Server Cost GuardQuarantines remotes when repeated requests trigger expensive server work.ServerCostGuard.luau+
Loading script...