create_object
Generate a new Roblox object instance by specifying its class name and parent path, enabling efficient creation of basic objects within Roblox Studio.
Instructions
Create a new Roblox object instance (basic, without properties)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
className | Yes | Roblox class name (e.g., "Part", "Script", "Folder") | |
name | No | Optional name for the new object | |
parent | Yes | Path to the parent instance (e.g., "game.Workspace") |
Input Schema (JSON Schema)
{
"properties": {
"className": {
"description": "Roblox class name (e.g., \"Part\", \"Script\", \"Folder\")",
"type": "string"
},
"name": {
"description": "Optional name for the new object",
"type": "string"
},
"parent": {
"description": "Path to the parent instance (e.g., \"game.Workspace\")",
"type": "string"
}
},
"required": [
"className",
"parent"
],
"type": "object"
}