ID:168453
 
Right, I havent used byond for abit and i have forgot alot. So this is rather simple problem. right. All i want is if this
usr.overlays += new/obj/ssjtop

Creates this obj, which appears above the head of the mob, what is the code line to delete it?
usr.overlays -= /obj/ssjtop

?
In response to Mysame
That'll work, but only if you remove the "new" from the addition:

usr.overlays += /obj/ssjtop


Also note that once a character (or any object) has been saved and re-loaded, its overlays cannot be removed. To get around this, remove all overlays before saving a character and re-add them after loading it.
In response to Crispy
A right thanks, i had tryed that but i hadnt realised it need to +instead of new.