11 lines
196 B
Lua
Raw Normal View History

2020-04-10 15:47:38 -05:00
local picker = 1
while true do
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
end