Create scene
scene_createCreate a new Godot .tscn scene with a chosen root node type, optionally attach a script, and assign a stable uid for referencing.
Instructions
Create a new .tscn with a chosen root node type, optionally attaching a script. Assigns a stable uid:// so other scenes can reference it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scene | Yes | Where to create it, e.g. "res://enemies/slime.tscn". | |
| script | No | Existing script to attach to the root. | |
| project | No | Godot project folder (the one with project.godot). Optional if the server was started with --project. | |
| overwrite | No | ||
| root_name | No | Root node name. Defaults to the file name. | |
| root_type | No | Root node class, e.g. Node2D, Node3D, Control, CharacterBody2D. | Node2D |