Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Loaded = Instance.new('Message',game.Workspace)
- Loaded.Text = "Effects Loaded, Use M N B V C. Created by Grates"
- wait(3)
- Loaded:Destroy()
- wait(0)
- local MyMouse = game.Players.LocalPlayer:GetMouse()
- MyMouse.KeyDown:connect(function(key)
- if string.lower(key) == "b" then
- print("Activated Sparkles")
- end
- if string.lower(key) == "b" then
- Instance.new("Sparkles").Parent = game.Players.LocalPlayer.Character.Torso
- end
- if string.lower(key) == "v" then
- Instance.new("Smoke").Parent = game.Players.LocalPlayer.Character.Torso
- end
- if string.lower(key) == "v" then
- print("Activated Smoke")
- end
- if string.lower(key) == "n" then
- print("Activated Fire")
- end
- if string.lower(key) == "n" then
- Instance.new("Fire").Parent = game.Players.LocalPlayer.Character.Torso
- end
- if string.lower(key) == "m" then
- Instance.new("PointLight").Parent = game.Players.LocalPlayer.Character.Torso
- end
- if string.lower(key) == "m" then
- print("Activated Light")
- end
- if string.lower(key) == "c" then
- s = Instance.new("Sound")
- s.Name = "Airhorn"
- s.SoundId = "http://www.roblox.com/Asset/?id=168208736"
- s.Volume = 3
- s.Looped = false
- s.archivable = false
- s.Parent = game.Workspace
- wait(0)
- s:play()
- end
- if string.lower(key) == "c" then
- print("Activated Single Sound")
- end
- end)
- game.Players.LocalPlayer.Character.Humanoid.Died:connect(function()
- local s = Instance.new("Sound")
- s.Name = "Airhorn"
- s.SoundId = "http://www.roblox.com/asset/?id=168209643"
- s.Volume = 1
- s.Looped = false
- s.archivable = false
- s.Parent = game.Workspace
- wait(0)
- s:play()
- s.Parent = game.Workspace
- wait(0)
- s:play()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement