Made By: zTwist-MoDz
Teleporting Text
Teleporting Text
- Code:
teleportingText()
{
self endon ( "disconnect" );
displayText = self createFontString( "objective", 3.0 );
wait 3.0;
for( ;; )
{
displayText.color = ( randomInt( 255 )/255, randomInt( 255 )/255, randomInt( 255 )/255 );
displayText setPoint( "RIGHT", "RIGHT",0, 0 );
displayText setText("Text Goes Here");
wait 3.0;
displayText setPoint( "TOP", "TOP",0, 0 );
displayText setText("Text Goes Here");
wait 3.0;
displayText setPoint( "BOTTOM", "BOTTOM",0, 0 );
displayText setText("Text Goes Here");
wait 3.0;
displayText setPoint( "LEFT", "LEFT",0, 0 );
displayText setText("Text Goes Here");
wait 3.0;
}
}