Hello everyone!
I am a little confused about how to force-equip a specific tool that does not have a specified name. The name of the tool varies since the tool is chosen by the player. There is only one tool that needs to be equipped, but I don’t know how to specify a specific one.
Here’s my code:
for _, player in pairs(players:GetPlayers()) do
local character = player.Character
local humanoid = character.Humanoid
humanoid:EquipTool('problem here')
player:LoadCharacter()
character.Torso.CFrame = workspace.Map.SpawnLocation.CFrame
end