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

Positioning not working ?

Asked by
Bulvyte 388 Moderation Voter
7 years ago
Edited 7 years ago
p = script.Parent
p.Position = Position.new ("192, 10, 200")

This just should move its position but doesn't why ?.... ;-;

1 answer

Log in to vote
1
Answered by 7 years ago
Edited 7 years ago

Position.new isnt a thing, try vector3.new. Also dont use "" on numbers as they arent strings. You could also use CFrame to move the object.

p = script.Parent
p.Position = Vector3.new(192,10,200)
0
Thanks, worked Bulvyte 388 — 7y
Ad

Answer this question