bobokoebe

Avatar: The Last Airbender

Sep 30th, 2020
527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  2.  
  3. local w = library:CreateWindow("Avatar the last air bender")
  4. local avatar = w:CreateFolder("bobokoebe#0536")
  5.  
  6. avatar:Slider("Strength",{
  7. min = 1;
  8. max = 350;
  9. precise = true;
  10. }, function(value)
  11. game:GetService("Players").LocalPlayer.PlayerData.Stats.Strength.Value = value
  12. end)
  13.  
  14. avatar:Slider("Defense",{
  15. min = 1;
  16. max = 350;
  17. precise = true;
  18. }, function(value)
  19. game:GetService("Players").LocalPlayer.PlayerData.Stats.Defense.Value = value
  20. end)
  21.  
  22. avatar:Slider("Stamina",{
  23. min = 1;
  24. max = 350;
  25. precise = true;
  26. }, function(value)
  27. game:GetService("Players").LocalPlayer.PlayerData.Stats.Stamina.Value = value
  28. end)
  29.  
  30. avatar:Toggle("Max Level", function(bool)
  31. _G.punch = bool
  32.  
  33. game:GetService('RunService').RenderStepped:connect(function()
  34. if _G.punch then
  35. wait()
  36. for count = 1, 10 do -- Loop 10 times.
  37. local string_1 = "ProcessKey";
  38. local table_1 = { ["Key"] = 'E' };
  39. local Target = game:GetService("ReplicatedStorage").NetworkFolder.GameFunction;
  40. Target:InvokeServer(string_1, table_1);
  41. end
  42. end
  43. end)
  44. end)
  45.  
  46. avatar:Slider("Hitbox extender", {
  47. min = 1;
  48. max = 20;
  49. pricise = true;
  50. }, function(value)
  51. _G.HeadSize = value
  52. _G.Disabled = true game:GetService('RunService').RenderStepped:connect(function() if _G.Disabled then
  53. for i,v in next, game:GetService('Players'):GetPlayers() do
  54. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  55. pcall(function()
  56. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize) v.Character.HumanoidRootPart.Transparency = 0.8 v.Character.HumanoidRootPart.BrickColor = BrickColor.new("White") v.Character.HumanoidRootPart.Material = "Neon" v.Character.HumanoidRootPart.CanCollide = false
  57. end)
  58. end
  59. end
  60. end
  61. end)
  62. end)
  63.  
Add Comment
Please, Sign In to add comment