What's wrong with this script part?

local BlockSizeSnap = RotationCFrame * CFrame.new(Target.Size.X / 2 % MoveSnap, Target.Size.Y / 2 % MoveSnap, Target.Size.Z / 2 % MoveSnap)
print(typeof(BlockSizeSnap))
print(BlockSizeSnap)
local Components = BlockSizeSnap.components()

I made script, which have:
RotationCFrame - it’s CFrame with only rotation, it’s position = 0,0,0
Target - “Part”
Can someone say me, why I can’t use .components(), if print(typeof(BlockSizeSnap)) gives “CFrame” type?

I believe it is BlockSizeSnape:GetComponents rather than BlockSizeSnap.components

1 Like