Advertisement
Senar

Bubble Gum Simulator INFINITY (Exploit, Script, Hack)

Apr 16th, 2025 (edited)
2,732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.57 KB | Gaming | 0 0
  1. --[[PATCH ISSUE: They just recently patched my scripts ability to auto sell anywhere which affects autoMoney and autoSell... However it still works as long as you are NEAR a Selling area!]]
  2. -- https://www.youtube.com/watch?v=ED314_-wlk8 ~~ (How To's Video)
  3. -- What It Do 🤓☝️ Auto-Money, Auto-Sell, Auto-Blow, Change All Trampolines main Jump Power Boost
  4. -- By Lucent
  5.  
  6. local RNS = game:GetService("RunService")
  7. local plr = game.Players.LocalPlayer
  8.  
  9. local function createCheat()
  10.     --[[UI DESIGN]]
  11.     local mainGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  12.     mainGui.Name = "LUCENTHACK"
  13.     mainGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15.     local mainFrame = Instance.new("Frame", mainGui)
  16.     mainFrame.Style = Enum.FrameStyle.DropShadow
  17.     mainFrame.Size = UDim2.new(0.25, 0, 0.2, 0)
  18.     mainFrame.Position = UDim2.new(0,0, 0.789, 0)
  19.     mainFrame.ZIndex = math.huge
  20.  
  21.     local autoMoneyTextButton = Instance.new("TextButton", mainFrame)
  22.     autoMoneyTextButton.Text = "AutoMoney"
  23.     autoMoneyTextButton.TextScaled = true
  24.     autoMoneyTextButton.BackgroundColor3 = Color3.fromRGB(255,255,255)
  25.     autoMoneyTextButton.Size = UDim2.new(0.25, 0, 0.45, 0)
  26.     autoMoneyTextButton.Position = UDim2.new(0.026, 0, 0.051, 0)
  27.  
  28.     local autoSellTextButton = autoMoneyTextButton:Clone()
  29.     autoSellTextButton.Parent = mainFrame
  30.     autoSellTextButton.Text = "AutoSell"
  31.     autoSellTextButton.Position = UDim2.new(0.303, 0, 0.051, 0)
  32.  
  33.     local autoBlowTextButton = autoMoneyTextButton:Clone()
  34.     autoBlowTextButton.Parent = mainFrame
  35.     autoBlowTextButton.Text = "AutoBlow"
  36.     autoBlowTextButton.Position = UDim2.new(0.026, 0, 0.542, 0)
  37.  
  38.     local respawnTextButton = autoMoneyTextButton:Clone()
  39.     respawnTextButton.Parent = mainFrame
  40.     respawnTextButton.Text = "Respawn"
  41.     respawnTextButton.Position = UDim2.new(0.58, 0, 0.1, 0)
  42.     respawnTextButton.Size = UDim2.new(0.4, 0,0.329, 0)
  43.     respawnTextButton.TextColor3 = Color3.fromRGB(255,255,255)
  44.     respawnTextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  45.  
  46.     local textBox = Instance.new("TextBox", mainFrame)
  47.     textBox.Text = 1.25
  48.     textBox.TextScaled = true
  49.     textBox.Size = UDim2.new(0.227, 0, 0.301, 0)
  50.     textBox.Position = UDim2.new(0.58, 0, 0.601, 0)
  51.     textBox.BackgroundColor3 = Color3.fromRGB(255,255,255)
  52.  
  53.     --[[TRAMPOLINE]]
  54.     local trampolineLabel = Instance.new("TextLabel", mainFrame)
  55.     trampolineLabel.Text = "All Trampoline Power"
  56.     trampolineLabel.TextScaled = true
  57.     trampolineLabel.TextColor3 = Color3.fromRGB(0,0,0)
  58.     trampolineLabel.Size = UDim2.new(0.25, 0,0.45, 0)
  59.     trampolineLabel.Position = UDim2.new(0.303, 0,0.532, 0)
  60.  
  61.     local connection;
  62.     local hue = 0
  63.     connection = RNS.Heartbeat:Connect(function(dt)
  64.         hue = (hue + dt * 0.1) % 1
  65.         local color = Color3.fromHSV(hue, 1, 1)
  66.         trampolineLabel.BackgroundColor3 = color
  67.  
  68.         if plr.Character.Humanoid.Health <= 0 then
  69.             connection:Disconnect();
  70.         end
  71.     end)
  72.  
  73.     local trampolineButton = autoMoneyTextButton:Clone()
  74.     trampolineButton.Parent = mainFrame
  75.     trampolineButton.Text = "Bring Trampoline To You (BUTTON)"
  76.     trampolineButton.Size = UDim2.new(0.15, 0, 0.45, 0)
  77.     trampolineButton.Position = UDim2.new(0.83, 0, 0.542, 0)
  78.  
  79.     --[[TRAMPOLINE END]]
  80.     --[[For The Skidders Have A Heart And Leave My Name Please!!!]]
  81.     local creatorLabel = Instance.new("TextLabel", mainGui)
  82.     creatorLabel.Text = "Bubble Gum Sim Inf By Lucent"
  83.     creatorLabel.TextScaled = true
  84.     creatorLabel.BackgroundTransparency = 1
  85.     creatorLabel.Size = UDim2.new(0.25, 0, 0.035, 0)
  86.     creatorLabel.Position = UDim2.new(0, 0, 0.753, 0)
  87.     creatorLabel.TextColor3 = Color3.fromRGB(255, 203, 145)
  88.     creatorLabel.ZIndex = math.huge
  89.  
  90.     --[[CODE]]
  91.     plr = game.Players.LocalPlayer;
  92.     local char = plr.Character or plr.CharacterAdded:Wait();
  93.     local Hum = char:WaitForChild("Humanoid");
  94.  
  95.     local RS = game:GetService("ReplicatedStorage");
  96.     local Network = RS.Shared.Framework.Network;
  97.     local Remote = Network.Remote;
  98.     local Event = Remote.Event;
  99.     local HRP = char.HumanoidRootPart;
  100.  
  101.     Hum.Died:Once(function()
  102.         _G.autoMoney = false;
  103.         _G.autoSell = false;
  104.         _G.autoBlow = false;
  105.         print("Reseted Global Variables: ", _G.autoMoney,_G.autoSell,_G.autoBlow);
  106.     end)
  107.  
  108.     autoMoneyTextButton.MouseButton1Click:Connect(function()
  109.         if _G.autoMoney == false or _G.autoMoney == nil then
  110.             autoMoneyTextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  111.             _G.autoMoney = true
  112.         else
  113.             autoMoneyTextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  114.             _G.autoMoney = false
  115.         end
  116.  
  117.         repeat task.wait()
  118.             if _G.autoMoney == true then
  119.                 Event:FireServer("BlowBubble");
  120.                 Event:FireServer("SellBubble");
  121.             end
  122.         until _G.autoMoney == false
  123.     end)
  124.  
  125.     autoBlowTextButton.MouseButton1Click:Connect(function()
  126.         if _G.autoBlow == false or _G.autoBlow == nil then
  127.             autoBlowTextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  128.             _G.autoBlow = true
  129.         else
  130.             autoBlowTextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  131.             _G.autoBlow = false
  132.         end
  133.  
  134.         repeat task.wait()
  135.             if _G.autoBlow == true then
  136.                 Event:FireServer("BlowBubble");
  137.             end
  138.         until _G.autoBlow == false
  139.     end)
  140.  
  141.     trampolineButton.MouseButton1Click:Connect(function()
  142.         workspace.Worlds:FindFirstChild("Trampoline", true):PivotTo(HRP.CFrame);
  143.     end)
  144.  
  145.     autoSellTextButton.MouseButton1Click:Connect(function()
  146.         if _G.autoSell == false or _G.autoSell == nil then
  147.             autoSellTextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  148.             _G.autoSell = true
  149.         else
  150.             autoSellTextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  151.             _G.autoSell = false
  152.         end
  153.  
  154.         repeat task.wait()
  155.             if _G.autoSell == true then
  156.                 Event:FireServer("SellBubble");
  157.             end
  158.         until _G.autoSell == false
  159.     end)
  160.  
  161.     textBox.Changed:Connect(function(property)
  162.         if (property == "Text") then
  163.             local text = textBox.Text
  164.  
  165.             if tonumber(text) ~= nil then -- If yes then assign the value to the Trampoline
  166.                 textBox.BackgroundColor3 = Color3.fromRGB(0,255,0)
  167.                 textBox.TextColor3 = Color3.fromRGB(255,255,255)
  168.  
  169.  
  170.                 for i,v in workspace:GetDescendants() do
  171.                     if v.Name == "Trampoline" then
  172.                         for j, k in v:GetAttributes() do
  173.                             if j == "Power" then
  174.                                 v:SetAttribute(j, tonumber(text))
  175.                             end
  176.                         end
  177.                     end
  178.                 end
  179.  
  180.             else
  181.                 textBox.BackgroundColor3 = Color3.fromRGB(255,0,0)
  182.                 textBox.TextColor3 = Color3.fromRGB(255,255,255)
  183.             end
  184.         end
  185.     end)
  186.  
  187.     respawnTextButton.MouseButton1Click:Connect(function()
  188.         if Hum and Hum.Health ~= 0 then
  189.             Hum:TakeDamage(math.huge)
  190.         end
  191.     end)
  192. end
  193.  
  194.  
  195. if _G.BGSM == nil then
  196.     _G.BGSM = true;
  197.     createCheat()
  198.     plr.CharacterAdded:Connect(function()
  199.         createCheat()
  200.     end)
  201. else
  202.     print("Already Created Bro!")
  203. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement