Need help with this
Is there any scripts/c++/dll hacks out there that will allow me to if i press a key stop sending packets then if i press a key again send packets so i like freeze in mid air?
require( "bsendpacket" );
local air_stuck = false;
local click = false
hook.Add("CreateMove", "", function( cmd )
if ( input.IsKeyDown( KEY_V ) ) and !click then
air_stuck = !air_stuck;
print("Airstuck Active: " ..tostring( air_stuck ) )
click = true;
end
if !input.IsKeyDown( KEY_V ) then
click =false;
end
bSendPacket = air_stuck;
end )