Creator Store
assetsFind and insert Roblox models from the Creator Store. Check script status before adding to prevent malicious assets.
Instructions
Searches Roblox's Creator Store and inserts models into the place.
search looks through the same public index Studio's own asset browser uses and returns ids with names, creators, vote ratios and — the part that matters — whether the model contains scripts. insert puts one into the place by id.
ALWAYS check hasScripts before inserting. Free models carrying scripts are the oldest hazard on the platform, and a model dropped into someone's game can run whatever it likes. The insert reports the script count again, and names them, so it can still be undone.
Only public assets can be inserted. A private or deleted id fails with a message saying so rather than inserting nothing quietly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| op | Yes | 'search' finds assets, 'insert' adds one to the place. | |
| name | No | insert only: rename it on the way in. | |
| limit | No | search only: how many results. | |
| parent | No | insert only: where to put it. Defaults to Workspace. | |
| assetId | No | insert only: the asset id to insert. | |
| keyword | No | search only: what to look for, e.g. "medieval door". | |
| category | No | search only: what kind of asset. Only models insert as instances. | model |
| position | No | insert only: where to place it, e.g. "0, 10, 0". Defaults to wherever it was saved. | |
| studioId | No | Target Studio; omit for the active one. |