If log is from server or cilent

i need help checking if the log was from cilent or server pls help

this is my script

local LogHistory = game:GetService("LogService")

local RemoteToFire = game.ReplicatedStorage.Console.SendNew

LogHistory.MessageOut:Connect(function(Message, Type)
	RemoteToFire:FireAllClients(Message, Type)
	print(Message)
end)
1 Like

not working sorry
this is the script

local LogHistory = game:GetService("LogService")

local RemoteToFire = game.ReplicatedStorage.Console.SendNew

LogHistory.MessageOut:Connect(function(Message, Type)
	RemoteToFire:FireAllClients(Message, Type)
end)

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