hud: cast failed like realy the text is blanc

when the widget comes up the binded text is blanc

  1. What your function “Get Text 0” is doing is casting a Player Controller to a Player Character (which will fail every time).
  2. Once you change either “Get Controller” or “Cast to Character” and it no longer fails, the node path will immediately end without doing anything, as a “Return Node” acts as a full stop - it lets Unreal Engine know that a particular node path doesn’t need to do anything else.
  3. Is this script on the widget?

yes but please give me a solution

You can’t cast from The Player Controller to the Character, they are very different classes. You should be using Get Player Pawn to get the Pawn (Character Classes are based off the Pawn class)