Hey , glad to see you!
iTween does not update specific properties on targets, it sends an interface message to that object. So in your case you’d want to implement iTInterface on your widget blueprint and set that as the OnTweenTick target. Then back in your widget blueprint, implement “Event On Tween Data Tick.” This will be fired every time the tween updates. One of the sends on the interface is “Float Value.” This is the current value of the float between your start and end floats, modulated by the tween. You can plug that value into your “Set Progress Bar Value” node, fired off every time “Event On Tween Data Tick” is called.
I used to have a video up for this, but I took it down because it wasn’t really relevant anymore in the new version. I plan to make a more current video very soon, I’m just ironing out some bugs and usability improvements first. Let me know if anything doesn’t make sense, I’ll do my best to explain it in detail!