diff --git a/source/_docs/blueprint.markdown b/source/_docs/blueprint.markdown
index d97d4f95c24..a6444c141d9 100644
--- a/source/_docs/blueprint.markdown
+++ b/source/_docs/blueprint.markdown
@@ -9,14 +9,20 @@ If you're looking on how to use blueprints, see the [automation documentation](/
-An automation blueprint is an automation configuration with certain parts marked as configurable. This allows users to create multiple automations based on the same blueprint, with each having its own configuration.
+
+
+While the tutorial only shows how to create an automation blueprint, scripts also support blueprints in the same way.
+
+
+
+A blueprint is a script or automation configuration with certain parts marked as configurable. This allows users to create multiple scripts or automations based on the same blueprint, with each having its own configuration.
Imagine a blueprint that controls a light based on motion, that allows you to configure the motion sensor to trigger on, and the light to control. It is now possible to create two automations that each have their own configuration for this blueprint and that act completely independent, yet are based on the same automation configuration.
-This is an advanced feature and requires knowledge of writing [automations in YAML](/docs/automation/yaml/).
+This is an advanced feature and requires knowledge of writing [automations](/docs/automation/yaml/) and [scripts](/docs/scripts/) in YAML.
-### [Tutorial: Create a blueprint »](/docs/blueprint/tutorial/)
+### [Tutorial: Create an automation blueprint »](/docs/blueprint/tutorial/)
diff --git a/source/_docs/blueprint/tutorial.markdown b/source/_docs/blueprint/tutorial.markdown
index c9305a29e89..fc5ceb5ce5e 100644
--- a/source/_docs/blueprint/tutorial.markdown
+++ b/source/_docs/blueprint/tutorial.markdown
@@ -1,9 +1,15 @@
---
-title: "Blueprint tutorial"
-description: "Tutorial on creating a blueprint."
+title: "Automation blueprint tutorial"
+description: "Tutorial on creating an automation blueprint."
---
-In this tutorial, we're going to create a blueprint that controls a light based on a motion sensor. We will do this by taking an existing automation and converting it to a blueprint.
+
+
+While the tutorial only shows how to create an automation blueprint, scripts also support blueprints in the same way.
+
+
+
+In this tutorial, we're going to create an automation blueprint that controls a light based on a motion sensor. We will do this by taking an existing automation and converting it to a blueprint.
For this tutorial, we use a simple automation. The process for converting a complex automation is not any different.