Hello, I am attempting to log outputs from clients, send them over the server, to an admin panel for admins to view and take action on exploiters.
However, I have run into the issue of LogService never firing MessageOut when in LocalScript. The api reference does not state that it is restricted to ServerScripts. I came across a few threads that are over 3 years old, so I assume this has been fixed and that I’m doing something wrong. Can anyone explain what it is?
game:GetService('LogService').MessageOut:Connect(function(message, msgtype) workspace.Services.Shared.Output:Fire({Name = 'Client'}, message, 'Client') end)