Advertisement
Animescapetower

Untitled

Mar 4th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1.  
  2. player = game.Players.LocalPlayer
  3. enabled = true
  4. local humanoid = player.Character.Humanoid
  5. local mouse = player:GetMouse()
  6.  
  7. local anim = Instance.new("Animation")
  8. anim.AnimationId = "http://www.roblox.com/asset/?id=235542946"
  9. local playAnim = humanoid:LoadAnimation(anim)
  10.  
  11. local anim2 = Instance.new("Animation")
  12. anim2.AnimationId = "http://www.roblox.com/asset/?id=393169468"
  13. local playAnim2 = humanoid:LoadAnimation(anim2)
  14. key = " :z or c"
  15. nextmes = " This works for z or c, c does nothing, press other keys then z or c stops the animation, WASD Keys don't stop the anim, also if you press c it would do the same"
  16. print("Welcome ".. player.Name.. key.. nextmes)
  17. wait(1)
  18. Sound2 = Instance.new("Sound")
  19. Sound2.Name = "wolfhowl"
  20. Sound2.Parent = player.Character
  21. Sound2.SoundId = "rbxassetid://360366727"
  22. Sound2.Volume = 10
  23. Sound2.Pitch =1
  24. Sound2.Looped = false
  25. Sound2.EmitterSize = 200
  26. Sound2.MaxDistance = 200
  27. Sound2:Play()
  28.  
  29. while true do
  30. wait(0.1)
  31. playAnim:Play()
  32. wait(0.2)
  33. playAnim:Stop()
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement