codex: stuff

This commit is contained in:
2026-01-06 09:40:14 +02:00
parent 8ad642239f
commit 7969565cca
8 changed files with 466 additions and 41 deletions

View File

@@ -1,8 +1,13 @@
This project is a Minecraft-like voxel system for Roblox using Rojo. The server
is authoritative over chunks and blocks. Clients only handle input, UI, and
requests. Clients must never create or destroy blocks directly. The server must
validate distance, block type, and target. Shared modules must not reference
Roblox services.
# Agents
Keep in mind that to replicate anything across the client-server model or to
write to any instance you must use serial luau
- This project is a Minecraft-like voxel system for Roblox using Rojo.
- The server is authoritative over chunks and blocks.
- Clients only handle input, UI, and requests.
- Clients must never create or destroy blocks directly.
- The server must validate distance, block type, and target.
- Shared modules must not reference Roblox services.
Note: To replicate anything across the client-server model or to write to any
instance you must use serial Luau.
The main AGENTS.md file is in the `.codex` folder!