Advertisement
Guest User

Scout/Tf2 voice/Sounds

a guest
Mar 19th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local torso = player.Character.Torso
  3. local mouse = player:GetMouse()
  4.  
  5. mouse.KeyDown:connect(function(key)
  6. if key == "m" then
  7. local sound5 = Instance.new("Sound", torso)
  8. sound5.SoundId = "rbxassetid://259126701"
  9. sound5.Playing = true
  10. sound5.Volume = 5
  11. wait(120)
  12. sound5:Destroy()
  13. end
  14. end)
  15.  
  16. mouse.KeyDown:connect(function(key)
  17. if key == "q" then
  18. local sound = Instance.new("Sound", torso)
  19. sound.SoundId = "rbxassetid://1018518369"
  20. sound.Playing = true
  21. sound.Volume = 5
  22. wait(2)
  23. sound:Destroy()
  24. end
  25. end)
  26.  
  27. mouse.KeyDown:connect(function(key)
  28. if key == "e" then
  29. local sound2 = Instance.new("Sound", torso)
  30. sound2.SoundId = "rbxassetid://135436482"
  31. sound2.Playing = true
  32. sound2.Volume = 5
  33. wait(2)
  34. sound2:Destroy()
  35. end
  36. end)
  37.  
  38. mouse.KeyDown:connect(function(key)
  39. if key == "f" then
  40. local sound3 = Instance.new("Sound", torso)
  41. sound3.SoundId = "rbxassetid://268090135"
  42. sound3.Playing = true
  43. sound3.Volume = 5
  44. wait(2)
  45. sound3:Destroy()
  46. end
  47. end)
  48.  
  49. mouse.KeyDown:connect(function(key)
  50. if key == "c" then
  51. local sound4 = Instance.new("Sound", torso)
  52. sound4.SoundId = "rbxassetid://138152340"
  53. sound4.Playing = true
  54. sound4.Volume = 5
  55. wait(2)
  56. sound4:Destroy()
  57. end
  58. end)
  59.  
  60. mouse.KeyDown:connect(function(key)
  61. if key == "x" then
  62. local sound6 = Instance.new("Sound", torso)
  63. sound6.SoundId = "rbxassetid://1080611063"
  64. sound6.Playing = true
  65. sound6.Volume = 5
  66. wait(5)
  67. sound6:Destroy()
  68. end
  69. end)
  70.  
  71. mouse.KeyDown:connect(function(key)
  72. if key == "k" then
  73. local sound7 = Instance.new("Sound", torso)
  74. sound7.SoundId = "rbxassetid://897063768"
  75. sound7.Playing = true
  76. sound7.Volume = 5
  77. wait(9)
  78. sound7:Destroy()
  79. end
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement