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)