Advertisement
Diep8328Paster

Untitled

May 12th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local secs = 0.1
  3. wait(0.5)
  4. p.Character.Torso.Anchored = true
  5. local mesh = Instance.new("Part",p.Character)
  6. mesh.Position = p.Character.Torso.Position + Vector3.new(0,30,0)
  7. mesh.CanCollide = false
  8. mesh.Anchored = true
  9. local w = Instance.new("SpecialMesh",mesh)
  10. w.MeshId = "rbxassetid://998217989"
  11. w.Scale = Vector3.new(10,10,10)
  12. w.TextureId = "rbxassetid://998217995"
  13. wait(secs)
  14. mesh.Position = p.Character.Torso.Position + Vector3.new(0,25,0)
  15. wait(secs)
  16. mesh.Position = p.Character.Torso.Position + Vector3.new(0,20,0)
  17. wait(secs)
  18. mesh.Position = p.Character.Torso.Position + Vector3.new(0,15,0)
  19. wait(secs)
  20. mesh.Position = p.Character.Torso.Position + Vector3.new(0,10,0)
  21. wait(secs)
  22. mesh.Position = p.Character.Torso.Position + Vector3.new(0,5,0)
  23. local s = Instance.new("Sound",mesh)
  24. s.SoundId = "rbxassetid://545219984"
  25. s.Volume = 90
  26. s:Play()
  27. wait(0.2)
  28. local s2 = Instance.new("Sound",mesh)
  29. s2.SoundId = "rbxassetid://1427039766"
  30. s2.Volume = 90
  31. s2:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement