Pickup that speeds up a ProgressBar

how do you make a pickup that speeds up a ProgressBar

say i have a ProgressBar value that takes 10 seconds to got from full to empty

the pickup would speed up the ProgressBar value so it would only take say 5 seconds to got from full to empty

basically the pickup helps the player by speeding up the amount of time taken to got from full to empty

there’s a unreal tutorial that does that does something similar to what you want to, using the a similar logic could solve your problem, in case you want to watch the tutorial:
https://docs.unrealengine.com/latest/INT/Videos/PLZlv_N0_O1gYup-gvJtMsgJqnEB_dGiM4/mSRov77hNR4/index.html

But to make your progress bar goes from full to empty in 10 seconds then you’re making a loop that decreases the bar for every time, let’s say you remove 1% delay 0,1 seconds and loop it till it reaches 0, what you could do is promoting this “1%” to a variable, let’s call it DecreaseRate, and when the player take the pickup change this DecreasRate to it’s double.

ok cool cheers will give it a try