Advertisement
Donny526

Zombie Morph for Void Script Builder

Jul 7th, 2018
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. -- I just wanted to make a morph, so yeah. --
  2. -- Made by Donny526 --
  3. -- Donny526#1886 --
  4.  
  5. wait(.2)
  6.  
  7. local player = game.Players.LocalPlayer
  8. local character = player.Character
  9. local humanoid = character:WaitForChild("Humanoid")
  10.  
  11. wait()
  12.  
  13. print(player.Name.." is using the Zombie Morph script by Donny526!")
  14.  
  15. wait()
  16.  
  17. local animation = Instance.new("Animation")
  18. animation.AnimationId = "rbxassetid://183294396"
  19. local anim = humanoid:LoadAnimation(animation)
  20. anim:Play()
  21.  
  22. wait()
  23.  
  24. humanoid.WalkSpeed = 8
  25. humanoid.JumpPower = 37.5
  26.  
  27. wait()
  28.  
  29. local groan = Instance.new("Sound",character:WaitForChild("Head"))
  30.  
  31. wait()
  32.  
  33. while true do
  34. wait(math.random(8,12))
  35. local m = math.random(1,2)
  36.  
  37. if m == 1 then
  38. groan.SoundId = "rbxassetid://93591742"
  39. groan.Pitch = 1
  40. groan:play()
  41. end
  42.  
  43. if m == 2 then
  44. groan.SoundId = "rbxassetid://93591696"
  45. groan.Pitch = 1
  46. groan:play()
  47. end
  48.  
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement