Custom mob health/bar

  • 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Milo Bruhn

Member
Nov 8, 2021
4
0
1
23
Hiii

Is it posible with skript to make a health bar over every spawned mob just like in hypixel skyblock? i wanna be able to customize all my mobs with levels and health.
 
here ya go
Code:
command /test:
  trigger:
    summon zombie at location of player
    set max health of last spawned mob to 30
    set health of last spawned entity to 30
    set {_mhp} to maximum health of last spawned entity
    set {_hp} to health of last spawned entity
    set display name of last spawned mob to "&cZombie &a%{_hp}%&f/&a%{_mhp}%"

on damage of zombie:
  if display name of victim contains "&cZombie ":
    set {_hp} to health of victim
    set {_mhp} to maximum health of victim
    set display name of victim to "&cZombie &a%{_hp}%&f/&a%{_mhp}%"
 
Status
Not open for further replies.