Chunks...

I found I got a ‘chunk’ error when I tried setting a variable to be equal to more than about 200 lines… ( Beethoven’s Moonlight Sonata is looong…)

This seems to be a lua thing, but is there a way around it?

Maybe you could try splitting it up and appending the strings, eg.

longstring = part1 .. part2

Thanks @Simeon, that worked! Then I had to put in setInstructionLimit(0) to avod exceeding the instruction limit.