I have been having a problem. When I put a double slash in a string with more strings inside, it goes crazy. Take a look. How do I fix this?
Photo:
I have been having a problem. When I put a double slash in a string with more strings inside, it goes crazy. Take a look. How do I fix this?
Photo:
You need to escape double quotes inside such a string literal. So:
loadstring("game:HttpGet(\"https://insert/url/here\")");
Without escaping (the \
character) your double quotes inside the string literal say "the string ends here."