Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Im trying to make this character turn into the roblox character, but it wont work. I wonder why?

Asked by 4 years ago
Edited 4 years ago

Hello! I am trying to make this character turn into ROBLOX but it wont work. And it keeps throwing an error saying "HumanoidDescription is not a valid member of Humanoid." but there is a HumanoidDescription in the model! I also do have a loop that keeps running just in case if the character changes. Anyways, here is the script that is in the character model

local model = script.Parent
local userid = 1
model.Humanoid.HumanoidDescription = game.Players:GetHumanoidDescriptionFromUserId(userid)
script.Parent.Name = "ROBLOX"
print("Loaded!")
while wait(10) do
    model.Humanoid.HumanoidDescription = game.Players:GetHumanoidDescriptionFromUserId(userid)
    script.Parent.Name = "ROBLOX"
    print("Loaded!")
end
0
I think you put the HumanoidDescription in the Character model not the Humanoid. Block_manvn 395 — 4y
0
no it was in the humanoid ISPRB_PC 5 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

It is actually super simple. Just name your character "StartCharacter" and place it in StarterPlayer. No scripting needed. Please note: don't place it in StarterCharacterScripts or StarterPlayerScripts, just StarterPlayer will do.

0
No, the character in workspace not making the player become roblox, and btw i do know how to make a starter character and its not "StartCharacter" it's "StarterCharacter" ISPRB_PC 5 — 4y
0
sry, my bad, ye it is "StarterCharacter". Maybe try adding WaitForChild() event to ensure that the humanoiddescription is loaded first guest_20I8 266 — 4y
Ad

Answer this question