roblox-explorer
Installation
SKILL.md
Roblox Instance Exploration
When using roblox_eval to explore instance trees, use these token-efficient patterns.
Principles
- Return tables, not prints -
return xnotprint(x) - Use short variable names -
local r={}notlocal results={} - One-liners when possible - Avoid verbose loops
- GetDescendants > recursive - Built-in is faster
- GetFullName for paths - Easy to trace back