I know that THIS removes tools from a certain player.. But what if I want to remove it from every player?
1 | game.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 ) |
7 | end ) |
You can use a loop to iterate through all of the players in the game and destroy their tools.
1 | game.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 ) |
9 | end ) |
This is basically what you said except it iterates through all the player's and destroys their tools.