after i use :loadcharacter i want to know how i could return the player to there normal avatar should i destroy the model? or something else.
Just loadcharacter them normally without putting a new character and it should go to their default character.
so just do Player:LoadCharacter() and nothing inside the ()?
Yes. This is if you did not set a starter character.
oh, i set a startercharacter and i was wondering how i could change them back to there old avatar wehn the player meets a condition.
1 Like
local playersService = game:GetService("Players")
local player = playersService["Name"]
local humDesc = playersService:GetHumanoidDescriptionFromUserId(player.UserId)
playerLoadCharacterWithHumanoidDescription(humDesc)
should work.
4 Likes