Okay. So how would I make it show up as regular text instead of JSONrootx15— 10y
0
Do you understand what JSON is? It's a way to structure your data. If you want the raw JSON, then you do not need to do anything extra to the string that you are getting from the GetAsync method.User#11893186— 10y
0
Okay here's my JSON { PLAYER_ID: "4", BAN_REASON: "Speed hacking", id: 3 }, I want to get the text from Player_ID: and BAN_REASON:rootx15— 10y
0
Then you will be able to access your keys by using: print(decode.PLAYER_ID, decode.BAN_REASON) -- etcUser#11893186— 10y
View all comments (2 more)
0
Quick note: JSON is just a "tool" or "syntax" on how we convert tables to strings and back. Because it has a kind of "syntax", other languages can also use this - you can share tables (or lists/arrays) between other languages and programs.jobro13980— 10y