The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Soda Champions Simulator script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Soda Champions")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7. local WorldSelect = "VoidIsland"
  8. local RebirthSelect = 1
  9. local RebirthTable = {}
  10. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.RebirthGui.RebirthFrame.Background.RebirthFrame.ScrollingFrame:GetChildren()) do
  11.     if v.ClassName == "Frame" then
  12.         if v.RebirthAmount ~= nil then
  13.             RebirthTable[i] = v.RebirthAmount.Value
  14.         end
  15.     end
  16. end
  17.  
  18. b:Toggle("AutoClicker",function(bool)
  19.     shared.toggle = bool
  20.     AutoClicker = bool
  21. end)
  22.  
  23. b:Toggle("AutoTpDrop",function(bool)
  24.     shared.toggle = bool
  25.     AutoTpDrop = bool
  26. end)
  27.  
  28. b:Toggle("AutoTpRings",function(bool)
  29.     shared.toggle = bool
  30.     AutoTpRings = bool
  31. end)
  32.  
  33. f:Toggle("Rebirth",function(bool)
  34.     shared.toggle = bool
  35.     Rebirth = bool
  36. end)
  37.  
  38. f:Dropdown("Select Rebirth",RebirthTable,true,function(mob)
  39.     RebirthSelect = mob
  40. end)
  41.  
  42. f:Toggle("LegendRebirth",function(bool)
  43.     shared.toggle = bool
  44.     LegendRebirth = bool
  45. end)
  46.  
  47. f:Toggle("Upgrade",function(bool)
  48.     shared.toggle = bool
  49.     Upgrade = bool
  50. end)
  51.  
  52. e:Toggle("AntiAfk",function(bool)
  53.     shared.toggle = bool
  54.     AntiAfk = bool
  55. end)
  56.  
  57. e:Dropdown("Select World",{"VoidIsland","NinjaIsland","DualElementalIsland"},true,function(mob)
  58.     WorldSelect = mob
  59. end)
  60.  
  61. e:Button("Tp World",function()
  62.     for i,v in pairs(game:GetService("Workspace").Worlds:GetChildren()) do
  63.         if v.Name ==  WorldSelect then
  64.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.TpPart.CFrame.Position + Vector3.new(0,0,0))
  65.         end
  66.     end
  67. end)
  68. --Credits
  69. u:Button("maxgat5#8395",function()
  70.     setclipboard("maxgat5#8395")
  71. end)
  72.  
  73. u:Button("Discrod Server",function()
  74.     setclipboard("https://discord.gg/K4txdRSVfq")
  75. end)
  76.  
  77. while wait() do
  78.     if AutoClicker == true then
  79.         game:GetService("ReplicatedStorage").Events.GameMechanics.Events.TappingEvent:FireServer()
  80.     end
  81.    
  82.     if AutoTpDrop == true  then
  83.         for i,v in pairs(game:GetService("Workspace").Drops:GetDescendants()) do
  84.             if v.ClassName == "TouchTransmitter" then
  85.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Parent.CFrame.Position + Vector3.new(0,0,0))
  86.                 wait()
  87.             end
  88.         end
  89.     end
  90.    
  91.     if AutoTpRings == true then
  92.         for i,v in pairs(game:GetService("Workspace").Worlds:GetDescendants()) do
  93.             if v.ClassName == "TouchTransmitter" then
  94.                 if v.Parent.ClassName == "MeshPart" or v.Parent.ClassName == "Part" or v.Parent.ClassName == "UnionOperation" then
  95.                     if v.Parent.Parent.Name == "CoinRing" then
  96.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Parent.CFrame.Position + Vector3.new(0,0,0))
  97.                         wait()
  98.                     end
  99.                 end
  100.             end
  101.         end
  102.     end
  103.    
  104.     if Rebirth == true then
  105.         game:GetService("ReplicatedStorage").Events.GameMechanics.Events.RebirthEvent:FireServer(tonumber(RebirthSelect))
  106.     end
  107.    
  108.     if LegendRebirth == true then
  109.         for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.LegendRebirthUI.MainFrame.RankFrame.MainFrame.Display.ScrollMainBG.ScrollingFrame:GetChildren()) do
  110.             if v.ClassName == "ImageButton" then
  111.                 game:GetService("ReplicatedStorage").Events.GameMechanics.Events.LegendRebirth:FireServer(v.Name)
  112.             end
  113.         end
  114.     end
  115.    
  116.     if Upgrade == true then
  117.         for i,v in pairs(game:GetService("Players").LocalPlayer.Upgrades:GetChildren()) do
  118.             game:GetService("ReplicatedStorage").Events.GameMechanics.Events.CoinUpgradeEvent:FireServer(v.Name)
  119.         end
  120.     end
  121.    
  122.    
  123.     if AntiAfk == true then
  124.         local bb=game:service'VirtualUser'
  125.         bb:CaptureController()
  126.         bb:ClickButton2(Vector2.new())
  127.     end
  128. end