Recent content by ItsPedruu

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

  1. ItsPedruu

    Not Offline Spawning

    '-' I don't know how your skript works, but i think it should be something like this. every 10 second: loop {coinspawner::*}: set {_owner} to asb owner of island at loop-value if {teammate.%{_owner}%} is online: if {_owner} is online: drop 1...
  2. ItsPedruu

    Solved Variable changing its value without input?

    I don't know for what you are using that variable for but you can fix by using: set {helmet.%player%} to "%player's helmet%"
  3. ItsPedruu

    Remove created bossbar (Skellett)

    Create a bossbar and store it... command /bossbar: trigger: set {bar} to new bossbar add player to bossbar {bar} ...And hide the bossbar choosing one way from these ones below: command /hidebossbar: trigger: hide bossbar {bar} set the visibility of...
  4. ItsPedruu

    Not Offline Spawning

    Use the is online condition player is online In your case, you can store the player teammate in a variable and check if it is online. set {teammate.%player%} to {otherPlayer} ... if {teammate.%player%} is online: message "Your teammate is online!"
  5. ItsPedruu

    Script Elevator

    ItsPedruu submitted a new resource: Elevator - A fully configurable elevator skript Read more about this resource...
  6. ItsPedruu

    Script Elevator 1.0

    This skript doesn't require any addons! CONFIGURATION You can change all these options: options: elevatorItem: stone brick # The item to use as an elevator elevatorItemName: "&b&lElevator" # The item name for the elevator elevatorReceived: "&aYou've received an elevator." # This...
  7. ItsPedruu

    Hiring Kit GUI System

    Add me on Discord xGrow#9806
  8. ItsPedruu

    Solved How to use nbt tags on items

    As Mr_Simba said, the correct syntax is: add "{nbtTag}" to nbt of last spawned entity So your code would be something like this (Not tested): drop 1 stone hoe at {SpawnOFPistolV2} add "{CustomName:""&2Pistolet&cV2"",CustomNameVisible:1,NoGravity:1b}" to nbt of last spawned entity