I’m fairly new to scripting, so sorry to begin if I miss understand your help, however currently I am attempting to be able to clone the character’s avatar items onto another character, I’ve seen a few methods like using the clone() function and various other functions that I do not fully understand yet. I’m just looking for help on a more clear method to be able to do so!
This is all I got so far, and don’t really know where to go next.
game.Workspace.Player.Torso:Connect(function(hit)
local player = game:GetService("Players"):GetPlayerFromCharacter(hit.Parent)
local deb = true
if deb == false then return end
if player then
end
end)
Again sorry for any future confusion!