Endpoint
Parameters
The path to the parent instance where the new object will be created (e.g.,
"game.Workspace", "game.ReplicatedStorage").The Roblox class name of the instance to create (e.g.,
"Part", "Folder", "Script").Response
Returns
true if the object was created successfully.The full path to the newly created object.
The name of the newly created object.
Error message if the operation failed. Common errors include:
- Invalid path resolution
- Invalid className
Examples
Create a Part in Workspace
Create a Folder in ReplicatedStorage
Error: Invalid ClassName
Notes
- The created object will have default properties for its class
- To create an object with custom properties, use
create_object_with_properties - The object is automatically parented after creation