Se você deseja executar um script bash como root, é necessário editar o crontab do root assim:
16 * * * * /bin/bash /path/to/script.sh
Explicação:
16 * * * * = At minute 16th of every hour.
/bin/bash = shell interpretor.
/path/to/script.sh = path to the script that you need to schedule.