Advertisement
kingmohamed

super human training simulator (repost)

Aug 30th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1.  
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  4.  
  5. local Window = Library.CreateLib("super human training simulator", "Sentinel")
  6.  
  7. local Main = Window:NewTab("auto farm")
  8.  
  9. local Upgrade = Window:NewTab("auto Upgrade")
  10.  
  11. local Teleport = Window:NewTab("Teleports")
  12.  
  13. local Section = Main:NewSection("Main")
  14.  
  15. local UPSection = Upgrade:NewSection("Select")
  16.  
  17. local ZoneS = Teleport:NewSection("training Zone")
  18.  
  19. Section:NewKeybind("Toggle UI", "KeybindInfo", Enum.KeyCode.F, function()
  20. Library:ToggleUI()
  21. end)
  22.  
  23. Section:NewToggle("auto Strength", "", function(v)
  24. getgenv().Strength = v
  25. while getgenv().Strength == true do
  26. game:GetService("ReplicatedStorage").remotes.train:FireServer("Strength")
  27. game:GetService("RunService").Heartbeat:wait();
  28. end
  29. end)
  30.  
  31. Section:NewToggle("auto Endurance", "", function(v)
  32. getgenv().Endurance = v
  33. while getgenv().Endurance == true do
  34. game:GetService("ReplicatedStorage").remotes.train:FireServer("Endurance")
  35. game:GetService("RunService").Heartbeat:wait();
  36. end
  37. end)
  38.  
  39. Section:NewToggle("auto Psychic", "", function(v)
  40. getgenv().Psychic = v
  41. while getgenv().Psychic == true do
  42. game:GetService("ReplicatedStorage").remotes.train:FireServer("Psychic")
  43. game:GetService("RunService").Heartbeat:wait();
  44. end
  45. end)
  46.  
  47. Section:NewToggle("auto Agility", "", function(v)
  48. getgenv().Agility = v
  49. while getgenv().Agility == true do
  50. game:GetService("ReplicatedStorage").remotes.train:FireServer("Agility")
  51. game:GetService("RunService").Heartbeat:wait();
  52. end
  53. end)
  54.  
  55. Section:NewToggle("auto Rank Up", "", function(v)
  56. getgenv().Rank = v
  57. while getgenv().Rank == true do
  58. game:GetService("ReplicatedStorage").remotes.rankup:InvokeServer()
  59. game:GetService("RunService").Heartbeat:wait();
  60. end
  61. end)
  62.  
  63. Section:NewToggle("auto Fuse", "", function(v)
  64. getgenv().Fuse = v
  65. while getgenv().Fuse == true do
  66. game:GetService("ReplicatedStorage").remotes.Fuse:InvokeServer()
  67. game:GetService("RunService").Heartbeat:wait();
  68. end
  69. end)
  70.  
  71. UPSection:NewToggle("auto Upgrade Endurance", "", function(v)
  72. getgenv().UPEn = v
  73. while getgenv().UPEn == true do
  74. game:GetService("ReplicatedStorage").remotes.multi:InvokeServer("Endurance")
  75. game:GetService("RunService").Heartbeat:wait();
  76. end
  77. end)
  78.  
  79.  
  80. UPSection:NewToggle("auto Upgrade Strength", "", function(v)
  81. getgenv().UPST = v
  82. while getgenv().UPST == true do
  83. game:GetService("ReplicatedStorage").remotes.multi:InvokeServer("Strength")
  84. game:GetService("RunService").Heartbeat:wait();
  85. end
  86. end)
  87.  
  88. UPSection:NewToggle("auto Upgrade Psychic", "", function(v)
  89. getgenv().UPS = v
  90. while getgenv().UPS == true do
  91. game:GetService("ReplicatedStorage").remotes.multi:InvokeServer("Psychic")
  92. game:GetService("RunService").Heartbeat:wait();
  93. end
  94. end)
  95.  
  96. UPSection:NewToggle("auto Upgrade Agility", "", function(v)
  97. getgenv().UPAG = v
  98. while getgenv().UPAG == true do
  99. game:GetService("ReplicatedStorage").remotes.multi:InvokeServer("Agility")
  100. game:GetService("RunService").Heartbeat:wait();
  101. end
  102. end)
  103.  
  104. local SCPNames = {}
  105. for _,v in pairs(workspace:WaitForChild("training zones").distance:GetChildren()) do
  106. if v:IsA('Part') or v:IsA("SpawnLocation") then
  107. if not table.find(SCPNames, v.Name) then
  108. table.insert(SCPNames, v.Name)
  109. end
  110. end
  111. end
  112.  
  113.  
  114. ZoneS:NewDropdown("Teleport to training zone", "LOL", SCPNames, function(c) -- drop down for multiple options that go under the same catagory, ex. Aimbone (Head, UpperTorso, Legs)
  115. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace"):WaitForChild("training zones").distance[c].CFrame
  116. end)
  117.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement