Advertisement
PG_MCVN

auto farm lẻ SOP

Dec 15th, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. ByBasss Trước
  2. game.Players.LocalPlayer.Character.Head:Destroy()
  3. game.Players.LocalPlayer.CharacterAppearanceLoaded:connect(function()
  4. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  5. if v.ClassName == "Script" then
  6. v:Destroy()
  7. end
  8. end
  9. end)
  10.  
  11. Số 1:
  12. local weapon = game.Players.LocalPlayer.Backpack
  13. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  14. if v.Name == "Gryphon" then
  15. v.Parent = game.Players.LocalPlayer
  16. end
  17. end
  18.  
  19. số 2:
  20. local weapon = game.Players.LocalPlayer.Backpack
  21. _G.weapon = true
  22. while _G.weapon do
  23. wait()
  24. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  25. if v.Name == "Gryphon" then
  26. v.Parent = game.Players.LocalPlayer
  27. end
  28. end
  29. end
  30. Xong Lấy Nhiều Kiếm cmn lên
  31.  
  32. 3:local weapon = game.Players.LocalPlayer.Backpack
  33. _G.weapon = false
  34. while _G.weapon do
  35. wait()
  36. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  37. if v.Name == "Gryphon" then
  38. v.Parent = game.Players.LocalPlayer.Backpack
  39. end
  40. end
  41. end
  42. Xong Dùng cái này để hiện kiếm
  43. local weapon = game.Players.LocalPlayer.Backpack
  44. _G.weapon = true
  45. while _G.weapon do
  46. wait()
  47. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  48. if v.Name == "Gryphon" then
  49. v.Parent = game.Players.LocalPlayer.Backpack
  50. end
  51. end
  52. end
  53.  
  54. số 4: Equip all Kiếm
  55. local weapon = game.Players.LocalPlayer.Backpack
  56. _G.weapon = true
  57. while _G.weapon do
  58. wait()
  59. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  60. if v.Name == "Gryphon" then
  61. v.Parent = game.Players.LocalPlayer.Character
  62. end
  63. end
  64. end
  65.  
  66. số 5: tự đánh
  67. local weapon = game.Players.LocalPlayer.Backpack
  68. _G.weapon = true
  69. while _G.weapon do
  70. wait()
  71. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  72. if v.Name == "Gryphon" then v:Activate() end
  73. end
  74. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement