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

Load someone else's character into my character on join?

Asked by 5 years ago

Asked by marketmanager1 54 2 days ago Edited 1 second ago Hey there! I'm looking how to achieve it that when I join a game, my character gets whiped, and for example, Roblox's character gets added. I know it is possible, I just don't know how.

DO NOT GIVE ME A FULL SCRIPT!

I think it's something like "CharacterAppearance ", but I tried it, and it doesn't work :|

DO NOT CLOSE!! I DID TRY THOSE: https://www.robloxdev.com/api-reference/function/Player/LoadCharacterAppearance https://www.robloxdev.com/api-reference/function/Player/ClearCharacterAppearance https://www.robloxdev.com/api-reference/function/Players/GetCharacterAppearanceAsync

All that happened is my character appearing all in my skin color, no clothes......

1 answer

Log in to vote
1
Answered by
Vulkarin 581 Moderation Voter
5 years ago

Think there's a much easier way to do this than with those functions yes, I'm not sure if you tried Player.CharacterAppearanceId:

game:GetService("Players").PlayerAdded:Connect(function(pl)
    pl.CharacterAppearanceId = 114962047
end)

This will automatically set all joining players to your appearance, but you may change the ID at will

1
THANK YOU SO MUCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH marketmanager1 52 — 5y
0
lol no problem Vulkarin 581 — 5y
Ad

Answer this question