Advertisement
Upscalefanatic3

SaveTools FE Script

Jul 24th, 2018
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  2. if (key=="k") then
  3. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4. if (v:IsA("Tool")) then
  5. v.Parent = game.Players.LocalPlayer
  6. end
  7. end
  8. end
  9. end)
  10. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  11. if (key=="l") then
  12. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  13. if (v:IsA("Tool")) then
  14. v.Parent = game.Players.LocalPlayer.Backpack
  15. end
  16. end
  17. end
  18. end)
  19. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  20. if (key=="p") then
  21. while wait() do
  22. local GetBackpack = game.Players.LocalPlayer.Backpack:GetChildren()
  23. for i=1, #GetBackpack do
  24. if GetBackpack[i].ClassName == "Tool" then
  25. GetBackpack[i].CanBeDropped = true
  26. end
  27. end
  28. end
  29. end
  30. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement