How do i move models?

Hey, i want to make a cutscene for my game, where you go in a space station in a small ship, for that i’d need to make the entire model of the spaceship move and the Union that is the door open, how can i do that?

By that i mean how can i make the model and the union move.

1 Like

You can set a PrimaryPart and use:

model:SetPrimaryPartCFrame(CFrame.new(x, x, x))

It moves the whole model based on PrimaryPart

If you want smooth movements, try out CFrame:Lerp(),

or:

1 Like