Advertisement
Animescapetower

Untitled

Mar 4th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. player = game.Players.LocalPlayer
  2. enabled = true
  3. local humanoid = player.Character.Humanoid
  4. local mouse = player:GetMouse()
  5.  
  6. local anim = Instance.new("Animation")
  7. anim.AnimationId = "http://www.roblox.com/asset/?id=235542946"
  8. local playAnim = humanoid:LoadAnimation(anim)
  9.  
  10. local anim2 = Instance.new("Animation")
  11. anim2.AnimationId = "http://www.roblox.com/asset/?id=393169468"
  12. local playAnim2 = humanoid:LoadAnimation(anim2)
  13.  
  14. print("Welcome ".. player.Name)
  15. wait(1)
  16. Sound2 = Instance.new("Sound")
  17. Sound2.Name = "wolfhowl"
  18. Sound2.Parent = player.Character.Torso
  19. Sound2.SoundId = "rbxassetid://0"
  20. Sound2.Volume = 2
  21. Sound2.Pitch =1
  22. Sound2.Looped = false
  23. Sound2.EmitterSize = 80
  24. Sound2.MaxDistance = 80
  25. Sound2:Play()
  26.  
  27. while true do
  28. wait(0.1)
  29. playAnim:Play()
  30. wait(0.1)
  31. playAnim:Stop()
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement