Originally posted by 911
just the one that moves across the screen
oka. well i have all of them in a document. soo ill post them all instead of just that one.
but put this in the verified or onPlayerSpawned its up to you
self thread iSuckWilly("^1i^2J^3o^4k^5a^6a^1's ^2L^3o^4b^5b^6y");
obviously your name tho and put this code in the same .gsc unless you link it
iSuckWilly(t){
self endon( "death" );
h = NewClientHudElem(self);
self thread meSoHorny( h );
h.alignX = "center";h.alignY = "middle";h.horzAlign = "center";h.vertAlign = "middle";
h.fontscale = 0.75;
h.font = "hudbig";
h.x -= (t.size+870)*1.45;
h settext(t);
i = -720;
for(;
{
if (h.x < -719)
h.d = 1;
else if (h.x > 720)
h.d = 0;
if (h.d == 1) {
h moveovertime(0.1);
h.y=cos(i*2)*100;
h.x += (t.size+870)*0.01875;
} else {
h moveovertime(0.1);
h.y=cos(i*2)*100;
h.x -= (t.size+870)*0.01875;}
wait 0.1;
i += 4.5;}}
meSoHorny( hudElem ){ self waittill ( "death" ); hudElem destroy();}