Help with scrolling frame

It’s maybe not the right category, but I need help, so basically, I’m trying to make the scrolling more smooth… As you can see here at the video, it’s complicated to see all logs!

1 Like

Try using this: SmoothScroll Module [Superseded by Roblox Update 421]

1 Like

Yes, but is there a property to change this?

Roblox doesn’t have a smooth scrolling property, which is why I created the module to handle that.

I didn’t mean that, but, I want to like, make it for you can read all logs,there must be a way? changing canvas size?

Oh. Set the ScrollingFrame.CanvasSize to fit the children.

If you’re using a UIListLayout then it’s as simple as

ScrollingFrame.CanvasSize = UDim2.new(0,0,0, ScrollingFrame.UIListLayout.AbsoluteContentSize.Y)
1 Like