ServerScriptService.ChatServiceRunner.ChatChannel:450: attempt to index nil with 'LocaleId'

hello everyone,

I have some issues with the chat…
I got this error when I sent or the PSA sent message

here is my psa code

local serverScriptService = game:GetService("ServerScriptService")
local ChatService = require(serverScriptService:WaitForChild("ChatServiceRunner").ChatService)

PSA = ChatService:AddSpeaker("Geantbot")

local tags = {
	{
		TagText = ("Bot"),
		TagColor = Color3.fromRGB(0, 255, 157)
	}
}

PSA:SetExtraData("NameColor", Color3.fromRGB(0, 97, 0))
PSA:SetExtraData("Tags", tags)
PSA:JoinChannel("All")

local msg = {"If the shield Integrity reached 0%, the reactor core meltdown sequence starts !", "Attention, Raiders can sabotage anything in the facility !", "Join GeantWorld Studios today for free keycard.", "You can evacuate the facility with the launch silos or hide in the bunker.", "To cool the core, enable the Pumps and push the lever."}


task.wait(5)
PSA:SayMessage("Hello and Welcome to SICC!", "All", {ChatColor = Color3.fromRGB(183, 254, 255)})

while wait(300) do
	PSA:SayMessage(msg[math.random(1, 5)], "All", {ChatColor = Color3.fromRGB(183, 254, 255)})
end```

GeantWorld
3 Likes

A similar issue was spoken about in the forum below. A fix was posted but not sure whether it works or not:

1 Like

okay, I use the fix, on studio works but not in game

1 Like

It doesn’t seem to be working for me either. Not sure if this is a ROBLOX critical but it’s broken all of my group games.

1 Like

wait a roblox update :confused: it’s the only solution…

1 Like

I patched the problem for my game ^^

1 Like

How did you patch it because I’m dealing with this issue right now

1 Like

Look here

3 Likes

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