Range repeat? like 50 to 100 then back to 50

i’m not sure if this was already asked before Mathf.Repeat always start at zero how do i make it start on what number i want?

noob question

You should just be able to add the initial value to the result of Mathf.Repeat()

var answer = 50f + Mathf.Repeat( Time.time * TimeMultiplier , 50);