Guest User

Untitled

a guest
May 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. local function readString()
  2. local s = ""
  3. local c = net.ReadByte()
  4. while c ~= 0 do
  5. s = s .. string.char( c )
  6. c = net.ReadByte()
  7. end
  8. return s
  9. end
Add Comment
Please, Sign In to add comment