-->

FoxSan's 3D Tools and LSL Script Repository

Tons of LSL scripts, examples and 3D tools, free for all. There are currently 207 scripts and articles in this database.

Buddy Builder Arrow

//////START SCRIPT ////// Arrow prim
 
///a little script that shapes your prim into an arrow (good for orienting front/back/etc) - not needed, but might be handy
default
{
        state_entry()
        {
                llSetPrimitiveParams([
                PRIM_TYPE, PRIM_TYPE_SPHERE, PRIM_HOLE_DEFAULT, <0.45, 0.55, 0.0>, 0.0, ZERO_VECTOR, <0.35, 0.65, 0.0> ]);
                llSetRot(ZERO_ROTATION);
                llRemoveInventory(llGetScriptName());
        }
}
////END ARROW PRIM SCRIPT

Comments are closed.