Advertisement
Guest User

Sword Dup

a guest
Dec 15th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. 1.local weapon = game.Players.LocalPlayer.Backpack
  2. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3. if v.Name == "3SS Katana" then
  4. v.Parent = game.Players.LocalPlayer
  5. end
  6. end
  7.  
  8.  
  9.  
  10. 2.local weapon = game.Players.LocalPlayer.Backpack
  11. _G.weapon = true
  12. while _G.weapon do
  13. wait()
  14. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  15. if v.Name == "3SS Katana" then
  16. v.Parent = game.Players.LocalPlayer
  17. end
  18. end
  19. end
  20.  
  21.  
  22.  
  23. 3.local weapon = game.Players.LocalPlayer.Backpack
  24. _G.weapon = true
  25. while _G.weapon do
  26. wait()
  27. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  28. if v.Name == "3SS Katana" then
  29. v.Parent = game.Players.LocalPlayer.Backpack
  30. end
  31. end
  32. end
  33.  
  34.  
  35.  
  36. 4.local weapon = game.Players.LocalPlayer.Backpack
  37. _G.weapon = true
  38. while _G.weapon do
  39. wait()
  40. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  41. if v.Name == "3SS Katana" then
  42. v.Parent = game.Players.LocalPlayer.Character
  43. end
  44. end
  45. end
  46.  
  47.  
  48. 5.local weapon = game.Players.LocalPlayer.Backpack
  49. _G.weapon = true
  50. while _G.weapon do
  51. wait()
  52. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  53. if v.Name == "3SS Katana" then v:Activate() end
  54. end
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement