code used:
script.Parent.Place.Position = Vector3.FromAxis(Enum.Axis.Y(Enum.Axis.Y + 10))
Vector3.FromAxis only accepts 1 argument, that being the Enum.Axis, nor is Enum.Axis.Y a function which you can call. If you need to add an additional 10 studs to any axis which you made you can do:
Vector3.FromAxis(Enum.Axis.Y) * Vector3.new(10, 10, 10)