#How to override player character?

1 messages · Page 1 of 1 (latest)

copper breach
#

I have been searching for tutorials regarding the topic but I have not found one yet. How would you forcefully override avatar body parts or just turn someone into a character rig, or if you know a tutorial please send it. I've tried some things I wasn't succesful

wicked swallow
copper breach
#

Alr thx

#

Wait but

#

I made it so when you touch a part it will change the players team but I can’t put it into starter character in this scenario

#

If I put it in starter character every player will become that and since there are different teams and each one has a different avatar it won’t work

wicked swallow
# copper breach I made it so when you touch a part it will change the players team but I can’t p...

then duplicate the character you want, and set the Player's Character to that.
Example: (after you change the Team)

-- Create a new copy of your character, and put it in workspace
local Character = game.ServerStorage.MyCharacter:Clone() -- set to whatever character you want the player to have
Character.Parent = workspace

-- Ser the player's character, and add the StarterCharacterScripts
Player.Character = Character
for _, Script in game.StarterPlayer.StarterCharacterScripts:GetChildren() do
  Script:Clone().Parent = Character
end