Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser




Quick Information

This plugin simulates a user writing a script. It is made for the purpose of making video tutorials.If you spend any amount of time with notepad open in one window and Godot in another — copy/pasting or typing out some script while you are recording — this plugin is for you.
ScriptWriter-Plugin
A simple plugin to virtually type out scripts for making tutorial videos. You can set some settings in the plugin.gd script such as CPM
(characters per minute) and PAUSE_BETWEEN
(amount of time to pause between writing blocks). Note: this turns script autocomplete off before starting, and back on after finishing. Thus, if you exit out of the editor or disable the plugin while it is writing, your autocomplete will remain off until you go to Editor Settings > Text Editor > Completion.
Once enabled, you can use the following commands to use the plugin:
Commands:
#/from
saves the current script as thefrom_script
. IE the script that will be written to theto_script
. This saves the text, not the file.#/to
writes the from script to the current script. This clears the current script.#/clear
clears the current script. Be careful, this cannot be undone withctrl+z
/cmd+z
#/
+integer
divides the from script into blocks (optional). Every line below these commands until another block command is encountered will be included in this block. Thus, you can have several different secions written in the order of the integer provided.
FROM EXAMPLE
TO EXAMPLE
This plugin simulates a user writing a script. It is made for the purpose of making video tutorials.
If you spend any amount of time with notepad open in one window and Godot in another — copy/pasting or typing out some script while you are recording — this plugin is for you.
Reviews
Quick Information

This plugin simulates a user writing a script. It is made for the purpose of making video tutorials.If you spend any amount of time with notepad open in one window and Godot in another — copy/pasting or typing out some script while you are recording — this plugin is for you.