In this script I found, it creates a Part from a Handle. But the Cframe has a “.p” at the end, what does that do?
handle.CFrame * CFrame.new(5, 0, 0).p
In this script I found, it creates a Part from a Handle. But the Cframe has a “.p” at the end, what does that do?
handle.CFrame * CFrame.new(5, 0, 0).p
It just returns the vector3 position property of a CFrame
In more details, it returns the X, Y, Z of the current position of the CFrame formed into a vector3.
It’s the deprecated version of the .Position property of a CFrame.