Advertisement
Diep8328Paster

Untitled

May 24th, 2018
94
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. h.Anchored = true
  10. t.Anchored = true
  11. rl.Anchored = true
  12. ll.Anchored = true
  13. ra.Anchored = true
  14. la.Anchored = true
  15. char.Humanoid:Destroy()
  16. char.Animate:Destroy()
  17. char.Health:Destroy()
  18. h.CanCollide = false
  19. t.CanCollide = false
  20. rl.CanCollide = false
  21. ll.CanCollide = false
  22. ra.CanCollide = false
  23. la.CanCollide = false
  24. wait(1)
  25. local a = Instance.new("Sound",t)
  26. a.Volume = 40
  27. a.SoundId = "rbxassetid://391373253"
  28. a:Play()
  29. local ha = 1
  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