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

Anybody have a good part tweening snippet?

Asked by 11 years ago

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.

01function tweenPart(part, pos, timer)
02    local mathclass = ((part.Position.magnitude - pos.p.magnitude).magnitude)
03    local times = 10
04    repeat
05        wait(timer)
06        times = times - 1
07 
08        if times == 1 then
09            part.CFrame = pos
10            break
11        end
12 
13        part.CFrame = part.CFrame + mathclass
14    until times == 0
15end

Yes, I know this won't work. Just giving a base to you try to help me.

Thanks, in advance.

0
Bump 1 lucas200206 90 — 11y

Answer this question