Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local char = player.Character
  3. local mouse = player:GetMouse()
  4.  
  5. mouse.KeyDown:connect(function(key)
  6. if key == "q" then
  7. local sound = Instance.new("Sound", char.Torso)
  8. sound.SoundId = "rbxassetid://1246891273"
  9. sound.Playing = true
  10. sound.Volume = 5
  11. wait(7)
  12. sound:Destroy()
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement