Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-2

What is an Unfinished String error?

Asked by 10 years ago

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?

1 answer

Log in to vote
4
Answered by
jobro13 980 Moderation Voter
10 years ago

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.

Ad

Answer this question