Ignore all actor besides item

I have my trace, which checks for ITEM ACTOR and draws it’s name to screen. BUT it draws names of walls and floors too. How i can ignore all actors besides item actor?

Do a cast to your item BP after the trace like so:

Now it should print only if you hit the item BP.

But what, if i need to print screen 8 objects, and ignore only two?

In that case you can give the same Tag to those items and then get Out Hit Actor > Actor Has Tag > use that bool for a branch after line trace. Let me know if you dont know how to use tags and i’ll try to explain in more detail.