Answered by
2 years ago Edited 2 years ago
Next time, please add more explanation to your description other than the title. To format your code to a code block, click the Lua button up between the Title and Description boxes. Clicking it should appear two lines of 17 tildes (~), in separate lines, and a blank line in between. In that blank line is where you paste your code.
Solution
You're trying to lerp part.CFrame
to itself, which will always return part.CFrame
. I think you were trying to lerp part2.CFrame
instead of part.CFrame
.
1 | local part = workspace.P 1 |
2 | local part 2 = workspace.P 2 |
6 | part 2. CFrame = part 2. CFrame:Lerp(part.CFrame, 0.75 ) |