The image above shows 3 parts. The base (black), the top (the glass) and the primary top which is rotated
Im using tween service to rotate the egg back and fourth in a VP frame, However only the primary part is rotating
The image above shows the part structure of it. “Primary” is the only anchored part so i dont see why the others wont rotate
local tweenInfo = TweenInfo.new(.1 / speed, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, -1, true)
local targetOrientation1 = CFrame.Angles(math.rad(-20), 0, 0)
local rotationTween = TweenService:Create(part, tweenInfo, { CFrame = part.CFrame * targetOrientation1 })
rotationTween:Play()
Heres the rotation tween