roblox-explorer

Installation
SKILL.md

Roblox Instance Exploration

When using roblox_eval to explore instance trees, use these token-efficient patterns.

Principles

  1. Return tables, not prints - return x not print(x)
  2. Use short variable names - local r={} not local results={}
  3. One-liners when possible - Avoid verbose loops
  4. GetDescendants > recursive - Built-in is faster
  5. GetFullName for paths - Easy to trace back

Quick Patterns

Installs
1
First Seen
Jan 30, 2026
Security Audits
roblox-explorer — taozhuo/game-dev-skills