#How do i replace the player character with a custom model

1 messages · Page 1 of 1 (latest)

silver quartz
#

btw just want informe i have to none coding knowledge ok great

hello, can someone help me with something, im trying to figure how to swap the player character to a different model entirely(beaing the provided image), im pretty unsure on what to do so yeah, its not rigged because i am unsure if it needs to be and if that comes before or after, i have little to none in coding background so expect me to be the brightest

vernal vessel
fossil furnace
#

put the character in starterplayer

#

and name it starter character

fossil furnace
#

yk

#

then do some

#

shit like

#

that

#
local customCharacter = game.ServerStorage.Characters.CustomCharacter:Clone(); -- of course you'd change this to your path
customCharacter.Name = player.Name;
customCharacter.Parent = workspace;
if player.Character then
   player.Character:Destroy() -- destroy old character if it exists
end;
player.Character = customCharacter;
#

yk

#

yeah

silver quartz
#

ok i will try to do this

silver quartz
vernal vessel
silver quartz
leaden houndBOT
#

studio** You are now Level 1! **studio

mellow island
#

if you want to change it again after that you can modify the .Character property on the player instance