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

This post has been postn't //?

Asked by 4 years ago
Edited 4 years ago

This post has been postn't //?

1 answer

Log in to vote
1
Answered by 4 years ago

It's because the script is expecting a Vector3, not a CFrame value. Example =

part.CFrame = Vector3.new(69, 420, 80085) -- CFrame expected, got Vector3
part.CFrame = otherPart.Position -- CFrame expected, got Vector3

it obviously also goes the other way around. You want them both to be the same

1
hmm, It seems to be working now. Thank you! develop_d 53 — 4y
Ad

Answer this question