Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I remove certain tools from EVERY player in the game?

Asked by 7 years ago

I know that THIS removes tools from a certain player.. But what if I want to remove it from every player?

1game.Players.PlayerAdded:Connect(function(plr)
2    plr.Chatted:Connect(function(msg)
3        if msg == "RemoveTools" then
4            plr.Backpack.Tool:Remove()
5        end
6    end)
7end)

1 answer

Log in to vote
1
Answered by 7 years ago
Edited 7 years ago

You can use a loop to iterate through all of the players in the game and destroy their tools.

1game.Players.PlayerAdded:Connect(function(plr)
2    plr.Chatted:Connect(function(msg)
3        if msg == "RemoveTools" then
4            for i,v in pairs(game.Players:GetPlayers()) do
5                v.Backpack.Tool:Destroy()
6            end
7        end
8    end)
9end)

This is basically what you said except it iterates through all the player's and destroys their tools.

Ad

Answer this question