Advertisement
manbrohell

ant life roblox script

Apr 3rd, 2024
1,628
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 1 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("ant life", "LightTheme")
  3.  
  4.  
  5. local antblack = Window:NewTab("ant black")
  6. local antblackSection = antblack:NewSection("ant hub")
  7.  
  8. antblackSection:NewButton("fling ants", "he fling peoples", function()
  9. loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI"))()
  10. end)
  11.  
  12. antblackSection:NewToggle("speed ant", "that just make your speed", function(state)
  13. if state then
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (100)
  15. else
  16. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (16)
  17. end
  18. end)
  19.  
  20. antblackSection:NewButton("want rtx? ", "that for play god", function()
  21.  
  22. getgenv().RTX_Name = "rtxnamehere" --not really needed if you don't need it
  23.  
  24. --[[
  25. examples auto loads features :
  26.  
  27.  
  28. getgenv().RTX_Name = "Midday lite"
  29.  
  30. -Morning
  31. -Afternoon
  32. -Midday
  33. -Evening
  34. -Night
  35. -Midnight
  36.  
  37. -Morning lite
  38. -Midday lite
  39. -Afternoon lite
  40. -Evening lite
  41. -Night lite
  42. -Midnight lite
  43.  
  44. ]]
  45.  
  46. loadstring(game:HttpGet(('https://pastefy.app/xXkUxA0P/raw'),true))()
  47. end)
  48.  
  49. local trollingants = Window:NewTab("xd trolling ants")
  50. local trollingantsSection = trollingants:NewSection("trolling ants")
  51. trollingantsSection:NewButton("chat bypassed", "lol that for trolling ants", function()
  52. loadstring(game:HttpGet("https://raw.githubusercontent.com/Synergy-Networks/products/main/BetterBypasser/loader.lua",true))()
  53. end)
  54.  
  55. antblackSection:NewSlider("walkspeed", "that speed too", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  56. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  57. end)
  58.  
  59. antblackSection:NewSlider("jump high", "that jump for power", 350, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  60. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  61. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement