How would i go about setting the dummy's appearance to the player locally?

Ive been trying to set
image
this dummy into the player locally, but nothing seems to be working

Explorer:
image

Any help would be great!

Can we at least see the code? I think it’ll be more helpful…

local Players = game:GetService("Players")
local player = Players.LocalPlayer

local dummy = script.Parent -- Replace "script.Parent" with the actual dummy character

local characterAppearance = player:GetCharacterAppearanceAsync()
dummy:SetAppearance(characterAppearance)

local bodyColors = player:GetBodyColorsAsync()
dummy:SetBodyColors(bodyColors)

What do you mean when you say “Replace “script.parent” with the actual dummy character”?

The Humanoid of It or place the script inside the Humanoid

What type is the player?
What type is the this dummy?
What type is the dummy?
What is the value of dummy.Parent?
What is the value of this dummy.Parent?

Generally speaking, if you want to copy something’s appearance, you can use
local clone = original:Clone()

to create a clone of the original. Keep in mind that if the original has children, those will be cloned as well.
If you want to change the this dummy’s appearance to the player’s appearance, you can do that like so:
thisDummy:CloneAppearance(player)

If you want to change the dummy’s appearance to the player’s appearance, you can do that like so:
dummy:CloneAppearance(player)