Skip to content
home/templates/event countdown bossbar
cosmeticIntermediatenewmc 1.20.x – 1.21.x22 lines

event countdown bossbar

display a server-wide bossbar counting down to a timed event. color shifts from green → yellow → red as time runs out.

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.
bossbar-event.sk22 lines
command /event start:
    permission: event.admin
    trigger:
        set {event.end} to 10 minutes from now
        loop all players:
            create new bossbar with id "event" with title "&aEvent starts in 10:00" and progress 1 with color blue and style 6 segments for loop-player
        send "&aEvent started!" to player

every second:
    if {event.end} is set:
        set {_remaining} to difference between now and {event.end}
        if {_remaining} <= 0 seconds:
            loop all players:
                remove bossbar with id "event" from loop-player
            broadcast "&6Event ended!"
            delete {event.end}
            stop
        set {_pct} to {_remaining} / 600 seconds
        loop all players:
            set progress of bossbar with id "event" of loop-player to {_pct}
            set title of bossbar with id "event" of loop-player to "&aEvent: &f%{_remaining}%"

get it running

bossbar-event.sk · 22 lines · needs skBee
  1. 1

    copy or download

    grab the .sk file with the buttons up top.

    bossbar-event.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/bossbar-event.sk
  3. 3

    reload in-game

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

    /sk reload bossbar-event
that's it — your script is live. hop in-game to try it.
/ related templates

more cosmetic templates

comments