Try this script with the Logitech software and see if it turns exactly 360 degrees when executed. It will bind to the back side button.
This is for hipfire:
function OnEvent(event, arg)
if (event == "MOUSE_BUTTON_PRESSED" and arg == 4) then
for i = 0, 568 do
MoveMouseRelative(12,0)
Sleep(2)
end
end
end
This is for ADS:
function OnEvent(event, arg)
if (event == "MOUSE_BUTTON_PRESSED" and arg == 4) then
for i = 0, 166 do
MoveMouseRelative(51,0)
Sleep(2)
end
end
end