diff --git a/Scripts/thank-you.ps1 b/Scripts/thank-you.ps1
new file mode 100755
index 00000000..506cd4f6
--- /dev/null
+++ b/Scripts/thank-you.ps1
@@ -0,0 +1,20 @@
+<#
+.SYNOPSIS
+	Say an answer to 'thank you'
+.DESCRIPTION
+	This script answers to "thank you" by text-to-speech (TTS).
+.EXAMPLE
+	PS> ./thank-you
+.NOTES
+	Author: Markus Fleschutz · License: CC0
+.LINK
+	https://github.com/fleschutz/PowerShell
+#>
+
+try {
+	& "$PSScriptRoot/speak-english.ps1" "It's a pleasure."
+	exit 0 # success
+} catch {
+	"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
+	exit 1
+}