#Vanishing Skript

1 messages · Page 1 of 1 (latest)

round turtle
#

So basically i need a script that will:

  • Completely vanish players on join.
  • Can never be unvanished.
  • Hide join/leave messages from chat.
  • The player shouldn't be notified he has vanished.
  • Can't send messages in chat (can send commands).

I have tried multiple times to make it but failed. I would be grateful if someone could help me.

valid sonnet
#

Wanna send what you tried so far

round turtle
# valid sonnet Wanna send what you tried so far

last time i tried this

on join:
    set {vanished::%player%} to true
    loop all players:
        hide player from loop-player
    set join message to ""

on quit:
    if {vanished::%player%} is true:
        set quit message to ""

on chat:
    if {vanished::%player%} is true:
        cancel event```
valid sonnet
#

And what in this dident work

round turtle
#

player were not vanished

#

even there was no error in the script

valid sonnet
#

It seems fairly fine to me maybe instead of loop all players just do
Hide player from all players

round turtle
#
    set {vanished::%player%} to true
    hide player from all players
    set join message to ""

on quit:
    if {vanished::%player%} is true:
        set quit message to ""

on chat:
    if {vanished::%player%} is true:
        cancel event```

still its the same