p = script.Parent p.Position = Position.new ("192, 10, 200")
This just should move its position but doesn't why ?.... ;-;
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)