Roblox networking: remotes, server authority, security is a Roblox Suite skill — Remotes, server authority, network ownership, exploit defenses, capabilities. It belongs to the Core domain. What it covers: RemoteEvent/RemoteFunction vs Bindable equivalents, and RunService execution contexts.. Server authority as the foundation — validation and rate-limiting on every request.. Common exploit vectors and capability-based access control.. Current-vs-deprecated guidance: Stop: Client-side economy and stat writes. Use: Server-authoritative validation on every purchase and save.. The official sources for this skill are taken verbatim from its SKILL.md and point to the Roblox Engine API Reference and related create.roblox.com documentation. The full reference set is available in the references/ directory on GitHub (https://github.com/nonlooped/roblox-suite/tree/main/roblox-networking/references).
Roblox networking: remotes, server authority, security
Complete coverage of the Roblox client-server model: RemoteEvent and RemoteFunction versus Bindable equivalents, RunService execution contexts, network ownership of assemblies, and server authority as the foundation for secure experiences. Includes common exploit vectors and the defensive patterns that stop them — validation, rate limiting, source-of-truth tables, and capability-based access control.
What it covers
- RemoteEvent/RemoteFunction vs Bindable equivalents, and RunService execution contexts.
- Server authority as the foundation — validation and rate-limiting on every request.
- Common exploit vectors and capability-based access control.
What you stop doing
-
Client-side economy and stat writes
Server-authoritative validation on every purchase and save
Key sources
Taken verbatim from this skill's "Official sources" block. The full reference set lives in references/ on GitHub .