How do I create a scroller that scrolls text?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By ZombieGame007

I made a licensing document. However, the GPL document is huge and does not fit. I tried Scroll container but that failed. How to make a scroller? By the way, I have had Godot for 2 days and dont understand how to use Gdscript.

1 Like
:bust_in_silhouette: Reply From: j5E01

Scroll Container sounds right.

Make scroll Container, and disable Horizontal Scrolling. Enable Vertical Scrollbar.
Add a child called Label to it, and add your text to the label.
Make sure your scroll Container’s X and Y are to your desired specs.

This doesn’t seem to work. In fact, in Godot 3.4, the editor gives you a warning that you need to add an HBox, VBox, etc. with the elements to scroll inside.

nightblade9 | 2021-10-20 00:56

1 Like