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

Problem with MoveTo, any ideas?

Asked by 10 years ago

Usually I don't have a problem with MoveTo, but as I try to move a model in this script it flickers from side to side, which ruins the entire effect. Is there any other way to move the model, or is there a mistake I'm making which is screwing up MoveTo?

01local xpos = Workspace.Model.Base.Position.x    
02wait(3)
03 
04 
05delay(0,function()
06for i = Workspace.Door1.Position.X, Workspace.Door1.Position.X - Workspace.Model.Base.Size.X/2, -0.2 do
07Workspace.Door1.Position = Vector3.new(i, Workspace.Door1.Position.Y, Workspace.Door1.Position.Z)
08wait()
09end
10end)
11 
12delay(0,function()
13for i = Workspace.Door2.Position.X, Workspace.Door2.Position.X + Workspace.Model.Base.Size.X/2do
14Workspace.Door2.Position = Vector3.new(i, Workspace.Door2.Position.Y, Workspace.Door2.Position.Z)
15wait()
View all 22 lines...

1 answer

Log in to vote
0
Answered by 10 years ago

The bricks are probably the same size, and moving one to another's position will cause flickering since they're in the same spot as each other. I'd recommend you make one a custom size, which is just a tad bit smaller than the other.

Ad

Answer this question