Hello,
I want to be invisible but If I use Vanish plugin to do that It also vanish entity which connected to me.
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.
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,