Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Created by Grates
- char = game.Players.LocalPlayer.Character
- local MyMouse = game.Players.LocalPlayer:GetMouse()
- function fallen()
- char.Humanoid:Destroy()
- local s = Instance.new("Sound")
- s.Name = "fall"
- s.SoundId = "http://www.roblox.com/asset/?id=130768088"
- s.Volume = 1
- s.Looped = false
- s.archivable = false
- s.Parent = game.Workspace
- wait(0)
- s:play()
- end
- MyMouse.KeyDown:connect(function(key)
- if string.lower(key) == "m" then
- fallen()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement