Minecraft – How to make a Beacon Ride an invisible silverfish

minecraft-commandsminecraft-java-edition

On certain maps, I have seen blocks riding invisible, invincible, and silent silverfish. How would I do this with a beacon? It looks like the block is just walking around on its own. (1.8)

Best Answer

/summon FallingSand ~ ~ ~ {Block:"minecraft:beacon",Time:1,Riding:[{id:Silverfish,ShowParticles:0,Silent:1,ActiveEffects:[{Id:14,Amplifier:1,Duration:1000000},{Id:11,Amplifier:100,Duration:1000000}]}]}

OR for 1.9 and above

/summon Silverfish ~ ~ ~ {ShowParticles:0,Silent:1,ActiveEffects:[{Id:14,Amplifier:1,Duration:1000000},{Id:11,Amplifier:100,Duration:1000000}],Passengers:[{id:FallingSand,Block:"minecraft:beacon",Time:1}]}

EDIT: Use this command on a repeating command block to reset its timer as after 30 sec, the falling sand would despawn

/entitydata @e[type=FallingSand] {Time:1}