Touch/Mouse Drag 3D Models

I want to be able to Drag and Drop a 3D Object like in the gif below, but not sure if it’s possible.

The method I show uses the “Draggable Object” Behavior, but does not work for 3D because the collision box doesn’t follow the models Z value when its elevation changes. I need to drag the invisible hitbox that’s still on ground level.

1000061035

You could check if the player is in collision with a box, increase its z position by the box’s z height. If it’s not in collision with anything, change the z position to 0 or whatever ground level is

This is the events I used for this. I feel like it should work, but only works visually.