Search results

  • 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. C

    Solved PlaceholderAPI integration

    hey, so basically this skript places the player in a group if they've reached 2000 points on join: set {_score} to placeholder "playerpoints_points" message "&eYOU HAVE %{_score}% POINTS" if {_score} is more than 2000: execute console command "pex user %player% group set pro"...
  2. C

    Equip a Player's Skull

    Is it possible to equip a player skull with a specific texture id? i was thinking would be something like equip player with skull_item with texture 'eyKDFdfinfmmeifsiufbsfsdfdsfsdcdsfsdfsdfsdf='
  3. C

    Auto Equip Armor

    Anyone know of a way to automatically equip armor into their slots? i've got kits that run from a gui menu, so i'm using the command /kit (kit) %player%. I do know of the replaceitem command but the armor in the kits have a lot of tags (enchants, name, lore) so i imagine it might be a tad...
  4. C

    Solved Right click whilst sneaking

    so, i'm trying to create an effect when a player right clicks whilst sneaking. the code that i have only executes if a player right clicks a block when sneaking. how can i make it so the effect executes when a player right clicks in general whilst sneaking? on rightclick: if player is...
  5. C

    drawSphere question

    Is it possible to use the drawSphere effect from skDragon to create a sphere that can roll and then hit a player and damage them, through an explosion or something?
  6. C

    Solved on right click with potion

    i'm trying to set up a potion spell where if a player right clicks holding it, it will execute a command. I can't figure out what the right event is. This is what I have currently as the event: on right click with potion: if name of tool of player is "&6Health Spell": Skript says it...
  7. C

    Solved A Question (or 2) About Console Commands

    Hey, I've got quite a few Skripts that execute vanilla console commands (/playsound, /effect) when players perform certain actions on my server, such as right-clicking a held item. The only problem I have is that all of these commands are inputted into the console log and into chat as I am OP...
  8. C

    Solved Naming Click Items

    Hello, I'm trying to make an item in where it is right click from the player's hotbar, and will execute a command. The only problem I have is executing the command from a named item. Here's my skript that doesn't seem to be working: on right click: if player's tool is a bow...