Assuming You Mean Just the Position itself, do this:
local Part1 = workspace.YourPart1
local Part2 = workspace.YourPart2
print(Part1.Position)
print(Part2.Position)
--To get a Specific Coordinate, Do this:
print(Part1.Position.X)
print(Part2.Position.Y)
Assuming You Mean Distance, do this:
local Part1 = workspace.YourPart1
local Part2 = workspace.YourPart2
local Magnitude = (Part1.Position - Part2.Position).Magnitude
print(Magnitude)
I’m not trying to make a new part or position one at all, that was an example. I am trying to get what the position of that part would be if it did exist.