as you can see by the embedded video, LogService on a server-script logs anything, client or not.
is there some kind of workaround for this?
LogService script
local logservice = game:GetService("LogService")
logservice.MessageOut:Connect(function(message,messagetype)
print(message,messagetype)
end)
print("this is a server print")