[UMG] How to set start value between 50 - 100 on slider in widget?

I got a problem that slider always show me 0 from start.
so I want to made slider that begin point is start by 50 and end point by 100 (0.0 = 50 / 1.0 = 100)
but result always appear as 0.0 = 0 / 1.0 = 100 (and 0.5 = 50)

if you can’t understand what I am saying, here pictures.

You can use the Map Range Clamped node for this purpose.If you want to set the slider value, set the In Range parameters to 50.0 & 100.0, and the Out Range parameters to 0.0. and 1.0.

On the other hand, if you want to use the slider value to calculate the corresponding value between 50.0 and 100.0, just swap the In Range & Out Range parameters.

ty that’s helpful