Trace Line Return problem (Video)

The trace line should return the WeaponMaster_BP Object and make it a variable.
But the variable is not equal to the WeaponMaster_BP object Even though it says that it is.
I don’t know why.
any help would be appreciated.

The reason why your equal node not working, is because any instance of your BP will not equal to other instances, even if they are the same class.
Any blue variable is a instance of a class, and purple ones are class reference, so use that.

You can solve by either getClass of an object, or just simply cast.(cast might not be 100% safe though.)

Yep that was it Thanks penguin :slight_smile: