View difference between Paste ID: zKtLCsiR and f6uRpLz7
SHOW: | | - or go back to the newest paste.
1
wait(1)
2
3-
local Plr = game.Players.lykaspars4 -- replace "lykaspars4" to Your Name In-Game!
3+
local Plr = game.Players.RoyalOOBatManOo -- replace "lykaspars4" to Your Name In-Game!
4
5
wait(1)
6
7
Plr.Chatted:connect(function(C)
8
	if C then -- If Chatted with ID Audio and then Playing Sounds!
9
		local S = Instance.new("Sound", game.Workspace)
10
		S.SoundId = "http://www.roblox.com/asset/?id="..C
11
        S.Looped = true
12
		S.Volume = 1
13
		S:Play()
14
	end
15
end)