I don’t know why its doing this, Am i lerping wrong?
for i = 0,1,.01 do
wait()
PART.Position = PART.Position:Lerp(TARGET.Position, i)
end
I don’t know why its doing this, Am i lerping wrong?
for i = 0,1,.01 do
wait()
PART.Position = PART.Position:Lerp(TARGET.Position, i)
end
The variable “PART” is nil (aka it doesn’t exist, therefore your code is erroring), make sure you are defining the right instance within the variable.
its either the part or the target that is basically not found, be sure that both exists.