So I have a script that is suppose to clone a character, but I think its not cloning.
Its in a folder thats in the player.
Anyhow here is the code
local function loadCharacter(char)
local charNew = char:Clone()
char.Parent =workspace
local anim = char.Humanoid:LoadAnimation(script:FindFirstChild('Anim'))
anim.Looped = true
task.wait()
anim:Play()
char.Name = 'DISPLAYCHAR'
end