Get end of line trace when the trace doesn't hit anything

I use a line trace to get the hit location then rotate an object to face that hit location.

But when I trace into open space and it doesn’t hit any objects so I cant get a hit location.

I need to get the location where the trace ends when it doesn’t hit anything and rotate the object to face that location but I don’t know how.

Tell me if this isn’t detailed enough or I need to show the blueprint and I will add more detail and show the blueprint.

Hi jaijai67,

If you are just trying to get the end of the trace line. You can return the values that you plugged into the “End location” after the trace runs. Just run a branch that, if the return value == false, get the end location of the trace for whatever you are trying to do.

Thanks, didn’t think of that