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

    Now, what are you waiting for? Join the community now!

  1. PixelCraft_I_D_K

    Solved Clickable Text Problem

    This is my code send "On/Off &8- <command:{}toggle>&cOFF<reset>" to player When it sends in-game, I can't click it though, the command does perfectly work please help! thank you!
  2. PixelCraft_I_D_K

    Skript How to make a simple proximity chat system with loop-value

    Hello! This is a simple Skript tutorial on how to create a Skript proximity chat system. How it works: It will tell the player how many people heard them and it will send the player's message to everyone within a 12 (configurable) block radius. Skript Template: on chat: loop all players...
  3. PixelCraft_I_D_K

    On right click on text display or block display

    Hello! I need help with "On right click on text display or block display". I've tried a few things and they don't seem to work. Help if possible! (Thank you!) CURRENT CODE: on right click on entity: if entity is a block display: send "Clicked!" to player
  4. PixelCraft_I_D_K

    If beacon is activated

    I've been skripting for a long time and I still can't get past the "if beacon is activated" obstacle. There is no way to tell in vanilla Minecraft anyway, and I can't seem to do it with Skript. Help if possible! :D
  5. PixelCraft_I_D_K

    Skript /team command (vanilla command)

    Hello! With the /team command in vanilla Minecraft, how can I use it to give players a chat prefix if they have a certain team in chat? I'm using: Vault, Skript, Skript-Mirror, Skript-Reflect Version: 1.21
  6. PixelCraft_I_D_K

    Solved Luckperms Groups

    Hi there! I perfectly understand how to make LuckPerms groups, but it's not working on my version of Skript. I'm using the 1.21 version of Skript. I have the LP plugin and my server is 1.19. Everything should be working fine, however, it is not. I am using the set {group::%player's uuid%} to...
  7. PixelCraft_I_D_K

    Sound Overlap

    Hi there! I'm trying to make an in-game music Skript where it loops the cat disc. I calculated the exact number of minutes the disc is (im using a texture pack) and when I play it in-game it works but the sound plays over itself. I can't figure out how this happens. Here is my code: command...
  8. PixelCraft_I_D_K

    Block's UUID in a variable

    Hi there! I was just wondering how you'd put a block's UUID inside a variable. I'm trying to give the block data (a variable) when right clicked on by a certain item. I have to use %block's uuid%, but that's not working. If I used %player's uuid% that wouldn't work either, since only admins are...
  9. PixelCraft_I_D_K

    Detect if player is holding an item with a specific NBT

    Hi there! I'm making a lightsaber Skript and it has a custom NBT. I'm trying to make it so when you hold the sword and deal damage to an entity it does damage. The error is that it's detecting the unbreakable NBT, and it doesn't think it's the damage item. Here is my code: command...
  10. PixelCraft_I_D_K

    Citizens only target prefix

    Hi there! I am making an SCP server and want a guard to attack only the "Class-D" prefix. ("&6Class-D &f" in Luck perms) Every code I try, it's not working. If anyone could help me, I'd appreciate it a lot! Thank you! :emoji_grin: Code: on entity target: if entity is a citizen...
  11. PixelCraft_I_D_K

    SK - Phones

    Hi there! I don't know how to continue this skript farther. Here is my idea: I'm trying to make a phone skript for an RP thing, and I want it so when the player accepts the call with an accept command, which I also need help with, they will be able to chat with the player. I'm thinking of using...
  12. PixelCraft_I_D_K

    Levels won't work

    Hi there! I made a Skript for my job-related server and you need levels to rank up. You need level 50 or higher to rank up with a certain job command. I'm level 54, and it says I have to be at least level 50 to do it (It means I'm not a high enough level even though I am.) If y'all could help...
  13. PixelCraft_I_D_K

    Multiple spawn points

    Hi there! I'm trying to make a zombie apocalypse server and I want players to be spread around the map when they first join. I've tried integers and those aren't working. If anyone could help me out, that'd be great. Thank you! :emoji_grin:
  14. PixelCraft_I_D_K

    How to make a player's screen shake

    Hi there! Is it possible to make a player's screen shake with Skript? If it is, please let me know. Things I've tried: Teleporting the player to themselves Lagging the server a bit Constantly killing the player and teleporting them in the same location
  15. PixelCraft_I_D_K

    Chat prefixes

    I'm trying to make a custom chat format where it says your rank, your user, then your message. I'm using %player's prefix% and %colored player's prefix% but those aren't working. Here is my code. on chat: cancel event broadcast "%player's prefix% %player%&f: %message%"
  16. PixelCraft_I_D_K

    Detect if player is facing a certain block

    Hi there! I need some assistance with detecting if a player is facing a certain block. Here is my code. on right click: if player is holding white dye named "&f&lDoor Open": if player is facing iron door: make player execute command "thru" else: send...
  17. PixelCraft_I_D_K

    Switching locations of players

    Hello! I would like to use an egg to switch player's locations when they right click on a player. If they don't right click on a certain player when right clicking, it doesn't remove the egg from the inventory and doesn't execute any commands. Can you help me out here? My code right now: on...