Advertisement
Senar

Bubble Gum Simulator INFINITY (Exploit, Script, Hack)

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