Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -------Equip Tools-------
- for i,v in pairs(game:GetService('Players').LocalPlayer.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = game:GetService('Players').LocalPlayer.Character
- end
- end
- --------------------------
- -------Unequip Tools-------
- for i,v in pairs(game:GetService('Players').LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = game:GetService('Players').LocalPlayer.Backpack
- end
- end
- --------------------------
- -------Drop Tools-------
- for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = game.Workspace
- end
- end
- --------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement