Advertisement
Prior_

Untitled

Oct 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. local stuffresult = ""
  2. function blerpy()
  3. local url = " http://jointhenavy.com.au/voxel/swrp/api.php "
  4.  
  5. http.Fetch(url,function(body)
  6. stuff = util.JSONToTable(body)
  7. print(stuff)
  8. if stuff then
  9. for k,v in pairs(stuff) do
  10. stuffresult = v.reg
  11. end
  12. end
  13. end,
  14. function( error )
  15. print("Mission failed we'll get em next time")
  16. end)
  17.  
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement