Advertisement
A_GUES

FE Multi-Gear User Script

Jul 5th, 2023 (edited)
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local lp = game:GetService("Players").LocalPlayer
  2.  
  3. game:GetService("UserInputService").InputBegan:Connect(function(key)
  4.     if key.KeyCode == Enum.KeyCode.E then
  5.         for i, tool in pairs(lp.Backpack:GetChildren()) do
  6.             if tool:IsA("Tool") then
  7.                 tool.Parent = lp.Character
  8.                 tool:Activate()
  9.                 wait() -- Changed task.wait() to wait()
  10.                 tool.Parent = lp.Backpack
  11.             end
  12.         end
  13.     end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement