roblox datastore key code example
Example: roblox studio data store
-- Get the DataStoreService
local DataStoreService = game:GetService("DataStoreService")
-- Get a DataStore
local myDataStore = DataStoreService:GetDataStore("myDataStore")
-- Get the Data
local Data = myDataStore:GetAsync(Player.UserId)
-- Set the Data
myDataStore:SetAsync(Player.UserId, Data)