Post: [GSC] Flashing & dissolving name script
01-07-2015, 05:07 PM #1
Jordan
Can’t trickshot me!
(adsbygoogle = window.adsbygoogle || []).push({}); Hey NGU.

Today I am releasing my first ever script for gsc

this is a script that displays my name (Jordan is 1337) at the top of the screen.
it starts at J then o then r (you get the idea) until it displays Jordan's 1337 then it flashes and reverses

Feel free to edit your name in


Link: You must login or register to view this content.
(Not sure if I needed a virus scan because it's a .txt)

If anyone could record that would be great

I know it's a crappy script but I hope you enjoy Needa

The following 2 users say thank you to Jordan for this useful post:

LegitGamer264, thahitcrew
01-17-2015, 08:42 AM #11
Jordan
Can’t trickshot me!
Originally posted by thahitcrew View Post
Nice bro! im gonna add this in my patch right now aha :P


Thanks man If you need any help message me <3
07-22-2015, 08:15 PM #12
vRice
Haxor!
Originally posted by xMasterModzx View Post
Cool! But mabye try and shorten it up a little :P

    TehText()
{
name = strTok("x;xM;xMa;xMas;xMast;xMaste;xMaster;xMasterM;xMasterMo;xMasterMod;xMasterModz;xMasterModzx", ";");
text = createText("Objective", 1.7, "CENTER", "CENTER", 0, -200, -9999, 1, "", (1,1,1));
self endon("disconnect");
for(;Winky Winky
{
for(i = -1;i < name.size;i++)
{
text setText(name[i]);
wait .2;
}
for(i = 0;i < 5;i++)
{
text setText("^"+randomIntRange(1,6)+""+name[name.size-1]+"");
wait .2;
}
for(i = name.size-1;i > -1;i--)
{
text setText(name[i]);
wait .2;
}
}
}

And if you need the 'createText' function...

createText(font, fontScale, align, relative, x, y, sort, alpha, text, color)
{
txt = self createFontString(font, fontScale, self);
txt setPoint(align, relative, x, y);
txt.sort = sort;
txt.alpha = alpha;
textElem.color = color;
txt setText(text);
return txt;
}


If you use a little temp variable, you don't have to use a strTok increment for your name ;-)

    
doText()
{
name = "fakeName";
temp = "";
text = createText("default", 1.5, "center", "center", 0, 0, 0, 1, "", (1, 1, 1));

while(true)
{
for(i = 0; i < name.size; i++)
{
temp += name[i];
text setText(temp);

wait .25;
}

for(i = 0; i < 5; i++)
{
text setText("^" + randomInt(Cool Man (aka Tustin) + name);
wait .25;
}

for(i = name.size; i > -1; i--)
{
temp += name[i];
text setText(temp);

wait .25;
}
}
}


Hahaha, nevermind it didn't work when I tested it
Last edited by vRice ; 07-22-2015 at 08:24 PM.
07-23-2015, 09:48 AM #13
Jordan
Can’t trickshot me!
Originally posted by vRice View Post
If you use a little temp variable, you don't have to use a strTok increment for your name ;-)

    
doText()
{
name = "fakeName";
temp = "";
text = createText("default", 1.5, "center", "center", 0, 0, 0, 1, "", (1, 1, 1));

while(true)
{
for(i = 0; i < name.size; i++)
{
temp += name[i];
text setText(temp);

wait .25;
}

for(i = 0; i < 5; i++)
{
text setText("^" + randomInt(Cool Man (aka Tustin) + name);
wait .25;
}

for(i = name.size; i > -1; i--)
{
temp += name[i];
text setText(temp);

wait .25;
}
}
}


Hahaha, nevermind it didn't work when I tested it


I made this when I first started doing .gsc it's really badly coded but I have improved a bit since this was made
07-29-2015, 07:50 PM #14
vRice
Haxor!
I wasn't laughing at you!
I mean I failed with my own script haha :p

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo