I want to make a folder in workspace with at least 10 bool values in it, is there a way i can save/load the values so they can always stay the same when you leave or join. If so please help me out.
Try Putting the folder into the player by using instances example:
game.Players.PlayerAdded:Connect(function(Player) local folder = Instance.new("Folder",plr) folder.Name = "" --Put the Folder Name Here local bool = Instance.new("IntValue",folder) bool.Name = "" -- Put the name of the bool here end)
repeat the bool part 10 times or you can use a table to clean things up
Example is on this link (https://pastebin.com/S4Z2uYVF) Note that I do not own this Pastebin Script