Making entities visible while vanishing?
Hello,

I want to be invisible but If I use Vanish plugin to do that It also vanish entity which connected to me.

			string prefab = "assets/bundled/prefabs/static/bbq.static.prefab";
			var prop = GameManager.server.CreateEntity(prefab);
			prop.limitNetworking = false;
			prop.SetParent(player);
			prop.SetFlag(BaseEntity.Flags.Locked, true);
			prop.transform.localPosition = new Vector3(0f, 0f, 1.3f);
			prop.Spawn();​

What I want is I want to be invisible without entity being invisible.
Is there a way to remove playermodel or Can I reappear only the entity?

Ty,
> I want to be invisible but If I use Vanish plugin to do that It also vanish entity which connected to me.

You mean that if you open BBQ it will also be invisible?
In response to Orange ():
> I want to be invisible but If I use Vanish plugin to do that It also vanish entity which connec...
It already become invisible I want it to be visible.

Result should be   

player = invisible

prop = visible
In response to Orange ():
> I want to be invisible but If I use Vanish plugin to do that It also vanish entity which connec...
Sorry but replying again because I couldnt edit my last message.

No I dont want it to be removed when I open it.

I want it to be visible to players when I vanished.