ChaoticRedstone

How To Make Jumpscares In Minecraft!

Oct 22nd, 2016
1,444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. //Watch my youtube video for help:
  2.  
  3. //Summon Armorstand
  4. > /summon ArmorStand ~ ~1 ~ {CustomName:"j",Invisible:1,Invulnerable:1}
  5.  
  6. //give player slowness when near armorstand
  7. //set this command block to repeat and always active!
  8. > /execute @e[type=ArmorStand,name=j] ~ ~ ~ /effect @a[r=1] slowness 1 2 true
  9.  
  10. //play scary sound
  11. //set this command block to chain and always active!
  12. > /execute @e[type=ArmorStand,name=j] ~ ~ ~ /playsound entity.endermen.scream voice @a[r=1] ~ ~ ~ 1 1
  13.  
  14. //give player blindness near armorstand
  15. //set this command block to chain and always active!
  16. > /execute @e[type=ArmorStand,name=j] ~ ~ ~ /effect @a[r=1] blindness 1 5 true
  17.  
  18. //kill armorstand after the previous command
  19. //set this command block to chain and always active and conditional!
  20. > /kill @e[type=ArmorStand,name=j,c=1]
Advertisement
Add Comment
Please, Sign In to add comment