#unequip all tools

4 messages · Page 1 of 1 (latest)

green flare
#

how to unequip all tools in a server when a script runs

#

not just 1 player

#

the whole erver

arctic talon
#

i think this is what you are looking for

for i,v in pairs(game.Players:GetChildren())do
    if v.Character:FindFirstChild("Humanoid") then
        v.Character.Humanoid:UnequipTools()
    end
end