// GPC Online Library // nba_on_the_fly_adjustable_perfect_shot.gpc //My second NBA 2k19 script // // Use the DPAD to increase/decrease delay // // Increase Delay +10 // | // Decrease Delay -5 - - Increase Delay +5 // | // Decrease Delay -10 int DELAY = 490; main { if(get_val(PS4_SQUARE)) { combo_run(Tap_1); } if(get_val(PS4_RIGHT)) { DELAY = DELAY + 5; } if(get_val(PS4_LEFT)) { DELAY = DELAY - 5; } if(get_val(PS4_UP)) { DELAY = DELAY - 10; } if(get_val(PS4_DOWN)) { DELAY = DELAY - 10; } } combo Tap_1 { set_val(PS4_SQUARE, 0); wait(10); set_val(PS4_SQUARE, 100); wait(DELAY); set_val(PS4_SQUARE, 100); }