I’m making a module that’s equipping tools for characters.
When I :EquipTool() on a humanoid it doesn’t do anything. Here’s my code.
function ToolMechanics:EquipDefaultTool(Player)
if RunService:IsServer() then
print("Equipping default tool")
Player.Character.Humanoid:EquipTool(ServerStorage.SpawnableObjects.Weapons.fists)
print("Equipped default tool on: ".. Player.Character.Humanoid.Name)
end
end
The output prints out everything as expected, but the tool doesn’t print anything, not even if I just print something on the first line in the script, the tool I’m equipping doesn’t even clone into the character.
Anyone knows what to do?