Is there a function that can get the position of a part?
There is not a function to get the list of a part but you can write on like :
Part = {} --new scope do function Part:GetPosition(p) --New method return p.CFrame --Return the CFrame end end print(Part:GetPosition(game.Workspace.Part)) --test it
But if you don't want to do that:
print(game.Workspace.Part.Position)