Advertisement
MicrosoftExcel

UUID

Feb 4th, 2021
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function getUUID(username)
  2.     link = "https://api.mojang.com/users/profiles/minecraft/"..username
  3.     i = http.get(link)
  4.     j = i.readLine()
  5.     l = string.len(j)
  6.     UUID = string.sub(j, l - 33, l - 2)
  7.     return UUID
  8. end
  9.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement