[Flash 10 is required to watch video]
Fun with Remote Desktop. Totally worth it.
edit - for those who asked, this is the code used:
#!/bin/bash
count="0"
while [[ $count -lt 11 ]]
do
osascript -e "set Volume $count"
say "Must. Kill. All. Humans."
count=`expr $count + 1`
done
exit 0