In my game, I am using a StarterCharacter. For some reason when I try to get the character using CharacterAdded or CharacterAppearenceLoaded, neither functions fire. Is it something to do with me using a StarterCharacter?
Players.PlayerAdded:Connect(function(Player)
local customizationData = GetData(Player)
if customizationData ~= false then
local AccSel = customizationData.AccSel
local HairSel = customizationData.HairSel
local PantsSel = customizationData.PantsSel
local ShirtSel = customizationData.ShirtSel
local SkinSel = customizationData.SkinSel
game.Workspace.ChildAdded:Connect(function(Child)
if Child.Name == Player.Name then
print("Character Added")
end
end)
end
end)
I tried to work around it by using this system, but it doesnt fire also.