FuzeHvH

Untitled

Dec 8th, 2021 (edited)
837
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.84 KB | None | 0 0
  1. local function Spend(SkillName, TreeType)
  2.     pcall(function()
  3.         game:GetService("Players").LocalPlayer.Character.RemoteFunction:InvokeServer("LearnSkill", {["Skill"] = SkillName, ["SkillTreeType"] = TreeType})
  4.     end)
  5. end
  6. local MyKQBTDConfig = {
  7.     Stand = {
  8.     "Destructive Power I",
  9.     "Destructive Power II",
  10.     "Destructive Power III",
  11.     "Bomb Leap",
  12.     "Plant Bomb",
  13.     "Detonate Bomb",
  14.     "Explosive Power I",
  15.     "Explosive Power II",
  16.     "Explosive Power III",
  17.     "Explosive Power IV",
  18.     "Explosive Power V",
  19.     "Explosive Power VI",
  20.     "Explosive Power VII",
  21.     "Bites the Dust",
  22.     "Sheer Heart Attack",
  23.     "Stray Cat Bubble Bomb",
  24.     "Coin Bomb",
  25.     "Scattered Coin Bombs"
  26.     },
  27.     Spec = {
  28.     "Charge Hamon",
  29.     "Hamon Charge I",
  30.     "Hamon Charge II",
  31.     "Hamon Charge III",
  32.     "Hamon Charge VI",
  33.     "Hamon Charge V",
  34.     "Hamon Duration I",
  35.     "Hamon Duration II",
  36.     "Hamon Duration III",
  37.     "Hamon Duration VI",
  38.     "Hamon Duration V",
  39.     "Hamon Punch",
  40.     "Hamon Defense I",
  41.     "Hamon Defense II",
  42.     "Hamon Defense III",
  43.     "Zoom Punch",
  44.     "Mastered Zoom Punch"
  45.     },
  46.     Character = {
  47.         "Vitality I",
  48.         "Vitality II",
  49.         "Vitality III",
  50.         "Vitality IV",
  51.         "Vitality V",
  52.         "Vitality VI",
  53.         "Vitality VII",
  54.         "Vitality VIII",
  55.         "Vitality IX",
  56.         "Agility I",
  57.         "Agility II",
  58.         "Agility III",
  59.         "Agility IV",
  60.         "Agility V",
  61.         "Worthiness I",
  62.         "Worthiness II",
  63.         "Health Regen I",
  64.         "Health Regen II",
  65.         "Sturdiness I"
  66.     }
  67. }
  68.  
  69. for i,v in pairs(MyKQBTDConfig.Stand) do
  70.     Spend(v,"Stand")
  71. end
  72.  
  73. for i,v in pairs(MyKQBTDConfig.Spec) do
  74.     Spend(v, "Spec")
  75. end
  76.  
  77. for i,v in pairs(MyKQBTDConfig.Character) do
  78.     Spend(v, "Character")
  79. end
Add Comment
Please, Sign In to add comment