Currently, there is no way to drop an object onto the ground after attaching it via script. I propose adding llDrop() to enable this functionality.
Unlike llRezObject() or llDetachFromAvatar(), llDrop() would allow an attached object to be placed back into the world without being sent to the user’s inventory.
This would provide a seamless interaction where a user can pick up an object with llAttachToAvatar() and later place it elsewhere using llDrop(), without unnecessary inventory management—creating a more intuitive "pick up and set down" experience.
Requires PERMISSION_ATTACH to have been granted.
Possible Rules:
  • DROP_ALIGN_NORMAL – Aligns the object to the surface normal at the drop location.
  • DROP_PHYSICAL – Enables physics on the dropped object, letting it fall naturally.
  • DROP_PHANTOM - Drops the object with phantom properties.
  • DROP_TEMPORARY – Drops the object as a temporary item that auto-deletes after some time.