How do you set a Part as a Primary Part?

I know it’s kind of a dumb question, but I don’t know how.

5 Likes

PrimaryPart is just a property of Model, so you can set it in the properties panel.

20 Likes

Go to the properties of a model and press on Primary part, then select the part you want as the primary part.

6 Likes

Well in Studio, you can click on the model in the properties tab and then click on Primary Part. It will let you click on the part that you want to become the Primary Part.

Through a script just do:

model.PrimaryPart = --part here
9 Likes