Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you move a whole Model?

Asked by
PixelYT 30
9 years ago

So I was making a map changing script. The maps name is mini, I will try to move the Model out of SeverStorage but it tells me I can't move a whole Model.

Please help.

Script

local mini = game.ServerStorage.Mini.:Clone()
mini.Position = Vector3.new(0,0,0)

1 answer

Log in to vote
3
Answered by 9 years ago

Easy! Use MoveTo.

local mini = game.ServerStorage.Mini:Clone()
mini:MoveTo(Vector3.new(0,0,0))

0
You missed an error! Instead of Mini.:Clone() it should be Mini:Clone()! There's an extra, unneeded dot! Perci1 4988 — 9y
0
Oops! Fixed. figgycity50 70 — 9y
Ad

Answer this question