Why can't I access this in the folder?
Asked by
5 years ago Edited 5 years ago
So I have a folder "Character" which stores a folder called Class
This Folder Stores:
- Other Folders
- A string value that's called "CharacterClassName"
It's very strange that I get the error below too, because when I do a print statement above the line where I get the error, it prints it perfectly. The print statement is:
print(CharacterFolder.Class.CharacterClassName.Value)
print(CharacterFolder.Class.CharacterClassName.Name)
So for some reason I am getting this error:
02:23:44.107 - CharacterClassName is not a valid member of Folder
When I write this block of code:
2 | local function CreateNewCharacterFolder(player, ChosenClass) |
3 | local CharacterFolder = game.ServerStorage.Character:Clone() |
4 | CharacterFolder.Parent = player.PlayerDataFolder |
5 | CharacterFolder.Name = "Character " ..CharacterNumberPresent |
7 | CharacterFolder.Class.CharacterClassName.Name = ChosenClass |
8 | CharacterFolder.Class.CharacterClassName.Value = ChosenClass |