@trumso02 welcome to the forum. There are a couple of ways you can do this, as long as you keep in mind that you are never going to keep a determined person out of your script. If it is for your own personal comfort, you could do one of the following:
Simple: Add an InputBox with blocked out characters. If the password doesn't match, exit:
#include <MsgBoxConstants.au3>
$sPass = InputBox("My Script", "Enter Master Password", "", "@")
If $sPass <> "My Name is Bobby" Then Exit(MsgBox($MB_OK, "My Script", "You blew it!"))
A little more complex, add a command-line parameter that you have to call the executable with in order for it to work (compiled scripts only):
#include <MsgBoxConstants.au3>
If Not StringInStr($cmdlineRaw, "/My Name is Bobby") Then Exit(MsgBox($MB_OK, "My Script", "You blew it!"))
MsgBox($MB_OK, "", "Test")
I am sure others will have more suggestions for you.