How to strip messages into multiple lines in a textlabel

  1. I would like to make a radio

  2. When I have a longer message and it doesnt fit I want to split the extra character into a second or line due to its size but I have no idea how to solve it. Screenshot is showing it

  3. **I have tried to textwrap but its just putting the entire message into second line. On developer hub i didnt exactly find solution for this :frowning: **
    image
    image

In a string, the sequence \n can be used to break to the next line. You could have it check for the length of a string, and add then accordingly. I believe there is also properties for this in text labels, but if that does not work adding a \n to a string should.

2 Likes

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