Im making an data system and i got a error


I’m getting this error and this

Can anyone help me?

First image script

local Players = game:GetService(“Players”)
local ReplicatedStorage = game:GetService(“ReplicatedStorage”)

local CharacterModule = require(ReplicatedStorage:WaitForChild(“Modules”):WaitForChild(“CharacterModule”))
local changeCharacter = ReplicatedStorage:WaitForChild(“Remotes”):WaitForChild(“changeCharacter”)

Players.PlayerAdded:Connect(function(player)
local characters = CharacterModule.GetCharacters(player)
print(characters)
end)

changeCharacter.OnServerEvent:Connect(function(player, character)
if player and character then
if ReplicatedStorage:WaitForChild(“Modules”):WaitForChild(“CharacterModule”):WaitForChild(“Characters”):FindFirstChild(character) then
player:WaitForChild(“selectedCharacter”).Value = character
end
end
end)

Second image error line ReconcileTable(self.Data, self._profile_store._profile_template)

The script is very long so im not gonna send it fully if u have questions lmk

im following a tutorial also https://www.youtube.com/watch?v=yHR0ArpZD3c&t=756s im at 12:48 my leaderstats doesnt load

Please format your code (you can press ctrl + e to do it)