Answered by
5 years ago Edited 5 years ago
use player:ClearCharacterAppearance() then player:LoadAppearance(playerId):
2 | local player = game:GetService( "Players" ).Screaming_Monkeys |
3 | player:ClearCharacterAppearance() |
4 | player:LoadCharacterAppearance(PLAYER ID YOU WANT) |
The playerId are numbers, you can get it in the link to someone profile (example: my profile is "https://www.roblox.com/users/2479393/profile", so my userId is 2479393), or if you want the if of someone ingame you can get the property userId or characterappearanceid of a player:
2 | local player = game:GetService( "Players" ).Screaming_Monkeys |
3 | local id = game:GetService( "Players" ).PLAYERNAME.UserId |
4 | player:ClearCharacterAppearance() |
5 | player:LoadCharacterAppearance(id) |