Depends exactly what you're trying to do.
If you just want the name of the person who is viewing the page it's
$bbuserinfo[username].
If you want it showing as part of a thread title you would probably have to use some sort of conditional to avoid things showing to guests:
Code:
<if condition="$bbuserinfo['userid']">FAO $bbuserinfo[username]: </if>
would probably work, depending on where you use it.