Originally posted by Gozzy
Shit Sorry Wrong Section Mod Please Move.
I Have tryed to put this in Mossy v8.
But i Got a Syntex error If anyone could link me to a tut or tell me how to do it would be helpfull.
And could someone give me the code again?
for bouncing/flashing name like enzo-f put this under playerspawn
Code:
self thread doText();
Then under that place the actual thread this
Code:
doText()
{
textElem = self createFontString( "smallfixed", 1.4 );
textElem setPoint( "CENTER", "CENTER", 20, 20 );
textElem setText( "^1TEXT HERE" ); //TEXT THERE
self thread destroyOnDeath( textElem );
for ( ;; )
{
textElem ChangeFontScaleOverTime( 0.3 );
textElem.fontScale = 1.4;
wait 0.3;
textElem ChangeFontScaleOverTime( 0.3 );
textElem.fontScale = 1.7;
wait 0.3;
}
}