I have to put it.
*The upper or lower.
-You can touch this-- (upper)
amount = 5.0 --SpeedHack Amount
key = VK_MENU --Trigger Key. All Virtual Key codes can be found here: https://msdn.microsof*****m/ru-ru/library

dows/desktop/dd375731%28v=vs.85%29.aspx
--You shouldn't touch this-- (lower)
check = {[true] = amount, [false] = 1}
t = createTimer( nil )
timer_setInterval( t, 10 )
timer_onTimer(t, function()
speedhack_setSpeed( check[ isKeyPressed( key ) ] or 1 )
end)
timer_setEnabled( t, true )
Or...
check = {[true] = 5.0, [false] = 1}
t = createTimer( nil )
timer_setInterval( t, 10 )
timer_onTimer(t, function()
speedhack_setSpeed( check[ isKeyPressed( VK_MENU ) ] or 1 )
end)
timer_setEnabled( t, true )