of     1   

KEVEKEV77
#166997371Thursday, July 09, 2015 3:44 AM GMT

how do i save a table to a player? Ty ty code plz
Wrathsong
#167001623Thursday, July 09, 2015 4:30 AM GMT

ask scripters subforum
KEVEKEV77
#167001709Thursday, July 09, 2015 4:31 AM GMT

3:
KEVEKEV77
#167061724Thursday, July 09, 2015 8:47 PM GMT

arh
chimmihc
#167062902Thursday, July 09, 2015 8:59 PM GMT

For basics use datastores. Http service can encode tables to JSON. local http = game:GetService("HttpService") local datastore = game:GetService("DataStoreService"):GetDataStore("Stuff") game.Players.PlayerRemoving:connect(function(player) datastore:SetAsync(player.userId,http:JSONEncode(table)) end)
KEVEKEV77
#167066399Thursday, July 09, 2015 9:32 PM GMT

thanks :)
KEVEKEV77
#167175670Friday, July 10, 2015 9:54 PM GMT

ty do i need to json encode + decode ?

    of     1