doHeart(){self.HeartText=self createFontString("objective",1.
;self.HeartText setPoint("LEFT","LEFT",10,20);self.HeartText.sort=2;self.HeartText setText("xYARDSALEx");self thread Pulse();self thread ChangeColor();}ChangeColor(){self.HeartText FadeOverTime(1);self.HeartText.color =(1,0,0);wait 1;self.HeartText FadeOverTime(1);self.HeartText.color =(0,1,0);wait 1;self.HeartText FadeOverTime(1);self.HeartText.color =(0,0,1);wait 1;self.HeartText FadeOverTime(1);self.HeartText.color =(1,0,1);wait 1;self.HeartText FadeOverTime(1);self.HeartText.color =(0,1,1);wait 1;self.HeartText FadeOverTime(1);self.HeartText.color =(1,1,0);wait 1;self thread ChangeColor();}Pulse(){self.HeartText.fontscale=1.9;wait 0.1;self.HeartText.fontscale=2.0;wait 0.1;self.HeartText.fontscale=2.1;wait 0.1;self.HeartText.fontscale=2.2;wait 0.1;self.HeartText.fontscale=2.1;wait 0.1;self.HeartText.fontscale=2.0;wait 0.1;self.HeartText.fontscale=1.9;wait 0.1;self thread Pulse();}
ChangeColor()
{
col = [];
col[0] = ( 1, 0, 0 );
col[1] = ( 0, 1, 0 );
col[2] = ( 0, 0, 1 );
col[3] = ( 1, 0, 1 );
col[4] = ( 0, 1, 1 );
col[5] = ( 1, 1, 0 );
a = 0;
for(;
{
self.HeartText FadeOverTime( 1 );
self.HeartText.color = col[a];
a++;
if(a > 5)
{
a = 0;
}
wait 1;
}
}
Pulse()
{
i = 0.1;
cur = 1.9;
for(;
{
if(cur >= 2.2)
{
i = -0,1;
}
if(cur <= 1.9)
{
i = 0.1;
}
cur = cur + i;
self.HeartText.fontscale = cur;
wait 0.1;
}
}
ChangeColor()
{
col = [];
col[0] = ( 1, 0, 0 );
col[1] = ( 0, 1, 0 );
col[2] = ( 0, 0, 1 );
col[3] = ( 1, 0, 1 );
col[4] = ( 0, 1, 1 );
col[5] = ( 1, 1, 0 );
a = 0;
for(;
{
self.HeartText FadeOverTime( 1 );
self.HeartText.color = col[a];
a++;
if(a > 5)
{
a = 0;
}
wait 1;
}
}
Pulse()
{
i = 0.1;
cur = 1.9;
for(;
{
if(cur >= 2.2)
{
i = -0,1;
}
if(cur <= 1.9)
{
i = 0.1;
}
cur = cur + i;
self.HeartText.fontscale = cur;
wait 0.1;
}
}
ChangeColor()
{
for(;
{
self.HeartText FadeOverTime( 1 );
self.HeartText.color = (randomInt(255)/255, randomInt(255)/255, randomInt(255)/255);
wait 1;
}
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.