Hey, whats the best way to move a large model from one place to a other? I have tried Cframe but its not smooth and tweenservice but I can't get it to work.
There is a simple way to move a model smoothly.
Use Model:MoveTo(Position), like so:
Position = Vector3.new(10,10,10) --Set this to the end position local model = Instance.new("Model", game.Workspace) -- Im putting parts into the model local part1 = Instance.new("Part") part1.Size = Vector3.new(4, 4, 4) part1.Position = startPosition part1.Anchored = true part1.BrickColor = BrickColor.new("Bright yellow") part1.Parent = model local part2 = Instance.new("Part") part2.Size = Vector3.new(2, 2, 2) part2.Position = startPosition + Vector3.new(0, 3, 0) part2.Anchored = true part2.BrickColor = BrickColor.new("Bright blue") part2.Parent = model -- I set the primary part model.PrimaryPart = part1 model.Parent = game.Workspace -- I move the model. model:MoveTo(Position)
Closed as Not Constructive by WideSteal321, EpicMetatableMoment, xPolarium, and Goulstem
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?