Is it possible to detect mouse wheel scrolling?

I can’t seem to find if it’s possible. I’ve only found mouse wheel “Click” not scroll of the fly wheel.

Got it. Code:

UserInputService.InputChanged:Connect(function(input)
	if (input.UserInputType == Enum.UserInputType.MouseWheel) then
		print(input.Position.Z) -- +/-1
	end
end)
1 Like
1 Like


Use these

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.