Usually /usr/local/bin, unless you don't want other users to have access to them, in which case $HOME/bin.
/usr/local/bin may be in the default PATH, but $HOME/bin will certainly need to be added to PATH.
Adding $HOME/bin to PATH:
PATH=${PATH}:$HOME/bin
export PATH