How to calculate vector depending on rotation?

I want to change location of my character depending on it’s rotation so if I go forward it has to move forward as it’s facing. Do I have to manually calculate sines/cosines or is there any method which can help with it?

You can use the node “Get Forward Vector”. This will return the vector that you need to move your Actor.

It is exactly what I was asking for, thanks.