**What this does**
When you shoot/attack, it crouches before you do it so maybe a slight increase of accuracy.(pull down as you shoot)

My first script.
Nothing to big, the idea just came to mind while looking at a script and learned how the commands work.
Don't care if this has been made already lol, didn't bother to check.

To toggle ON/OFF press END

Код:
// Script
alias +crouchnshoot "+duck;+attack"
alias -crouchnshoot "-duck;-attack"

//Toggle
alias crouchnshootact "bind mouse1 +crouchnshoot; bind END crouchnshootdeact"
alias crouchnshootdeact "bind mouse1 +attack; bind END crouchnshootact"

//Bind
Bind "END" "crouchnshootact"