Scrolling Frame

Can I detect if the player start scrolling? I see some about detect if player has scroll to the bottom, but can I detect if the player start Scrolling?

2 Likes

https://developer.roblox.com/en-us/api-reference/class/ScrollingFrame
Thank me later. Look in the events.

1 Like
local scrollingFrame = script.Parent

scrollingFrame:GetPropertyChangedSignal("CanvasPosition"):Connect(function()
	print("Scrolling!")
end)

you can just do

 ScrollingFrame.InputBegan:Connect(Function()
-- Your code here
end)