#unequip all tools
4 messages · Page 1 of 1 (latest)
4 messages · Page 1 of 1 (latest)
how to unequip all tools in a server when a script runs
not just 1 player
the whole erver
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