Skip to content
home/templates/server info sidebar
sidebarIntermediatemc 1.20.x – 1.21.x15 lines

server info sidebar

scoreboard showing the player's name, online count, world, and server ip. refreshes every 5 seconds.

required addons — install before reloading
  • download skBeeAdds scoreboards, hologram text, and other things Skript can't do on its own.
Drop each .jar into your plugins/ folder, then restart your server.
server-info-sidebar.sk15 lines
on join:
    delete player's sidebar
    set title of player's sidebar to "&6&lMY SERVER"
    set line 6 of player's sidebar to "&7&m------------"
    set line 5 of player's sidebar to "&eName: &f%player%"
    set line 4 of player's sidebar to "&eWorld: &f%player's world%"
    set line 3 of player's sidebar to "&7Online: &f%number of all players%"
    set line 2 of player's sidebar to "&7&m------------"
    set line 1 of player's sidebar to "&eplay.example.com"

every 5 seconds:
    loop all players:
        set line 4 of loop-player's sidebar to "&eWorld: &f%loop-player's world%"
        set line 3 of loop-player's sidebar to "&7Online: &f%number of all players%"

get it running

server-info-sidebar.sk · 15 lines · needs skBee
  1. 1

    copy or download

    grab the .sk file with the buttons up top.

    server-info-sidebar.sk· ready to drop in
  2. 2

    drop it in your scripts folder

    save it exactly here on your server — no typos, just copy the path:

    …/plugins/Skript/scripts/server-info-sidebar.sk
  3. 3

    reload in-game

    run this in chat or console — your script goes live instantly:

    /sk reload server-info-sidebar
that's it — your script is live. hop in-game to try it.

comments