delete_object
Remove specific Roblox object instances by specifying their instance path using the MCP server integrated with Roblox Studio. Streamlines object management within projects.
Instructions
Delete a Roblox object instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instancePath | Yes | Path to the instance to delete |
Input Schema (JSON Schema)
{
"properties": {
"instancePath": {
"description": "Path to the instance to delete",
"type": "string"
}
},
"required": [
"instancePath"
],
"type": "object"
}