I am curious to know what an Unfinished String error is. There isn't anything on the wiki, and I am just curious to know whats wrong with this script.
The syntax error in the output looks like this:
13:24:13.432 - Exception: syntax error: [string ""]:1: unfinished string near '<eof>'
Any idea what this is?
Exactly what it says: an unfinished string.
This usually happens when you forget to closing "
.
a = "Hello! -- note: no closing " local Player = game.Workspace.LocalPlayer -- rest of script
Gives the unfinished string error.