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