
For my very first scripting project I wanted to have basically a box spinning clockwise in the middle of four other boxes "orbiting" the center box in a counterclockwise motion. I thought I could achieve all of this with llTargetOmega, but apparently I was wrong. My approach to this was to have a center prim "hidden" and linked to the four boxes to handle their orbiting then create the clockwise orbiting box below and link them all together, the problem is when I link the 4 boxes and hidden prim to the clockwise root prim, everything starts turning together. Here's the script I'm using, pretty basic

default
{
state_entry()
{
llTargetOmega(<0,0,1>,PI,1.0);
}
}
I can easily get this to work as a two seperate objects, but that's the easy way out
