I have this script:
local aftermath = workspace.Aftermath
local players = game.Players
local rig = workspace.deadzombie
players.PlayerAdded:Connect(function(plr)
local uid = plr.UserId
local grimacevictim = workspace.Rig:Clone()
grimacevictim.Humanoid:ApplyDescription(players:GetHumanoidDescriptionFromUserId(uid))
grimacevictim.Parent = aftermath
local hrp = grimacevictim:WaitForChild("HumanoidRootPart")
hrp.Anchored = true
hrp.Position = rig.Head.Position
end)
My goal is to clone an R6 rig already in Workspace, and set the appearance of the clone to the player’s user id. But it constantly returns Humanoid::ApplyDescription() DataModel was not available
. Can someone help with my script? Thank you