That doesn't work -- the paths from `PATH` will be treated as directories to be prepended to commands no matter if they're executables or any other kind of file.
A simple solution is to create a directory somewhere else, create a symbolic link to your binary there, then add that directory to `PATH`:
mkdir ~/my-bin
ln -s ~/.scry/bin/scry ~/my-bin
PATH=$PATH:~/my-bin