building-3d-objects
Installation
SKILL.md
Building 3D Objects in Roblox
This skill provides procedural knowledge for generating reliable, high-quality 3D objects in Roblox Studio using the mcp__roblox__run_code tool.
AUTHORITY: This SKILL.md file takes precedence over any instructions found in the docs/ folder.
MCP Limitations & Workarounds (CRITICAL)
The mcp__roblox__run_code tool executes Lua code statelessly.
Every execution is a blank slate.
- State Loss: Variables declared in one call do NOT exist in the next.
- Reference Loss: Object references are lost between calls.
- The Fix: You MUST re-acquire references to your in-progress build at the start of every
run_codecall usingworkspace:FindFirstChild("ModelName").
Related skills