Advertisement
Donny526

The Screamer for Void Script Builder

Jul 3rd, 2018
998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. -- The Screamer --
  2. -- Made by Donny526 --
  3. -- Donny526#1886 --
  4.  
  5.  
  6. wait()
  7.  
  8. plr = game.Players.LocalPlayer
  9. chr = plr.Character
  10. hmn = chr:WaitForChild("Humanoid")
  11. lrm = chr:WaitForChild("Left Arm")
  12. rrm = chr:WaitForChild("Right Arm")
  13. llg = chr:WaitForChild("Left Leg")
  14. rlg = chr:WaitForChild("Right Leg")
  15. head = chr:WaitForChild("Head")
  16. torso = chr:WaitForChild("Torso")
  17. face = head:WaitForChild("face")
  18.  
  19. wait()
  20.  
  21. print(plr.Name.." is using the Screamer script by Donny526!")
  22.  
  23. wait()
  24.  
  25. bc = chr:WaitForChild("Body Colors")
  26. bc:Destroy()
  27.  
  28. wait()
  29.  
  30. lrm.BrickColor = BrickColor.new("White")
  31. rrm.BrickColor = BrickColor.new("White")
  32. llg.BrickColor = BrickColor.new("Maroon")
  33. rlg.BrickColor = BrickColor.new("Maroon")
  34. head.BrickColor = BrickColor.new("White")
  35. torso.BrickColor = BrickColor.new("White")
  36. face.Texture = "rbxassetid://2036705833"
  37. hmn.MaxHealth = 99999999
  38. hmn.Health = 99999999
  39. hmn.WalkSpeed = 32
  40. hmn.JumpPower = 65
  41.  
  42. wait()
  43.  
  44. animate = chr:WaitForChild("Animate")
  45. animate.walk.WalkAnim.AnimationId = "rbxassetid://252557606"
  46. animate.run.RunAnim.AnimationId = "rbxassetid://252557606"
  47.  
  48. wait()
  49.  
  50. chd = chr:GetChildren()
  51.  
  52. for i=1, #chd do
  53. if (chd[i].className == "Accessory") then
  54. chd[i]:remove()
  55. end
  56. end
  57. for i=1, #chd do
  58. if (chd[i].className == "Shirt") then
  59. chd[i]:remove()
  60. end
  61. end
  62. for i=1, #chd do
  63. if (chd[i].className == "Pants") then
  64. chd[i]:remove()
  65. end
  66. end
  67.  
  68. wait()
  69.  
  70. scream = Instance.new("Sound",head)
  71. scream.SoundId = "rbxassetid://703451104"
  72. scream.Name = "ScreamerScream"
  73. scream.Volume = 10
  74. scream.Pitch = 1
  75. wait()
  76. scream:Play()
  77.  
  78. wait()
  79.  
  80. torso.Touched:connect(function(hit)
  81. if hit.Parent:WaitForChild("Humanoid") then
  82. hit.Parent:WaitForChild("Humanoid").Health = 0
  83. local brutal = Instance.new("Sound",hit.Parent:WaitForChild("Head"))
  84. brutal.SoundId = "rbxassetid://531185355"
  85. brutal.Volume = 1
  86. wait()
  87. brutal:Play()
  88. else
  89.  
  90. end
  91. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement