Uploaded by gnisnothere

When you say O you can hear crowd sounds.lua

advertisement
local Players = game:GetService("Players")
Players.PlayerAdded:connect(function(Player)
Player.Chatted:connect(function(msg)
if string.lower(msg) == "o" then
local audio = Instance.new("Sound")
audio.Parent = workspace
audio.SoundId = "rbxassetid://7755719721"
audio.Volume = 5
audio:Play()
wait(3)
audio:Destroy()
end
end)
end)
Download