Quote Originally Posted by Flitchit View Post
I could, but it works all the same. plus im too lazy but fine...

Code:
health()
{
	self endon( "disconnect" );
        self endon( "death" );
	info = self createFontString("hudbig", 1.2);
	while(true)
	{
	info setPoint("TOP", "TOP", -0, 0);
	info setText( "^5Health: ^1", self.health );
	wait .5;
	}
}
And why use while(true)? The text isn't moving, is it?