How do I make my character’s body replicate when I die? Someone could help me with the code please
Do you want to copy the character’s body into workspace? What do you want to do with it?
1 Like
Yes I want a character copy into workspace, how could I do that?
you’d need to set the players character to archivable before cloning it since its automatically disabled
2 Likes
I understand, thank you for letting me know :o With regard to the code, could you help me please
What do you need help with in regards to the code?
I need to create a copy of the player in the workspace and I don’t know how to do that
ethairo gave you a wonderful response. What is it that your specifically need help with?
I’ve posted how you should be able to do this with comments showing what each line does (Sorry for any errors i’m on mobile atm)
Character.Archivable = true
-- Allows us to use :Clone on the character as it is default set to false
local ClonedChar = Character:Clone()
-- Clones the character and saves it in the script as the variable ‘ClonedChar’
ClonedChar.Parent = workspace
--Sets this Cloned characters parent to workspace
1 Like
Thanks you a lot!!