Advertisement
Guest User

~~~~~~~->_< Credit Owner

a guest
Dec 16th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. First Step
  2. local weapon = game.Players.LocalPlayer.Backpack
  3. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4. if v.Name == "Gryphon" then
  5. v.Parent = game.Players.LocalPlayer
  6. end
  7. end
  8. Second Step
  9. local weapon = game.Players.LocalPlayer.Backpack
  10. _G.weapon = true
  11. while _G.weapon do
  12. wait()
  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. end
  19.  
  20. Third Step
  21. local weapon = game.Players.LocalPlayer.Backpack
  22. _G.weapon = false --excute xog r chuy?n thành true nhé
  23. while _G.weapon do
  24. wait()
  25. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  26. if v.Name == "Gryphon" then
  27. v.Parent = game.Players.LocalPlayer.Backpack
  28. end
  29. end
  30. end
  31.  
  32. Four Step
  33. local weapon = game.Players.LocalPlayer.Backpack
  34. _G.weapon = true
  35. while _G.weapon do
  36. wait()
  37. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  38. if v.Name == "Gryphon" then
  39. v.Parent = game.Players.LocalPlayer.Character
  40. end
  41. end
  42. end
  43. Fifth Step
  44. local weapon = game.Players.LocalPlayer.Backpack
  45. _G.weapon = true
  46. while _G.weapon do
  47. wait()
  48. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  49. if v.Name == "Gryphon" then v:Activate() end
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement