How to implement a Sliding Door in C++

Hello, currently I have a door opening in C++ using this:
FRotator DoorNewRotation = FRotator(0.0f, Output, 0.f); Door->SetRelativeRotation(DoorNewRotation);

I would like to also setup a sliding door, that opens to the side or up. I have tried using FTransform and FVector with no success. Has anyone implemented this using C++? Currently at a blocker with my doors at the moment.

Ok, FVector is the correct implementation. Connecting the Timeline Float Curve would help make it work. :man_facepalming: