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 )