Any way to shorten this?

A very easy one.

How can I shorten this (if there is some way):

string1 = string1..string2

A lot of languages have += (for numbers mainly). It also works on Roblox (but for numbers). Strings are different tho.

string1 += string2

This should return an error (cannot add on a string).

This question should be in #help-and-feedback:code-review

string1 ..= string2

The two dots .. is the concatenation operator in Lua. In other languages (like JavaScript & Python) it is the + operator (which makes a lot more sense). It can take some getting used to, but once you do it’s easy.