i cant figure out how to copy a character to a player
local plr = game.Players.LocalPlayer local m = game.ServerStorage.Pets.Husky.StarterCharcter:Clone() m = plr
this code does not work and i do not know why
This will not work for several reasons, firstly you are setting the variable m to the player, it should be the other way around, secondly you are trying to directly set the player object instead of the character property inside the player object, it should look more like:
plr.Character = m