So i write this but SubscribeAsync not firing. Nothing is printed.
local ms=game:GetService('MessagingService')
ms:SubscribeAsync('Server',function(received)
print(received.Data)
end)
workspace.Part.ClickDetector.MouseClick:Connect(function()
ms:PublishAsync('Server','testmessage')
end)