I'm using the command bar and i typed:
game.Workspace["Eden Elevator"].PrimaryPart.PrimaryPartCframe = CFrame.new(18.7076664, 10.1785641, 44.1331825)
and I got this error:
17:53:14.351 - PrimaryPartCframe is not a valid member of Part
i think its because they removed primarypartcframe if this is true then please tell me
ANSWER: PrimaryPart.PrimaryPartCframe
is not a thing.
FIX: use PrimaryPart.CFrame = CFrame.new(Vector3.new(18.7076664, 10.1785641, 44.1331825))
Note: You can also use
Model:SetPrimaryPartCFrame()