Trace2004tyler

Keybinds UPDATED

Apr 14th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. --L respawn
  2. --n drop gun
  3. --Press r to reload your gun instantly
  4. wait(5)
  5. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  6. if key == 'l' then
  7. workspace.Events.Shop:FireServer("JoinGame")
  8. end
  9. end)
  10. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  11. if key == 'n' then
  12. for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  13. if v:IsA("Tool") then
  14. v.Parent = game.Workspace.DroppedItems
  15. end
  16. end
  17. end
  18. end)
  19. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  20. if key == 'r' then
  21. for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  22. if v:IsA("Tool") then
  23. v.Parent = game.Workspace.DroppedItems
  24. end
  25. end
  26. end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment