roblox-building
Installation
SKILL.md
When to Load
Load when building physical geometry in Roblox Studio via MCP (execute_luau / run_code) — single objects, room-scale structures, or multi-zone maps. Covers CSG operations, spatial coordination, and platform quirks. See references/full.md for complete patterns, build process, and validation scripts.
Quick Reference
MCP Statelessness (CRITICAL)
Every MCP call is a blank slate. Re-acquire refs at start of EVERY call. Never guess coords from chat — READ from workspace first.
local model = workspace:FindFirstChild("MyBuild")
if not model then model = Instance.new("Model"); model.Name = "MyBuild"; model.Parent = workspace end
Player Scale
Player ~5 | Door: 4w×7h | Ceiling: 10-14 (rooms) | Counter: 3.5-4 | Seat: 1.5 | Path: 6+ wide