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

Translating models to several base-plate(s), advices please!?

Asked by 8 years ago

I want advice or a pointer in the right direction, so I believe that this is the best place for said advice?

Suppose that there are 4 base-plates (base-plate 1, base-plate 2, base-plate 3, base-plate 4) of the same size, if I have a model (lets say a pony) in the middle of one of the base-plates, would it be possible for me to translate (a.k.a move) that model to the other base-plate (in this case, lets say base-plate 2 which is a bit farther away from base-plate 1 (they are farther away on the x-axis only, they are floating base-plates in the sky), would it be possible for me to translate them and have them on like say a very exact or same position as base-plate 1? I hope you get me. Could you point me to the right resources or give advice on this?

1 answer

Log in to vote
1
Answered by 8 years ago

I'll try to give you the simplist method.

for i = 1,200 do
    script.Parent.CFrame = script.Parent.CFrame + Vector3.new(0,0,-0.1)
    wait()
end

What you can do here is play around with the "1,200" and try to get a number that goes to the baseplate. Just do not touch the "1".

Also, play around with the ZYX, it will help!

Any questions, feel free to ask!

:o)

PS: Put it in the part.

0
Thanks for the advice! Arithmeticity 167 — 8y
Ad

Answer this question