Hello! I’m working on a Combat Script However I don’t want it to fire when I hold any tool in my hand.
What have I tried so far?
for i,v in pairs(Character:GetChildren()) do
if v:IsA("Tool") then
return
end
end
Wich works but after I stop Holding the Part The Script won’t work anymore.
Does anyone know a solution?