Ill give you the code right fast: Just get the Volter.ttf font from Habbodown.com

Make an iframe to navigation.php like so
PHP Code:
        <iframe name="I2" src="navigation.php?text=||| Habbo Newsie |s You |||" scrolling="no" border="0" frameborder="0" width="473" height="15" allowtransparency="true">>
        
Your browser does not support inline frames or is currently configured not to display inline frames.
        </
iframe
Navigation.php:

PHP Code:
<style type="text/css">
<!--
body {
    font-family: Verdana;
    font-size: 10px;
    background-color: transparent;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
-->
</style>
<body style="background-color: transparent;">
<marquee><img src="gdtest.php?text=<? echo $_GET[text]; ?>"></marquee>
</body>
gdtest.php:
PHP Code:
<?
header
('Content-type: image/gif');
$im = @imagecreatefromgif('test.gif');
$black imagecolorallocate($im000);
$font 'Volter.ttf';
$text $_REQUEST['text'];
imagettftext($im6.402010$black$fontstripslashes($text));
imagegif($im);
imagedestroy($im);
?>
Note you must have the GD Libarys to use this