Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

roblox jsonencode

local table = {
	name = "John",
  	cars = {
  		[1] = "Ford"
	}
}

print(game:GetService("HttpService"):JSONEncode(table)) -- change to JSONDecode to convert json to lua
 
PREVIOUS NEXT
Tagged: #roblox #jsonencode
ADD COMMENT
Topic
Name
6+8 =