The line of the script with an error in is:
if speaker.Name = "ovyxn" then
The '=' is underlined red and says: Expected 'then', got '=' Can anyone please help me with this?
The assignment operator is =
The 'equal to' operator is ==
You can't assign something in the conditional portion
if speaker.Name == "ovyxn" then