CenterPartWithArrows.CFrame = CFrame.identity
CenterPartWithArrows.Position = (part.ExtentsCFrame * part:GetAttribute(“offset”)).Position This sets the CFrame to the origin (0, 0, 0), then updates the Position separately.
CenterPartWithArrows.CFrame = CFrame.identity * CFrame.new((part.ExtentsCFrame * part:GetAttribute(“offset”)).Position) But this one sets the CFrame and Position in one function.
So the 2nd one would preform better because it’s in one function