Help with Equipping Assets on Humanoids

Hello!

I am trying to create a script, which makes a Humanoid’s appearance change, based on an ID submitted through a GUI. The humanoid is not an actual player, but I’m not sure how I would make a script, where by entering the ID in a text box, and submitting it with a button, would alter the Humanoid’s appearance, and only that singular one, without affecting any other static humanoid objects.

Thanks.

Try looking at Players | Documentation - Roblox Creator Hub .They provide this

local appearanceModel=
game.Players:GetCharacterAppearanceAsync(772462)

appearanceModel.Parent = game.Workspace

Ah ok thanks! I’ll try using this function then, as it seems I was attempting to use the wrong one, from what I can see.