I’ve read that humanoid descriptions can be used on the client and I want to use it to apply the character’s appearance on a dummy. However, it doesn’t seem to work with my local script in the StarterGui as the error ‘Humanoid:ApplyDescription() can only be called by the backend server’ still pops up in the output. Help and feedback are greatly appreciated!
Here is my code:
-- Assuming every local player variable has been declared
local playerModel = model:WaitForChild("Player") -- Dummy in workspace, parented to model
local playerModelHumanoid = playermodel:WaitForChild("Humanoid")
local playerHumanoidDescription = localHumanoid:GetAppliedDescription()
playerModelHumanoid:ApplyDescription(playerHumanoidDescription)