Advertisement
f_dumbo

snowy

Dec 3rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. part = Instance.new("Part", game.Players.LocalPlayer.Character.Head)
  2. part.Size = Vector3.new(5,5,5)
  3. mesh = Instance.new("SpecialMesh", part)
  4. mesh.MeshId = "http://www.roblox.com/asset/?id=1095708"
  5. mesh.TextureId = "http://www.roblox.com/asset/?id=1095709"
  6. mesh.Scale = Vector3.new(2000,20,2005)
  7. part.Position = Vector3.new(0,300,0)
  8. part.Anchored = true
  9. par = Instance.new("ParticleEmitter", part)
  10. par.EmissionDirection = "Bottom"
  11. par.Lifetime = NumberRange.new(10000)
  12. par.Speed = NumberRange.new(25)
  13. par.Rate = 1e+020
  14. par.VelocitySpread = 10000
  15. sound = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  16. wait(10)
  17. for i = 1,100 do
  18. sound.Volume = sound.Volume + 0.01
  19. end
  20. sound.SoundId = "http://roblox.com/asset?id=188567501"
  21. sound.EmitterSize = 999
  22. sound:Play()
  23. sound.Looped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement