Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Thanks to all of you who used this script!
  2.  
  3. wait(.25)
  4.  
  5. print("Please use this script on the ground. Animations may backfire. Packages not recommended.")
  6.  
  7. repeat wait() until game.Players.LocalPlayer
  8.  
  9. -- Local variables
  10.  
  11. --local Whitelist = {"Ridicule_ous","0kJu5tSp4ng3","the770zone","Creterisk"}
  12. local Player = owner,
  13. local Character = Player.Character
  14. local Humanoid = Character:FindFirstChild'Humanoid'
  15. local Children = Character:GetChildren()
  16. local Anim2 = Instance.new("Animation",Humanoid)
  17. local Sound = Instance.new("Sound",workspace.Baseplate)
  18. --local Mouse = Player:GetMouse()
  19.  
  20. Anim2.Name = "T Pose"
  21. Sound.Name = "Oof"
  22.  
  23. Sound.Looped = false
  24. Sound.Volume = 1
  25. Sound.PlaybackSpeed = .1
  26.  
  27. -- Preparing animations and sound
  28.  
  29. Anim2.AnimationId = "rbxassetid://1891458869"
  30. Sound.SoundId = "rbxassetid://1592768706"
  31.  
  32. --Mouse.KeyDown:connect(function(Key)
  33. -- if Key == Enum.KeyCode.X then
  34. -- Sound:Play()
  35. -- end
  36. --end)
  37. --
  38. --Mouse.KeyUp:connect(function(Key)
  39. -- if Key == Enum.KeyCode.X then
  40. -- Sound:Stop()
  41. -- end
  42. --end)
  43.  
  44. AnimTrack = Humanoid:LoadAnimation(Anim2)
  45. AnimTrack:Play()
  46.  
  47. -- Destroying the "Animate" client script
  48.  
  49. for I = 1,#Children do
  50. if (Children[I].Name == "Animate") then
  51. Children[I]:Destroy()
  52. end
  53. print("destroyed")
  54. end
  55.  
  56. -- 0kJu5tSp4ng3, June '18, T Pose script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement