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

A Godot Editor plugin that simulates typing text in the script editor, allowing automatic pasting and controlled text insertion at a custom speed.
Godot Typing Automation Plugin
A Godot Editor plugin that simulates typing text in the script editor, allowing automatic pasting and controlled text insertion at a custom speed.
Table of Contents
Features
- Automatically types text from the clipboard into the script editor.
- Controlled typing speed (characters per minute configurable via
CPM
constant). - Ability to stop typing instantly with the
Escape
key. - Detects main screen changes and works only when the Script editor is active.
- Connects seamlessly to Godot's script editor events.
Installation
- Copy the plugin folder into your Godot project under
res://addons/
. - Enable the plugin in Project Settings → Plugins.
- The plugin will automatically start monitoring the script editor.
Usage
- Press Ctrl + Shift + V while in the script editor to paste clipboard text and simulate typing.
- Press Escape to immediately stop typing.
- Adjust the typing speed via the
CPM
constant in the plugin script:
const CPM: int = 10000 # Adjust typing speed
How It Works
- The plugin connects to the editor_script_changed signal of the Godot script editor.
- When text is pasted using the hotkey, it starts inserting characters one by one.
- A timer controls the speed of insertion to simulate real typing.
- Typing can be stopped at any time using the Escape key.
Configuration
- CPM (Characters per minute): Higher values = faster typing.
- Hotkeys: Modify _input(event: InputEvent) function to customize shortcuts.
Notes
- The plugin currently works only in the Script editor.
- Ensure that the Script editor is visible for the typing simulation to work correctly.
License
This project is licensed under the MIT License.
A Godot Editor plugin that simulates typing text in the script editor, allowing automatic pasting and controlled text insertion at a custom speed.
Reviews
Quick Information

A Godot Editor plugin that simulates typing text in the script editor, allowing automatic pasting and controlled text insertion at a custom speed.