Ok I have this bit of code in my 'enemies' movement (so its name is above its head):
Code:
	vec_set(text_loc, vector(my.x, my.y, my.z + 50));
vec_set(temp, text_loc);
vec_to_screen(temp, camera);
draw_text("Bobby-Lu", temp.x, temp.y, nullvector);



So now its name floats above its head no matter where it goes...however that includes behind walls, buildings etc you can still see the Text!

How to make the Name of the enemy invisible when you can't see it? Thanks in advance for any help you may give!