I am trying to move a model, but I have no clue how, what I tried was:
while true do game.Workspace.Model.Position = game.Workspace.Model.Position + Vector3.New(0, -0.1, 0) wait(0.1) end
Does anyone know how to move a model?
http://wiki.roblox.com/index.php?title=API:Class/Model/MoveTo You must have primarypart set for the model.
game.Workspace.Model:MoveTo(Vector3.new(0,0,0))
You would use a little thing called MoveTo(). MoveTo is a way to move models. You can use it in a really easy way to move the model. Like this:
while true do game.Workspace.Model:MoveTo(Vector3.new(0, -0.1, 0)) wait(0.1) end