Advertisement
marioisdabomb

a

Nov 29th, 2018
121
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 = {"sanicisdabomb","0kJu5tSp4ng3","the770zone","Creterisk"}
  12. local Player = game.Players.LocalPlayer
  13. local Character = Player.Character
  14. local Humanoid = Character:FindFirstChild'Humanoid'
  15. local Children = Character:GetChildren()
  16. local Anim2 = Instance.new("Animation",Humanoid)
  17.  
  18. Anim2.Name = "T Pose"
  19.  
  20. -- Preparing animations and sound
  21.  
  22. Anim2.AnimationId = "rbxassetid://1891458869"
  23. --Mouse.KeyDown:connect(function(Key)
  24. -- if Key == Enum.KeyCode.X then
  25. --
  26. -- end
  27. --end)
  28. --
  29. --Mouse.KeyUp:connect(function(Key)
  30. -- if Key == Enum.KeyCode.X then
  31. --
  32. -- end
  33. --end)
  34.  
  35. AnimTrack = Humanoid:LoadAnimation(Anim2)
  36. AnimTrack:Play()
  37.  
  38. -- Destroying the "Animate" client script
  39.  
  40. for I = 1,#Children do
  41. if (Children[I].Name == "Animate") then
  42. Children[I]:Destroy()
  43. end
  44. print("destroyed")
  45. end
  46.  
  47. -- 0kJu5tSp4ng3, June '18, T Pose script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement