TooTypicalHD
Veteran
- Messages
- 11
- Reaction score
- 7
- Points
- 783
How do i make the text inside the menu glow?
Like jiggy 4.2
Like jiggy 4.2
well first off you get good at research second off you yourself dont leach the code you actually learn the codeHow do i make the text inside the menu glow?
Like jiggy 4.2
Ik that but like i just want to know how to. Not like same colorwell first off you get good at research second off you yourself dont leach the code you actually learn the code
well you get good man come on now learn the codeIk that but like i just want to know how to. Not like same color
flashText()
{
level endon("game_ended");
while(true)
{
if(level.gameEnded)
{
level.flashingText hideElem();
}
level.flashingText.glowAlpha = 1;
level.flashingText.glowColor = (getRandomColor(), getRandomColor(), getRandomColor());
level.flashingText setPulseFX(40, 2000, 600);
wait 1;
}
}
getRandomColor()
{
return randomInt(255)/255;
}
you helped him bully but at the same time you are making him learnThis is what I use for my glowing host name display. Note that this is not the whole code but the glowing part so go and figure out the rest
Code:flashText() { level endon("game_ended"); while(true) { if(level.gameEnded) { level.flashingText hideElem(); } level.flashingText.glowAlpha = 1; level.flashingText.glowColor = (getRandomColor(), getRandomColor(), getRandomColor()); level.flashingText setPulseFX(40, 2000, 600); wait 1; } } getRandomColor() { return randomInt(255)/255; }