Advertisement
totallynotcopied

Untitled

Nov 2nd, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(key)
  2. if key == "e" then -- key to equip swords
  3. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4. if v:IsA("Tool") then
  5. v.Parent = game.Players.LocalPlayer.Character
  6. end
  7. end
  8. end
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement