mass_create_objects_with_properties
Batch-create multiple Roblox objects with specific properties and parent instances in Roblox Studio using this MCP server tool, streamlining game development workflows.
Instructions
Create multiple objects at once with initial properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objects | Yes | Array of objects to create with properties |
Input Schema (JSON Schema)
{
"properties": {
"objects": {
"description": "Array of objects to create with properties",
"items": {
"properties": {
"className": {
"description": "Roblox class name",
"type": "string"
},
"name": {
"description": "Optional name for the object",
"type": "string"
},
"parent": {
"description": "Path to the parent instance",
"type": "string"
},
"properties": {
"description": "Properties to set on creation",
"type": "object"
}
},
"required": [
"className",
"parent"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"objects"
],
"type": "object"
}