diff --git a/scripts/common.lua b/scripts/common.lua index 5f50dee..61c1440 100644 --- a/scripts/common.lua +++ b/scripts/common.lua @@ -1,4 +1,6 @@ -- NOTE(local): DO NOT PUT ANYTHING HERE PLEASE THANKS -- IF YOU DO THE GAME WILL IMMEDIATELY CRASH AND IT'S NOT THE BEST -- THANK YOU HAVE A GOOD LUA -gfx.LoadSkinFont("segoeui.ttf") \ No newline at end of file +gfx.LoadSkinFont("segoeui.ttf") + +function useFootGun() while true do end end diff --git a/scripts/gameplay.lua b/scripts/gameplay.lua index 96b8105..ab78608 100644 --- a/scripts/gameplay.lua +++ b/scripts/gameplay.lua @@ -107,7 +107,11 @@ end function button_hit(button, rating, delta) if (showHitAnims) then - HitFX.TriggerAnimation("Crit", button + 1) + if (rating == 1) then + HitFX.TriggerAnimation("Near", button + 1) + else + HitFX.TriggerAnimation("Crit", button + 1) + end end end