Advertisement
TheBraveSnail

Squid game skript

Oct 24th, 2021 (edited)
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. #Do NOT REMOVE
  2. #Credit:TheBraveSnail
  3.  
  4.  
  5. variables:
  6. {effect.red} = false
  7. {check.move} = false
  8.  
  9.  
  10. on right click with green wool:
  11. player is op
  12. send title "&aGreen Light" with subtitle "&aYou can move now" to all players for 2 seconds
  13. play sound "block.amethyst_block.break" with volume 1000 and pitch 1 to all players
  14. set {check.move} to false
  15.  
  16. on right click with red wool:
  17. player is op
  18. send title "&4Red light" with subtitle "&4You better stop moving" to all players for 2 seconds
  19. play sound "block.anvil.fall" with volume 1000 and pitch 1 to all players
  20. wait 0.5 seconds
  21. set {check.move} to true
  22.  
  23. on damage:
  24. attacker is a player
  25. attacker is holding a stick named "&4The Eliminator"
  26. attacker is op
  27. victim is player
  28. broadcast "&cThe player &d%victim's name% &cis eliminated! in 5 seconds"
  29. wait 1 second
  30. broadcast "&cThe player &d%victim's name% &cis eliminated! in 4 seconds"
  31. wait 1 second
  32. broadcast "&cThe player &d%victim's name% &cis eliminated! in 3 seconds"
  33. wait 1 second
  34. broadcast "&cThe player &d%victim's name% &cis eliminated! in 2 seconds"
  35. wait 1 second
  36. broadcast "&cThe player &d%victim's name% &cis eliminated! in 1 second"
  37. kill victim
  38. play sound "block.chain.break" with volume 1000 and pitch 1 to all players
  39.  
  40. command /eliminate-stick:
  41. permission: squid.perm
  42. trigger:
  43. give player stick named "&4The Eliminator"
  44.  
  45.  
  46. command /redgreen_on:
  47. permission: squid.perm
  48. permission message: "&cYou do not have permission to perform this action."
  49. trigger:
  50. send title "&aThank you for playing my game" with subtitle "&aMade by TheBraveSnail##1760" to all players for 2 seconds
  51. send "&ePlayersJump &7>> &cDisabled"
  52. apply jump boost of tier 200 to player for 100000 days
  53. remove jump boost from player
  54.  
  55.  
  56. command /redgreen_off:
  57. permission: squid.perm
  58. permission message: "&cYou do not have permission to perform this action."
  59. trigger:
  60. send "&ePlayersJump &7>> &2Enabled"
  61. remove jump boost from all players
  62.  
  63. on any move:
  64. if {check.move} = true:
  65. if player is not op:
  66. broadcast "&e&l%player% &chas moved"
  67.  
  68.  
  69.  
  70. command /squidgame:
  71. trigger:
  72. give player 1 green wool
  73. give player 1 red wool
  74. give player stick named "&4The Eliminator"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement