G-VHGXV114NQ
Kim Mathias shared a post  
3 yrs

//Ronnie Theas's Prim Cleaner
// Copyright 2008
//

// This script resets all the persistent properties of a prim, such as floating text, particles...etc
// that remain even after the script that created them is deleted.
default
{
state_entry()
{
llSetSitText( "" );
llSetTouchText( "" );
llParticleSystem( [ ] );
llSetText( "", ZERO_VECTOR, 1.0 );
llTargetOmega( ZERO_VECTOR, 0, 0 );
llSitTarget( ZERO_VECTOR, ZERO_ROTATION );
llSetTextureAnim( FALSE , ALL_SIDES, 1, 1, 0, 0, 0.0 );
llStopSound();
}
}

3 yrs

Typhaine Artez How to make a script to remove particles from an object?