Advertisement
Diep8328Paster

Untitled

May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local char = p.Character
  3. local h = char:WaitForChild("Head",0.1)
  4. local t = char:WaitForChild("Torso",0.1)
  5. local rl = char:WaitForChild("Right Leg",0.1)
  6. local ll = char:WaitForChild("Left Leg",0.1)
  7. local ra = char:WaitForChild("Right Arm",0.1)
  8. local la = char:WaitForChild("Left Arm",0.1)
  9. char.Humanoid:Destroy()
  10. char.Animate:Destroy()
  11. char.Health:Destroy()
  12. h.CanCollide = false
  13. t.CanCollide = false
  14. rl.CanCollide = false
  15. ll.CanCollide = false
  16. ra.CanCollide = false
  17. la.CanCollide = false
  18. wait(1)
  19. local a = Instance.new("Sound",t)
  20. a.Volume = 40
  21. a.SoundId = "rbxassetid://391373253"
  22. a:Play()
  23. local ha = 1
  24. h.Anchored = true
  25. t.Anchored = true
  26. rl.Anchored = true
  27. ll.Anchored = true
  28. ra.Anchored = true
  29. la.Anchored = true
  30. while ha == 1 do
  31. h.Orientation = Vector3.new(math.random(-360,360),math.random(-360,360),math.random(-360,360))
  32. t.Orientation = Vector3.new(math.random(-360,360),math.random(-360,360),math.random(-360,360))
  33. rl.Orientation = Vector3.new(math.random(-360,360),math.random(-360,360),math.random(-360,360))
  34. ll.Orientation = Vector3.new(math.random(-360,360),math.random(-360,360),math.random(-360,360))
  35. ra.Orientation = Vector3.new(math.random(-360,360),math.random(-360,360),math.random(-360,360))
  36. la.Orientation = Vector3.new(math.random(-360,360),math.random(-360,360),math.random(-360,360))
  37. wait(0.01)
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement