|
Also, to test for equality, you need two equals-signs, not one.
This sets the value of r to "Newbie", and the check fails because setting a variable doesn't return anything:
if r = "Newbie" then
This compares the value of r to "Newbie" and returns true (passing the check) if it is:
if r == "Newbie" then
|