i use this tiny script for PUBG, works perfectly with AK.
Code:
EnablePrimaryMouseButtonEvents(true);
function OnEvent(event, arg)
if IsKeyLockOn("numlock" )then
if IsMouseButtonPressed(1) then
Sleep(33)
repeat
MoveMouseRelative(0,4)
Sleep(4)
until not IsMouseButtonPressed(1)
end
end
end