How to rotate a box trace with the pawns rotation?

Hi,
I have a SweepMulitByChannel raycast that I want to rotate with the pawns rotation that it is attached to. It currently only stays in one rotation. How would I get it to rotate with the pawn?

Here’s the raycast code

bool hitSuccess = GetWorld()->SweepMultiByChannel(Hit, Location, Location, FQuat::Identity, ECollisionChannel::ECC_GameTraceChannel1, CollisionShape, Params);
	
	DrawDebugBox(GetWorld(), Location, CollisionShape.GetExtent(), FColor::Red, false);

So My issue was that i was focusing on the debug lines, which doesn’t draw the exact box that the raycast is sending out. instead of having the start and end of the raycast the same (It was from a sphere trace tutorial), I just needed to calculate an end point and it works fine.