Text Labels incorrectly formatting multiline strings

Everything was working as expected until recently. I have no idea why things are slightly shifted to the right as of this moment.

edit: It seems to be adding huge spaces within the string itself whenever I press the enter button.
example:
exhibit2

exhibit3

A work around is making the description a singular line, but it’s very inconvenient

You have tabs in the multiline string.

Instead of:

...
	local str = [[Text
	Text
	Text
	]]
...

Do this:

...
	local str = [[Text
Text
Text]]
...
1 Like

but its so unaesthetic :smiling_face_with_tear: man