I have a game script that clones a tool into a players backpack but the tool doesn’t work (FE Gun Kit)
but when I put it in the starterpack it works, How can I fix this?
for a,b in pairs(game.Players:GetChildren()) do
local randweapons = math.random(1, #weapons)
local loadout = weapons[randweapons]:Clone()
loadout.Parent = b.Backpack
b.Character.Humanoid:EquipTool(loadout)
oh right my bad i didnt read it carefully lol
any errors when you try to use the cloned tool
also try to compare the cloned tool and the original tool in the explorer to see what is missing