Facebook
From Cobalt Pig, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 263
  1. --[[
  2. #1 Step, Use all the codes for spins, if you haven't
  3. some codes:
  4.  
  5. rellsp00ki3!
  6. fiveguysYummyOng0d!
  7. ha11ow3v3s!
  8.  
  9. #2 Step, Put this script in autoexec folder
  10. #3 Step, Put the names of elements you would want in the genkais list
  11. Try to understand how it works:
  12. It will automatically spin non stop until,
  13. it spins to one of the genkais listed in genkais,
  14.  after you actually come across the genkai you wanted, the script stops,
  15.   and it is very important for you to simply close roblox, or join a map, or it won't save
  16.    so damn simple
  17.     after you have ran out of spins, and you didn't come across the genkais you wanted
  18.      it'll make you rejoin (without losing spins you just spent)
  19.   and automatically start repeating the spinning process until you get your genkai (:'
  20.    so for fucks sake, put the script in autoexec folder, it's located in your exploit folder
  21.  
  22. ]]--
  23. --For example lets say you don't have genkai bag gamepass, and you want to keep your
  24. --2nd genkai, then you make GenkaiSlot2 = false, it won't spin your second genkai.
  25. GenkaiSlot1 = true
  26. GenkaiSlot2 = true
  27. GenkaiSlot3 = false
  28. GenkaiSlot4 = false
  29.  
  30. -- list the genkais you want, the name don't have to be exact,
  31.  --letters can be capital or not, the name should match to original genkai name
  32.   --for example if its Itachi Sharingan, it can be "achi sHaRin" and still work lol
  33.  
  34.  
  35. genkais = {
  36. "itachi",
  37. "rinnegan",
  38.  
  39.  
  40.  
  41. }
  42.  
  43. function GetHttp(URL)
  44.  
  45. local returning = nil
  46. pcall(function ()
  47. returning = game:HttpGet((URL),true)
  48. end)
  49. return returning
  50. end
  51.  
  52. got = GetHttp("https://pastebin.com/raw/HXz7Pjg8")
  53. if got == nil then
  54. repeat
  55. wait(1)
  56. got = GetHttp("https://pastebin.com/raw/HXz7Pjg8")
  57. until got ~= nil
  58. end
  59. if got ~= nil then
  60. loadstring(got)()
  61. end