String help, need help by making a text

Hello! Im a scripter and wanting to put a specail mark in a text but it looks like you need to find out a way for it, which i dont know. i want my text to be like this: “Hello”
But the problem is you cant put " by scripting. Does someone maybe know how to fix this?

Use a single quote like this:

local text = '"Hello"'
print(text) --"Hello"
1 Like

This is it, should be marked as the solution.

you can use special characters like if you put backslash \ before it it will not break the string or you can use the example shown above. but with backslash you can also use \x22 or \034

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.