This is a trick on how to make words or sentences to type by themselves without you having to type them.
In this example, I'm going to make the word 'Hello?' to type by itself.
Step 1
Open a new blank Notepad.
Step 2
Type the following coding in the new blank Notepad (or just copy & paste them):
Set a = wscript.CreateObject ("wscript.shell")
a.run "Notepad"
wscript.sleep 1500
a.AppActivate "Notepad"
a.Sendkeys "place any letter/alphabet here"
wscript.sleep 500