FInterpTo over time

If i understand your question correctly, you need to use the tick function’s DeltaTime parameter.

void AYourCharacter::Tick(float DeltaTime)
{
	Super::Tick(DeltaTime);
    ADSTime = DeltaTime;
}

And then you can use this variable in your FInterpTo.