This means that Score- this is simply not a string, but something else, most likely coming from the database.
To be safe, use your own function:
Function My_IsNumeric(value)
My_IsNumeric = False
If IsNull(value) Then Exit Function
My_IsNumeric = IsNumeric(CStr(value))
End Function
Response.write My_IsNumeric(Score)
CStr() -, Null, , Null, , IsNull().