Hello Guys How Could I Model parts together using a script
here is my script:
local Parts = {game.Workspace.Scripts.Noobis:WaitForChild("infront"), game.Workspace.Scripts.Noobis:WaitForChild("cylinder"), game.Workspace.Scripts.Noobis:WaitForChild("BR"), game.Workspace.Scripts.Noobis:WaitForChild("BL")}
local Model = game.Workspace.Scripts.Noobis.Guy
Parts.Parent = Model.Parent
To model the parts together into a new model, you can use the Instance.new method to create a new model, parent the parts to the model, and then set the Parent property of the model to the desired parent.