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?