Rotating grabbed object relative to player

Hello. I would like to have possibility to rotate grabbed objects by mouse wheel like on this video:

I already can grab my object, and it is allways faced to player, which is good. Everything went well, but I tried to make those rotations, and it just don’t work for me. Any hints, or maybe tutorials on how to do this? Thanks!

Here is a part of my blueprint where I grab this object

You can try something like this.

Thank you for your answer. But sadly it don’t work in this case. Object “tries” to rotate, but i think because of this (selected on screenshot) part, it gets back on its earlier position when I stop rotating it. Second thing is that it tries to rotate around it’s own axis, and I need it to be more like on this video.

I found solution by myself. It was more like by trial and error, and accident, but I did this. The solution may seem simple. I just use two scenes to handle “Physics handle”. One for location and rotation of held object and second one for rotation of first scene in one axis. The one for rotation of first scene is a “parent” for the one that actually hold an object. Both scenes must be at the same location! I dont really know how to explain it, but I hope it will save some time for those who are looking for this. Here’s my blueprint.

In this case, object will rotate around point where line trace hit.

Cubes are just my references to know what scene is what, but they do nothing and can be removed. I know my blueprint may seem like a mess, but I am new at Unreal Engine. It is also possible that there are much easier ways to do this, of course.