Roblox core script throwing error

I am just sitting here developing and all of a sudden one of Roblox’s core scripts starts throwing an error, entering me into debug view. So I am unable to test my game.

Here is the error:
GetCore: GetBlockedUserIds has not been registered by the CoreScripts

Does anyone know how I can fix this?

1 Like

I have been having the same problem for weeks now. I just copied ChatMain into StarterPlayerScripts and
inserted a wait(10) at line 1054:

spawn(function()
wait(10)
– Pcalled because this method is not released on all platforms yet.
if LocalPlayer.UserId > 0 then
pcall(function()
local blockedUserIds = StarterGui:GetCore(“GetBlockedUserIds”)
if #blockedUserIds > 0 then
local setInitalBlockedUserIds = DefaultChatSystemChatEvents:FindFirstChild(“SetBlockedUserIdsRequest”)
if setInitalBlockedUserIds then
setInitalBlockedUserIds:FireServer(blockedUserIds)
end
end
end)
end
end)

1 Like