Advertisement
frog2128

Untitled

Mar 14th, 2015
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. --Created by Grates
  2. char = game.Players.LocalPlayer.Character
  3. local MyMouse = game.Players.LocalPlayer:GetMouse()
  4.  
  5.  
  6. function fallen()
  7. char.Humanoid:Destroy()
  8. local s = Instance.new("Sound")
  9. s.Name = "fall"
  10. s.SoundId = "http://www.roblox.com/asset/?id=130768088"
  11. s.Volume = 1
  12. s.Looped = false
  13. s.archivable = false
  14. s.Parent = game.Workspace
  15. wait(0)
  16. s:play()
  17. end
  18.  
  19.  
  20. MyMouse.KeyDown:connect(function(key)
  21. if string.lower(key) == "m" then
  22. fallen()
  23. end
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement