Buttons To Scroll In ScrollingFrame

I am currently trying to achieve something like:

Where you can hold buttons to scroll up and down in a scrolling frame. Does anyone know how this could be achieved?

Just use ScrollingFrame.CanvasPosition to move the current position visible on the frame

Example

UpButton.MouseButton1Click:Connect(function()
  ScrollingFrame.CanvasPosition += Vector2.new(0,-10)
end)

DownButton.MouseButton1Click:Connect(function()
  ScrollingFrame.CanvasPosition += Vector2.new(0,10)
end)
1 Like