[Resolved] Performing Arithmetic with text

How would I do math with text? as in if I wanted to make a text that said, “hello, world” and then add on “!” on the end? [import]uid: 147322 topic_id: 28090 reply_id: 328090[/import]

Would it be similar to the string to array function? [import]uid: 147322 topic_id: 28090 reply_id: 113508[/import]

What you are looking to do is called string concentration.

To do what you said it would work like this:

local text = "Hello world" --take the original text and add a "!" at the end text = text .. "!" [import]uid: 84637 topic_id: 28090 reply_id: 113523[/import]

Resolved. Thanks Danny! [import]uid: 147322 topic_id: 28090 reply_id: 113828[/import]