I have made loops for other things similar to this, but I just need to know the general format for going through each tool in a player's current backpack (not starterpack!) and turning off their "Enabled" property. Thanks in advance.
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
This line of code will allow you to disable every tool. You can use this again and set "false" to "true" at any time to re-enable all tools.
I don't get what you mean but maybe this thing will work
local Player = game.Players[""]-- Your player for i, Toolsxd in pairs(Player.Backpack:GetChildren()) do if Toolsxd:IsA("Tool") then Toolsxd.Enabled = false end end