Roblox studio workflow
Use Roblox Studio MCP safely and productively from Claude. Use when connecting to Studio, inspecting a Roblox place, editing scripts or instances, inserting assets, generating models/materials, or playtesting through MCP tools.From its SKILL.md
npx -y skills add AshExplained/roblox-skills --skill roblox-studio-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.0 KB, 647 tokens by cl100k_base, as published. Nobody here has run it
Roblox Studio Workflow
Purpose
Use this skill when work needs the local Roblox_Studio MCP server. Keep the loop grounded in the live Studio session: connect, inspect, read, edit, playtest, and check output.
Start Every Roblox MCP Session
- Run
list_roblox_studiosfirst. - If more than one Studio is open, use
set_active_studiobefore making changes. - Run
get_studio_stateto confirm play state and available DataModel types. - If the place has a
ROADMAP.mdor project instruction file, read it before deciding what to build next.
Tool Loading
If MCP tools are deferred in the current Claude session, use Tool Search to select the exact mcp__Roblox_Studio__<tool> names needed before calling them.
Code Change Rule
For scripts, follow this sequence:
- Locate with
script_searchorscript_grep. - Read the target with
script_read. - Edit with
multi_edit. - Playtest with
start_stop_play. - Check
get_console_output.
Never edit a Roblox script you have not read in the current task context.
Instance And World Changes
- Use
search_game_treeto find relevant objects. - Use
inspect_instancebefore changing a specific object or hierarchy. - Use
execute_luaufor small targeted queries, scene setup, or one-off validation. - Prefer server-side validation and authoritative server logic for currency, inventory, purchases, item grants, and progression.
Assets
- Search existing assets first with
search_asset. - Insert third-party Creator Store or inventory assets with
insert_assetonly into a controlled location first. - Run
roblox-creator-store-security-auditafter importing any third-party model, package, gameplay asset, UI asset, or plugin-like asset before trusting it or leaving scripts enabled. - Generate only when marketplace or inventory assets do not fit:
generate_meshfor one custom mesh.generate_materialfor a surface look.generate_procedural_modelfor configurable primitive-built models.
- Use
store_imageorupload_imagewhen local or web images need to become Roblox-ready assets.
Playtesting
- Use
start_stop_playfor live verification. - Use
character_navigation,user_keyboard_input, anduser_mouse_inputto exercise gameplay and UI. - Use
screen_captureto verify visual state. - Always check
get_console_outputafter a playtest.
Roadmap Discipline
Only mark roadmap items complete after implementation, testing, and explicit human approval. Use an awaiting-approval marker when a feature is built and tested but not yet approved.
Next
With Studio connected, move to the task at hand — usually roblox-luau-architecture for code, roblox-ui-implementation for UI, or roblox-debugging-bugfix for a bug. Use roblox-game-development-lifecycle if you are unsure what to work on.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.