It’s supposed to print jaree as soon as I see that tween happen but instead only 1 tween in that coroutine happens, and then it doesn’t do the other tween. It prints jarhe but nothing after that.
This is critical lua error. Not my erorr.
i din’t understood this script alot but , i just got a random script i use alot on my games, i din’t used TweenService on this, because i feel like CFrame:Lerp is a bit more smooth and clean
local part1 = "YourPartPathHere"
local part2 = "YourPartPathHere"
for i = 0,1,.01 do
wait()
part1.CFrame = part1.CFrame:Lerp(part2.CFrame, i)
print("jaree")
end