local MyMouse = game.Players.LocalPlayer:GetMouse() MyMouse.KeyDown:connect(function(key) if string.lower(key) == "b" then print("Pressed B") 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("Pressed V") end if string.lower(key) == "n" then print("Pressed N") 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("Pressed M") end if string.lower(key) == "c" then s = Instance.new("Sound") s.Name = "Airhorn" s.SoundId = "http://www.roblox.com/Asset/?id=177080835" 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("Pressed c") end end)