Advertisement
fahadzia

Super Power Fighting Simulator script made by smoker#7956

Dec 17th, 2021
2,316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 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("auto farming") -- Creates the window
  4.  
  5. local b = w:CreateFolder("farming :)") -- Creates the folder(U will put here your buttons,etc)
  6.  
  7.  
  8. b:Label("auto farming ",{
  9. TextSize = 25; -- Self Explaining
  10. TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  11. BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  12.  
  13. })
  14.  
  15. b:Label("made by smoker ",{
  16. TextSize = 25; -- Self Explaining
  17. TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  18. BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  19.  
  20. })
  21.  
  22.  
  23. b:Button("farm psychic",function()
  24. local args = {
  25. [1] = "Psychic"
  26. }
  27. getgenv().farmer = true;
  28. while wait()do
  29. if getgenv().farmer ==true then
  30. game:GetService("ReplicatedStorage").Events.Train:FireServer(unpack(args))
  31. end
  32. end
  33. end)
  34.  
  35. b:Button("Strength farm",function()
  36. local args = {
  37. [1] = "Strength"
  38. }
  39. getgenv().farmer = true;
  40. while wait()do
  41. if getgenv().farmer ==true then
  42. game:GetService("ReplicatedStorage").Events.Train:FireServer(unpack(args))
  43. end
  44. end
  45. end)
  46.  
  47. b:Button("farm Endurance",function()
  48. local args = {
  49. [1] = "Endurance"
  50. }
  51. getgenv().farmer = true;
  52. while wait()do
  53. if getgenv().farmer ==true then
  54. game:GetService("ReplicatedStorage").Events.Train:FireServer(unpack(args))
  55. end
  56. end
  57. end)
  58.  
  59. b:Button("stop all farm",function()
  60. local args = {
  61. [1] = "Psychic"
  62. }
  63. getgenv().farmer = false;
  64. while wait()do
  65. if getgenv().farmer ==false then
  66. game:GetService("ReplicatedStorage").Events.StopTraining:FireServer()
  67. end
  68. end
  69. end)
  70.  
  71. local b = w:CreateFolder("admin commands")
  72.  
  73.  
  74. b:Label("admin commands ",{
  75. TextSize = 25; -- Self Explaining
  76. TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  77. BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  78.  
  79. })
  80.  
  81.  
  82. b:Button("admin commands",function()
  83. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  84. end)
  85.  
  86. b:DestroyGui()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement