local cube = vci.assets.GetTransform("Cube") --Insert the name of the SubItem as a string local rotSpeed = 1 --Rotation speed function updateAll() if cube.IsMine then -- Called only when you have the ownership of the cube cube.SetLocalRotation(Quaternion.AngleAxis( rotSpeed, cube.GetUp() ) * cube.GetLocalRotation()) end end