I need a part to be incerted to the character's body everytime they respawn Here's the script I made:
local Backpack = game:GetService("ReplicatedStorage"):Waitforchild("Backpack")
local Player = game:GetService("Players").localplayer
Player.Character.Respawned:Connect(function(Character)
local clone = Backpack:clone(Character.Torso)
end