I've tried this:
local copy = game.Workspace.Tool:Clone() copy.Parent = game.Players.Player1.Backpack
But it gives me an error saying "Player1 is not a valid member of Players" which I tried to fix by using:
local copy = game.Workspace.Tool:Clone() copy.Parent = game.Players.TheRealJMHacker.Backpack
But it gives me the same error except my name replaces "Player1"
Just replace "Tool" with the name of the tool in the player's backpack. This will put the tool into the character which makes the player equip it.
game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:connect(function(char) plr.Backpack.Tool.Parent = char end) end)