// 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. // Description: sample script of using llRezObject // put a object named myObj in the prim. // Upon touch, it rezes myObj 2 meters above the original object. default { touch_start(integer total_number) { llRezObject("myObj", llGetPos()+<0,0,2>, ZERO_VECTOR, ZERO_ROTATION, 0); } }