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

TARGETING / WEAPON SYSTEM

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
SmartGunServer.luauFULL LUAU SCRIPT

Loading script...

SYSTEM / 02

Musket System

WEAPON SYSTEM / SERVER CORE

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
MusketSystemCore.luauFULL LUAU SCRIPT

Loading script...

SYSTEM / 03

Ash Tool

PLAYER INTERACTION / CLIENT-SERVER

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
AshToolServer.luauFULL LUAU SCRIPT

Loading script...

04Ash Tool ClientTarget selection, local feedback, and server requests.AshToolClient.luau
AshToolClient.luauFULL LUAU SCRIPT

Loading script...

SYSTEM / 04

SentinelAC

MODULAR ANTI-CHEAT / SERVER SECURITY

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.

01CORE

Shared validation, scoring, rate limits, bans, and remote protection.

02HOOKS

Plugins can use Init, PreCheck, PostCheck, OnFlag, and player lifecycle hooks.

03EXPANSION

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
SentinelAC.luauFULL LUAU SCRIPT

Loading script...

06Flight Integrity GuardMovement checks for snapping, hovering, air driving, and impossible velocity.FlightIntegrityGuard.luau
FlightIntegrityGuard.luauFULL LUAU SCRIPT

Loading script...

07Method Abuse GuardRandomized canary remotes and malformed payload burst detection.MethodAbuseGuard.luau
MethodAbuseGuard.luauFULL LUAU SCRIPT

Loading script...

08Server Cost GuardQuarantines remotes when repeated requests trigger expensive server work.ServerCostGuard.luau
ServerCostGuard.luauFULL LUAU SCRIPT

Loading script...