|
| 28 Jul 2016 11:07 PM |
So lets say you did this repeat wait(1) script.Parent.Size = script.Parent.Size - Vector3.new(1, 1, 1) until script.Parent.Size == Vector3.new(0, 0, 0)
and then you try to walk, the brick goes ontop of your head because you "clip" inside of it.
How do you fix that
|
|
|
| Report Abuse |
|
|
| |
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
| |
|
|
| 28 Jul 2016 11:12 PM |
but I don't wanna lower the plate. Do you have to?
|
|
|
| Report Abuse |
|
|
|
| 28 Jul 2016 11:13 PM |
how would u do it in the case above, I want the plate to be still tho
|
|
|
| Report Abuse |
|
|
| |
|
Casualist
|
  |
| Joined: 26 Jun 2014 |
| Total Posts: 4443 |
|
|
| 28 Jul 2016 11:33 PM |
"So lets say you did this..." I wouldn't do that. The minimum size of a part is .2,.2,.2 so it'll never reach 0,0,0.
repeat wait(1) local cf = script.Parent.CFrame script.Parent.Size = script.Parent.Size - Vector3.new(1, 1, 1) script.Parent.CFrame = cf until script.Parent.Size.magnitude <= (3*.2^2)^.5+.001 |
|
|
| Report Abuse |
|
|
| |
|