Advertisement
minecrafter206

Lifting Titans auto buy dna

May 21st, 2021
1,035
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.53 KB | None | 0 0
  1. local DNALayout = {
  2.     King = 1,
  3.     Normal = 0,
  4.     Noob = 2,
  5.     Adult = 3,
  6.     Puppy = 4,
  7.     Doggy = 5,
  8.     Fox = 6,
  9.     Bear = 7,
  10.     Donkey = 8,
  11.     Lion = 9,
  12.     Zebra = 10,
  13.     Crocodile = 11,
  14.     Whale = 12,
  15.     Earth = 13,
  16.     Aqua = 14,
  17.     Nature = 15,
  18.     Sky = 16,
  19.     Cloud = 17,
  20.     ["Baby-angel"] = 18,
  21.     Angel = 19,
  22.     ["Giant-octopus"] = 20,
  23.     Electric = 21,
  24.     ["Spark-spark"] = 22,
  25.     Neon = 23,
  26.     Galaxy = 24,
  27.     Iluminate = 25,
  28.     Lucky = 26,
  29.     Flamin = 27,
  30.     Love = 28,
  31.     ["Red-dragon"] = 29,
  32.     Demon = 30,
  33.     ["Void-dragon"] = 31,
  34.     Moon = 32,
  35.     Mars = 33,
  36.     Climate = 34,
  37.     Youtube = 35,
  38.     Star = 36,
  39.     Overlord = 37,
  40.     Monster = 38,
  41.     Money = 39,
  42.     Techno = 40,
  43.     Sun = 41,
  44.     Tiger = 42,
  45.     Troll = 43,
  46.     Dragon = 44,
  47.     Buff = 45,
  48.     Hawk = 46,
  49.     Mushroom = 47,
  50.     Galactic = 48,
  51.     Reaper = 49,
  52.     Rainbow = 50,
  53.     Hydra = 51,
  54.     Forcefield = 52,
  55.     Wind = 53,
  56.     Strawberry = 54,
  57.     Snowfox = 55,
  58.     Gladiator = 56,
  59.     Swag = 57,
  60.     Foxy = 58,
  61.     Unicorn = 59,
  62.     Slime = 60,
  63.     Dominus = 61,
  64.     Alien = 62,
  65.     Fire = 63,
  66.     Space = 64,
  67.     Devil = 65,
  68.     Volcano = 66
  69. }
  70.  
  71. function next(table, str)
  72.     for i,k in pairs(table) do
  73.         if tostring(i) == str then
  74.             return tostring(k)
  75.         end
  76.     end
  77. end
  78.  
  79. function getname(table, int)
  80.     for i,k in pairs(table) do
  81.         if k == int then
  82.             return i
  83.         end
  84.     end
  85. end
  86.  
  87.  
  88. while wait() do
  89.     game:GetService("ReplicatedStorage").Remotes.Buy:FireServer("DNA", tostring(getname(DNALayout, next(DNALayout, game:GetService("Players").LocalPlayer.leaderstats.DataFolder.CurrentDNA.Value) +1)))
  90. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement