This function is capable of converting any string that has gone through json back into a vector2() their by makeing it easyer to store vector2()s in a file, and retrieve them. :)
cords = "(1324, 1654)"
cords.erase(cords.find("("),1)
cords.erase(cords.find(")"),1)
cords.erase(cords.find(","),1)
var x = cords.left(cords.find(" "))
var y = cords.right(cords.find(" "))
cords = Vector2(x,y)
just wanted to let everyone use it because I couldn't find one that was already made.