Enum issue

Hello all im having an issue where in my widget i want to be able to get the name in my Enum say 0 is set to warrior. When i connect it to a set text (text) and convert it to a string all i get is the number of the line in this 0 not the word warrior am i missing something ?

When auto converting to text, enum is treated as byte. You’d need to convert first to string (Enum to String), and then to text.