How to teleport a Part/Mesh/Union [With scripts inside it]

Basically if someone presses a button it should teleport a model with Parts/Mesh/Unions to a certain place, but I have no clue how to do that.
Any advice/help?

Use the following:

local myModel = pathToYourModel

myModel:MoveTo(workspace.TestPart.Position) -- You can also type in a Vector3 value i.e Vector3.new(45,32,156)

So basically likeā€¦

local myModel = game.workspace.SCP173

myModel:MoveTo(Vector3.new(45,32,156))

[Sorry for the late response]

No worries.

Yeah, just change the Vector3 data to whatever you want.