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 tool to export selected GDScript files into a single text file or copy them to clipboard.
Script Exporter
A simple Godot editor plugin that allows you to select multiple GDScript files and export their contents into a single text file or copy them directly to your clipboard.
This is very useful for:
- Sharing multiple scripts with others easily.
- Preparing code snippets for tutorials or articles.
- Feeding a collection of scripts to an AI assistant.
Features
- Grouped View: View scripts grouped by their folders.
- Flat View: View all project scripts in a single list.
- Select All: Quickly select or deselect all scripts.
- Export to File: Concatenates all selected scripts into a single
output_scripts.txt
file in your project root (res://
). - Copy to Clipboard: Copies the content of all selected scripts to the clipboard.
- Markdown Formatting: Optionally wrap the code for each script in a
gdscript
markdown block.
How to Use
- Install plugin from Godot Asset Library or by copying
addons/ScriptExporter
folder into your project. - Enable plugin in
Project -> Project Settings -> Plugins
. - A new menu item "Export Scripts..." will appear under "Tools" menu in the top editor bar.
- Click on it to open the Script Exporter window.
- Select cripts you want to export.
- Choose your desired options (like "Wrap in Markdown").
- Click "Save to File" or "Copy to Clipboard".
Acknowledgements
This plugin was inspired by the idea and great UI of the Scene Tree as Text plugin by Cyryl Szczakowski.
Both plugins complement each other perfectly. While Scene Tree as Text exports the structure of your scenes, Script Exporter provides the code that brings those scenes to life. Using them together is a great way to get a complete snapshot of your project for sharing or analysis.
License
This plugin is available under the MIT license. See the LICENSE
file for more details.
A tool to export selected GDScript files into a single text file or copy them to clipboard.
Reviews
Quick Information

A tool to export selected GDScript files into a single text file or copy them to clipboard.