// This script is from http://xahlee.org/sl/ . Copyright © 2007 Xah Lee. Permission is granted for use or modification provided this note is intact and the script has permissions for copy, mod, and resell. // Put this script in object, then, type “/8 die” will delete the object. default{ state_entry() { llListen(8, "", llGetOwner(), "die"); } listen(integer channel, string name, key id, string msg) { llDie(); } }