Question on MovePart() Collisions

I have a simple question and I am looking either for an alternative way to move positions of MODELS not PARTS.

Basically, using the MoveTo() line, I noticed that collisions are on and you can not move a model inside an object, it will just move on top of whatever it was supposed to collide with. Here below is my code.

   plant:MoveTo(Vector3.new(-78.259, -1.11, 17.953))
--- moving inside another part which is moving the "plant" on top of that part. 

I just need either an alternative that ignores collisions or some type of code that can make Vector3 ignore collisions and not move above the part I am trying to put it in.

You may want to use set your collision properties in such a manner that it will ignore the part. You can read this article if you are unsure.

(Note: you may need to set the properties of individual parts within the model by looping through it!)

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.