I want to change the position of a model is it possible
if you want to change the model position like all the parts use model:SetPrimaryPartCFrame(). This only works if you set the PrimaryPart properties in studio.
e.g.
model = script.Parent myvector = Vector3.new(0,0,0) mycframe = CFrame.new(myvector) model:SetPrimaryPartCFrame(mycframe)
you can also use MoveTo, as stated below in the comments. Use MoveTo if you just want to use Vector3 and not CFrames
model = script.Parent model:MoveTo(Vector3.new(0,0,0))