So i’ve been having a problem for the few past days that I just couldn’t fix, I searched everywhere for it but it’s a really specific thing, So I waited untill I could talk here in the Roblox Developer forums.
I need to make an NPC/Model look like a player who joins the game for a main menu.
I’m currently using a humanoid description script, the problem is, I can’t find a way to make it so that the script tries to find a local player and not a user ID
I have even tried the a GetCharacterAppearanceAsync script but I was having the same problem, because instead of it being an ID, It was asking me for the name of the player I want to put for the model.
To make it work for the LocalPlayer, just use the LocalPlayer’s User ID
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local desc = Players:GetHumanoidDescriptionFromUserId(LocalPlayer.UserId)