How to set primary part from script?

Title is pretty much the question.
I’m looking to set a Model Primary Part from a script.
Thank you in advanced!

1 Like
local Model = workspace.Model --path to model 
local Part = Model.Part --path to part of your choice(do not name it PrimaryPart)

Model.PrimaryPart = Part

Oh wow smh evocul, I should’ve noticed it was literally that for someone who has been coding for literally over a year now and made full games…
Thank you very much!

1 Like