I was wondering if you could use Boolean values and string values in datastores. Like for saving a backpack, etc.
Example:
local ds = game:GetService('DataStoreService'):GetDataStore('Test') game.Players.PlayerAdded:Connect(function(player) local scope = 'userid-' .. player.userId ds:SetAsync(scope, true) ds:SetAsync(scope, 'test') end)