RIKolig

SodaXSimulator

Jun 30th, 2022 (edited)
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.93 KB | None | 0 0
  1. -- //library//
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  4.  
  5. -- //windows//
  6.  
  7. local Window = Library.CreateLib("Soda X Simulator by scq2x#5988 | v0.2", "Midnight")
  8.  
  9. -- //tabs//
  10.  
  11. local AutoFarmTab = Window:NewTab("AutoFarm")
  12.  
  13. local EggsTab = Window:NewTab("Eggs")
  14.  
  15. local MiscTab = Window:NewTab("Misc")
  16.  
  17. local CreditsTab = Window:NewTab("Credits")
  18.  
  19. -- //autofarm sections//
  20.  
  21. local AutoShakeSection = AutoFarmTab:NewSection("AutoShake")
  22.  
  23. local AutoSellSection = AutoFarmTab:NewSection("AutoSell")
  24.  
  25. local AutoBuySection = AutoFarmTab:NewSection("AutoBuy")
  26.  
  27. -- //autofarm funtions//
  28. getgenv().autoshake = false;
  29. AutoShakeSection:NewToggle("Toggle", "Autoshaking bottle", function(state)
  30.     getgenv().autoshake = state;
  31.     while autoshake == true do
  32.         game:GetService("ReplicatedStorage").Assets.Events.Shake:FireServer()
  33.         wait()
  34.     end
  35. end)
  36.  
  37. getgenv().autosell = false;
  38. getgenv().autosell_delay = 5;
  39. AutoSellSection:NewToggle("Toggle", "Autoselling", function(state)
  40.     getgenv().autosell = state;
  41.     while autosell == true do
  42.         game:GetService("ReplicatedStorage").Assets.Events.TPSell:FireServer()
  43.         wait(getgenv().autosell_delay)
  44.     end
  45. end)
  46.  
  47. AutoSellSection:NewSlider("Delay", "Delay for autosell", 60, 1, function(s) -- 500 (MaxValue) | 0 (MinValue)
  48.     getgenv().autosell_delay = s;
  49. end)
  50.  
  51. getgenv().autobuy_flavors = false;
  52. AutoBuySection:NewToggle("Flavors", "bruh", function(state)
  53.     getgenv().autobuy_flavors = state;
  54.     while autobuy_flavors == true do
  55.         game:GetService("ReplicatedStorage").Assets.Events.BuyAll:InvokeServer("Flavors")
  56.         wait(5)
  57.     end
  58. end)
  59.  
  60. -- //misc sections//
  61.  
  62. local ToggleUISection = MiscTab:NewSection("Toggle UI")
  63.  
  64. -- //misc functions//
  65.  
  66. ToggleUISection:NewKeybind("Toggle UI", "KeybindInfo", Enum.KeyCode.RightControl, function()
  67.     Library:ToggleUI()
  68. end)
Add Comment
Please, Sign In to add comment