Was wondering about string thing

how do you add the special key ( " ) to a string?

this isnt urgent or anything, i just want it for my game to look like somewhat ok cus the ui design is bad so i this will make it 2% better, thanks!

btw: i tried to look in the wastelands of the devforum but i may be blind or simply cannot see some post similar to my query, so i made this

2 Likes

What do you mean? For strings, you can use:

s = `hi`
s = "hi"
s = 'hi'
s = [[hi]]
2 Likes

i was like wondering how to make this → " ← be like turned into like uh hmm.
im trying to combine it with a already existing String to put into a text label so it would text out

“example text on textlabel”
and not
example text on textlabel

btw sorry if this sounds stupid i dont dabble in strings alot…

1 Like

Nevermind you gave me an answer already i just didnt see it thank you!

1 Like

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