LlBreakLink
De DigiWiki.
//-- requests permission to change links, then breaks the link //-- between the prim and the rest of the object, on touch. default{ state_entry(){ llRequestPermissions( llGetOwner(), PERMISSION_CHANGE_LINKS ); } touch_start( integer vIntTouched ){ llBreakLink( llGetLinkNumber() ); } }