Problem with UMG and Updating Text/Numbers

i have been getting this really strange problem and i cant figure it out. I want the text on my UMG Widget to update at a specific point, which i already have setup and is working, however, when it updates the text, the it seems that there is a second text of the old/first text behind the new updated text. It is also occurring on a Text label that i am not even changing (not editable). Here is what i am trying to explain.

Its the number which i am trying to increment, and its the ‘‘Wave:’’ which is constant, but used to do the same thing as the number, but just with the same ''Wave:" text, but i cant seem to reproduce that problem (with the wave text) since/after i changed some things around that i cant remember.
I want the “Wave:” To stay the same always, but the wave number(‘WaveText’ variable) to increment what told to do so (which i believe i have working), at this point i am just assuming its either a bug or something i am doing wrong (probably that). ((Also i turned off the shadow on the text as that is what i initially thought it might be??))
Here is what i have for the blueprint of it.

Thank you!

I have exactly the same problem, in UE 4.11.2. In my case, I draw the text over a semi-transparent image (although I don’t use any texture, just colours). If the image has opacity 1, then the problem disappears. However, I want it to reveal some of the scene underneath it. Any help?

It’s a couple years late, but in 4.20 I had the same problem. I was drawing the widget from the BeginPlay of the player’s character and if there were other characters of the same type (either AI controlled or controlled by other players), the UMG widget was drawing multiple times because I wasn’t checking to make sure that I only created the widget for the local player. I’m not sure if this was the cause of OP’s original problem, but if anyone else runs into this, double check multiple actors of the same type creating UMG widgets when you only want the local player controlled one to do it.