Does GDScript have a built-in sum() function? To add up all the floats in an array for example.
Nope. You'd have to do it manually, or make the function yourself.
static func sum_array(array): var sum = 0.0 for element in array: sum += element return sum