Failed to load sound : NotEnoughQuota

I’m having a weird error that goes Failed to load sound : NotEnoughQuota almost always when i try to use roblox’s text to speech feature. This error occurs when i attempt to play the sound after it’s generated.

local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

local chatRemote = ReplicatedStorage:WaitForChild("PlayerChatMessage")

chatRemote.OnServerEvent:Connect(function(player, message, voiceId)
	if typeof(message) ~= "string" or #message == 0 then return end
	if typeof(voiceId) ~= "string" then voiceId = "3" end
	if #message > 300 then message = message:sub(1, 300) end

	local char = player.Character
	local root = char and char:FindFirstChild("HumanoidRootPart")
	if not root then return end

	-- Create TTS (attach directly to root like an old Sound)
	local tts = Instance.new("AudioTextToSpeech")
	tts.Text = message
	tts.VoiceId = voiceId
	tts.Volume = 10
	tts.Name = "TTS_Playback"
	tts.Parent = root

	-- Play and cleanup
	tts:Play()
	tts.Ended:Connect(function()
		tts:Destroy()
	end)
end)

This script worked in the past with no issue, I dont understand why it suddenly stopped working now.

1 Like

maybe its because you reached the 100/month audio limit
i think i remember reading that tts uses 1 of your audio uses

Possibly, but i checked a few other tts games and they all seem to be having the same issue. Weirdly enough some players are still able to chat in the game though not reliably either.

Also it’s the start of August, shouldnt the quota have just reset if its so?

try uploading an audio normally to see if it hit the limit


Nope, it seems that it’s related to something else entirely

I had the biggest text to speech experience, i reached 3k CCU, and i didnt had that problem, everyone was talking with almost no limit, but it apparead on first august, no one could talk because it was really limited, and then my game died

I’m checking if this was in an update somewhere and couldnt find anything related to it. I believe this is a bug with the servers. Hoping this gets fixed soon.

i’ll try to contact them, since my group is verified i already got fast reply even on the week end

1 Like

Did you get any reply from roblox?

Nah they do not care i guess a

1 Like