// PRIM CLEANER // // Sick of particles or floating text still on a prim, even after removing the script that manages it ? // This script will remove the effects without having to copy the prim again... // Just put it in the prim and the script will fix all the things before disappreaing itself, // making your prim fresh and clear! // // Courtesy of buttbadger Mirabeau default { state_entry() { llOwnerSay("Removing particles..."); llParticleSystem([]); llOwnerSay("Removing text..."); llSetText("", <1,1,1>, 1.5); llOwnerSay("Removing Texture animation..."); llSetTextureAnim(FALSE, ALL_SIDES,0,0,0, 0,0.0); llOwnerSay("Removing rotation..."); llTargetOmega(<0,0,0>,PI,0); llOwnerSay("Done! Deleting the cleaning script. Enjoy your fresh prim!"); llRemoveInventory(llGetScriptName()); } }