Class is AnimatedSprite:

Change the old Timer() with this one:
Code:
simulated function timer()
{
	if ( ++CurrentFrame >= Frames )
		Destroy();
	else
		Texture = SpriteFrame[CurrentFrame];
}