Sound not being loaded?

local doorknock1 = Instance.new("Sound")
doorknock1.Parent = script.Parent
doorknock1.Looped = false
doorknock1.Volume = 0.5
doorknock1.SoundId = "rbxassetid://14983784519"

local doorknock2 = Instance.new("Sound")
doorknock2.Parent = script.Parent
doorknock2.Looped = false
doorknock2.Volume = 0.5
doorknock2.SoundId = "rbxassetid://14983785801"

while wait(10) do
	local rng = math.random(1,2)
	if rng == 1 then
		doorknock1:Play()
	elseif rng == 2 then
	doorknock2:Play()
	end
end

i uploaded the 2 audios myself and they arent moderated but for whatever reason they wont load

2 Likes

When I had this issue, simply relaunching studio worked for me. It may be a stupid question, but have you tried relaunching?

Could be your internet. Usually errors like this have stupid but simple fixes.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.