Advertisement
MayWeEnjoy

Equip All Tools script

May 28th, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. -- Equip All Tools
  2.  
  3. local player = game.Players.LocalPlayer
  4. local character = player.Character or player.CharacterAdded:Wait()
  5. local backpack = player:WaitForChild("Backpack")
  6.  
  7. -- Function to equip all tools
  8. local function equipAllTools()
  9. -- Loop through all tools in the Backpack
  10. for _, tool in ipairs(backpack:GetChildren()) do
  11. if tool:IsA("Tool") then
  12. tool.Parent = character -- Move tool to character to equip
  13. end
  14. end
  15. end
  16.  
  17. -- Call the function
  18. equipAllTools()
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement