Put 3 sounds into the script.
Make sure the sounds are ones that have been uploaded to ROBLOX.
Other sounds WILL NOT WORK.
p = script.Parent
s1 = p.Sound1
s2 = p.Sound2
s3 = p.Sound3
while true do
wait(1)
local m = math.random(1,3)
if m == 1 then s1:Play()
if m == 2 then s2:Play()
if m == 3 then s3:Play()
end
end
end
end
|