I suspect that it doesn’t know which user you want displayed
untested but try this
<?php
$current_user_id = (int) bbp_get_current_user_id();
$topics = bbp_get_user_topic_count_raw($current_user_id);
$replies = bbp_get_user_reply_count_raw($current_user_id);
$totalTopics = $topics * 5;
$totalsReplies = $replies * 2;
$points = $totalTopics + $totalsReplies;
echo " points = $points.";
?>