Messaging Service suddenly isn't working?

This is pretty urgent, as all my games rely on sending info from servers. Everything worked perfectly fine until about 20 minutes ago when, suddenly, everything just stopped. The worst part is there’s no errors or anything. SubscribeAsync is not receiving any info sent from servers. Any idea what’s going on here? Here’s my code:

SERVER:

messagingService:SubscribeAsync("ServerCreated", function(data)
	print("received")
	for _, v in pairs(data) do
		if typeof(v) == "string" then
			
			
			local folder 
			for _, f in pairs(game.ReplicatedStorage.TeleportedLobbies:GetChildren()) do
				if f.ServerID.Value == v then
					folder = f
				end
			end
			
			if folder then
				local tabl = {
					["NumPlayers"] = #folder.Players:GetChildren(),
					["Checkpoint"] = folder.Checkpoint.Value
				}
				messagingService:PublishAsync(v, tabl)
				folder:Destroy()
			end
		end
	end
end)

OTHER SERVER:

messageService:SubscribeAsync(tostring(game.PrivateServerId), function(data)
	local tabl
	for _, v in pairs(data) do
		if typeof(v) == "table" then
			tabl = v
		end
	end
	if tabl then
		local numPlayers = tabl.NumPlayers
		checkpoint = tabl.Checkpoint
		game.ReplicatedStorage.StoredInfo.NumPlayers.Value = numPlayers
		game.ReplicatedStorage.StoredInfo.Checkpoint.Value = checkpoint
	end
end)

--TELLING LOBBY THAT SERVER HAS BEEN CREATED
messageService:PublishAsync("ServerCreated", tostring(game.PrivateServerId))
1 Like

I can concur Messaging Service is not working properly right now. I am getting no Messaging through, was working fine earlier today…

Should be moved to #bug-reports:engine-bugs

1 Like

Yea… super weird. It was working perfectly fine all day for me but randomly stopped a bit ago. I’m gonna assume it’s a roblox issue and go from there

2 Likes

+1 our entire game

While has a browser that communicates with messaging service is down as well. Players can still join the servers by clicking random server.

16 Likes

+1 Perris is broken due to roblox update

Thank you for making this post I thought I was going crazy. Not sure what’s going on but I know my servers are set up correctly so I’m assuming something with the endpoint is down.

1 Like

Thank god I found this post I was so confused all of a sudden when my script that I haven’t touched in years randomly stopped working, if this doesn’t get fixed soon I can make a bug report.

Edit : there’s all ready a bug report

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