Hey there! I am making a program that allows you to run code from anywhere and I am having trouble because the string that I set in my Node.js file looks like this:
'print("Hello, World")'
But when I bring it into Roblox so I can loadstring
it, the double-quotes have been escaped, like this:
"print(\"Hello, World\")"
What I am trying to figure out is how to escape those backslashes. I have tried the DevHub, DevForum, Just plain old RegEx (didn’t work because I forgot that roblox does not support RegEx) and everything in between.