8 lines
259 B
Lua
8 lines
259 B
Lua
net.OnServerCreated:connect(function(s)
|
|
print("The logging Module has been loaded onto the server!")
|
|
s.OnDataRecieved:fConnect(function(self,data,cid,ip,port)
|
|
log(tostring(ip)..":"..tostring(port),"Server-log.log")
|
|
log(data,"Server-log.log")
|
|
end)
|
|
end)
|