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

Expected } (to close '{' at line 1) got 'PLACEHOLDERFORHELP' How to fix?

Asked by 2 years ago
Edited 2 years ago

Hey! I don't know what I'm doing wrong, but it says that it expected me to close the brackets at a specific line, and adding more code to that line kills the script! I've done everything!

    local module = {

      PLACEHOLDER = {Page1 = {"placeholder", "placeholder"}}
      PLACEHOLDERFORHELP = {Page1 = {"Placeholder", "Placeholder"}}

    }
    return module

1 answer

Log in to vote
0
Answered by 2 years ago
Edited 2 years ago

Hey, just add a comma and you fixed it! Example:


local module = { PLACEHOLDER = {Page1 = {"placeholder", "placeholder"}}, PLACEHOLDERFORHELP = {Page1 = {"Placeholder", "Placeholder"}} } return module
Ad

Answer this question