Is it possible to make it scrollable?

  1. What do you want to achieve? I want to make AutomaticCanvasSize

  2. What is the issue? When text is very long it cuts later text

  3. What solutions have you tried so far? Not at all

Hello, I want to make my writing space grow automatically.
This is how it looks:

And I want to make something like this:

I used Rich Text but it’s very glitched.

No it is not possible, I would recommend using a scrolling frame and scale this size of the text to the scrolling frame.

You can use a combination of AutomaticSize and AutomaticCanvasSize to achieve this.

I tried but it didn’t work. When the Textwrapped is set to true the AutomaticSize didn’t work but when it’s set to false it works for only X.

That sounds like a bug to me. Do you have any spaces in your text?

The AutomaticSize is glitched look at the bottom

Here is working fine (text is not glitched):

I believe this is because the text needs automatic size, and the scrolling frame needs AutomaticCanvasSize.

If you aren’t doing that, try setting the scroll bar inset.

Textbox:
image

Scrollingframe:
image

and I have this problem

Okay, so if you are using AutomaticSize, make sure to set the size to {1, 0}, {0, 0}.
Also, is the text box scaling past the size of the scrolling frame?

Size is set to {1, 0}, {0, 0} and I found the reason why it’s glitched. When anchor point is set to 0.5, 0.5 and position is set to {0.5, 0}, {0.5, 0} then the text is glitched.

Why is setting the size and position like that necessary? I can’t explain it, but I know for sure that this won’t size correctly, and you’ll get half of the text box cut off. Change the position and anchor point down to 0.

1 Like

Now I know and thank you for your help.