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)
Easy! Use MoveTo.
local mini = game.ServerStorage.Mini:Clone() mini:MoveTo(Vector3.new(0,0,0))