Sign with number of players

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

You could try something like this
obviously set the location, to the location of your sign, and change it to whichever line you would like

code_language.skript:
on load:
    set {login.count} to 0

on join:
    add 1 to {login.count}
    set line 1 of block located at 0, 0, 0 in world "world" to "%{login.count}%/100"

on quit:
    subtract 1 from {login.count}
    set line 1 of block located at 0, 0, 0 in world "world" to "%{login.count}%/100"
 
Not bad, but it gives 2 errors.
1. 59, 70, -8 in world "plots" is not a text
2. 59, 70, -8 in world "plots" is not a text
 
sorry i typed it wrong

code_language.skript:
on join:
    add 1 to {login.count}
    set line 1 of block at location at 0, 0, 0 in world "world" to "%{login.count}%"

on quit:
    subtract 1 from {login.count}
    set line 1 of block at location at 0, 0, 0 in world "world" to "%{login.count}%"
 
Or can you say my how I can make a join sign?
On the sign must stand the players in the world an when I make right click will I teleport to the world?
 
Im sorry I do not quite understand what you are saying, but if you are meaning if they click on a sign in TPs them somewhere,
try this
code_language.skript:
on right-click on sign:
    if event-location is location at 0, 0, 0 in world "world":
        teleport the player to location at 0, 0, 0 in world "other world here"