Search components the player

Demo

Member
Member
Mar 3, 2016
108
14
18
28
Parts Unknown
Good afternoon - there was such here a question - is it possible through the server to the client player to monitor third party components?
If Yes give an example of a tracking command

Ready.Load.AddComponent<ESP_Animal>();
 
Last edited:

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,093
4,784
113
At your house.
github.com
Good afternoon - there was such here a question - is it possible through the server to the client player to monitor third party components?
If Yes give an example of a tracking command

Ready.Load.AddComponent<ESP_Animal>();
You can only add server sided components.
 

Demo

Member
Member
Mar 3, 2016
108
14
18
28
Parts Unknown
I mean check out the player?Something like this...

Code:
var rootControllable = netuser.playerClient.rootControllable;
                   ESP_Animal ESP_Animal = rootControllable.GetComponent<ESP_Animal>();
                   if (ESP_Animal == null){
                   Player.Message("No Component");
                   else {
                   Player.Message("Yes Componen");;