Anybody have a good part tweening snippet?
My idea is: Get the magnitude between the start and the end parts and divide it on 10 steps, every step being reproduced every Decimal of second (0.1), then get the part, each cycle adding one of the steps to the movement, and when it is on the 9th step, finish the translation and break the loop.
01 | function tweenPart(part, pos, timer) |
02 | local mathclass = ((part.Position.magnitude - pos.p.magnitude).magnitude) |
13 | part.CFrame = part.CFrame + mathclass |
Yes, I know this won't work. Just giving a base to you try to help me.
Thanks, in advance.