Changing Progress Bar percent

The Progress Bar’s percent is suppose to represent the value of the player’s current stamina, but when I play it’s just empty (0%).

The PlayerRef is referencing BP_Player which contains the variable stamina (ranges from 0 to 100).

And the value of Stamina is being set to something other than 0?

Starts at 100, decreases if the player is running or jumping and regenerates over time.

Are you setting PlayerRef to the specific instance of your player in your beginplay event? Otherwise your variable will be coming back null.

Have you tried debugging it with a Print String node?
Try printing the stamina value in addition to setting the percentage to that value.
If it’s correct, test both references in the same fashion.

there is great node for you: “map in range clamped”

Forgot to cast to BP_Player :rolleyes:

It works now, thanks for the comments :slight_smile: