Scrollable
An element with scrollable content. (only the Y axis is supported currently - X axis coming soon 👀).

Properties
Name | Type | Description |
---|---|---|
CanvasPositionY | Fusion.UsedAs<number>? | The y position of the scroll bar. |
Example
Scope:Scrollable {
Size = UDim2.new(1,0, 0,150),
CanvasSize = UDim2.fromOffset(0, 500),
[Children] = Scope:TextLabel {
Text = "Scrollable Content Goes Here :)!\nScrollable Content Goes Here :)!\nScrollable Content Goes Here :)!",
LineHeight = 1.4,
},
}