
Posts
684
Respect
175Add +1
Forum Rank
Zombie Enslaver
Primary Group
Scripter
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
card = spawn("script_model", something.origin);
players = get_players();
card SetVisibleToPlayer(players[0]);
card SetVisibleToPlayer(players[1]);
card SetInvisibleToPlayer(players[2]);
card SetInvisibleToPlayer(players[3]);card = spawn("script_model", something.origin);
players = get_players();
card SetInvisibleToPlayer(players[0], false);
card SetInvisibleToPlayer(players[1], false);
card SetInvisibleToPlayer(players[2]);
card SetInvisibleToPlayer(players[3]);- SetVisibleToPlayer(player): object is ONLY visible to that player.
- SetInvisibleToPlayer(player, false): object is visible to player.
- SetInvisibleToPlayer(player): object is NOT visible to player.