This code is all commented out, when in fact it all runs fine and is in fact not supposed to be commented(it shows up fine in pastebin)
Something is wrong with the script editor, but it’s not the functionality of multi-lined comments – it’s the syntax highlighting. You can’t nest multi-lined comments on ROBLOX, but that syntax highlighting makes it look like you can. Ditch the nested multi-lined comments and it should work as expected.
whyyyyyyyyyyyyyyyyyy
uh,
yes?
I think the problem I had awhile ago is related. I just made sure I had no nested comments and it seemed to fix itself.
Those actually aren’t nested comments. The multi-line comment started on line 85 actually ends on line 101, but conveniently another one is started on line 102. This causes the program to not error. It also apparently causes the highlighter to screw up.
If you want to have actual nested multi-line comments, use these --[=[ ... --[[ ... ]] ... ]=]
The same syntax also applies to multi-line strings.