Error CS0029

Hello everyone,
I have a problem in Unity, its error CS0029. :frowning: I’ve tried to fix them, but i can’t. If someone can help me, it would be awesome. :slight_smile:
When i click on error, it shows me that error is here:
96732-bandicam-2017-06-28-02-13-34-980.jpg

I am makeing an RPG game and im trying to make that my character moves where i click on map. Please help… Thank you.

one = is assignment, whereas you want comparison, which is ==.

if (InteractionObject.tag == "Interactable Object")
{

}