I cannot make the player unequip all of his tool he is holding, how can i make it unequipped?
for i, v in pairs(game.Players:GetPlayers()) do name = v.Name check = game.Workspace:FindFirstChild(name) if check then human = check:FindFirstChild("Humanoid") if human then -- part of the problem tools = check:GetChildren() if tools:IsA("Tool") then tools:Destroy() end end end end
There is a method of Humanoid called UnequipTools
More info here
Locked by Redbullusa, MessorAdmin, and EzraNehemiah_TF2
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?