11 lines
208 B
Lua
Raw Normal View History

2020-04-10 15:47:38 -05:00
local picker = 1
while true do
2020-04-10 18:31:04 -05:00
picker = math.random(1, 2)
wait(math.random(10, 30))
if picker == 1 then
script.Parent.Warble1:Play()
else if picker == 2 then
script.Parent.Warble2:Play()
end
end
2020-04-10 15:47:38 -05:00
end