Advertisement
AceW0lf_BOt

Roblox Boxing Simulator 2 Dropping Script DB

Jul 15th, 2022
3,708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.59 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local DroppingDB = Instance.new("ScreenGui")
  7. local Dropping_Frame = Instance.new("Frame")
  8. local Close = Instance.new("TextButton")
  9. local Drop = Instance.new("TextButton")
  10. local EquipDB = Instance.new("TextButton")
  11. local Reviz = Instance.new("TextButton")
  12. local TextLabel = Instance.new("TextLabel")
  13. local AntiAfk = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. DroppingDB.Name = "Dropping DB"
  18. DroppingDB.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. DroppingDB.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Dropping_Frame.Name = "Dropping_Frame"
  22. Dropping_Frame.Parent = DroppingDB
  23. Dropping_Frame.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  24. Dropping_Frame.Position = UDim2.new(0.18318966, 0, 0.599063933, 0)
  25. Dropping_Frame.Size = UDim2.new(0, 500, 0, 250)
  26.  
  27. Close.Name = "Close"
  28. Close.Parent = Dropping_Frame
  29. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  30. Close.Position = UDim2.new(0.928485155, 0, -0.00214904337, 0)
  31. Close.Size = UDim2.new(0, 37, 0, 32)
  32. Close.Font = Enum.Font.SourceSans
  33. Close.Text = "X"
  34. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  35. Close.TextScaled = true
  36. Close.TextSize = 14.000
  37. Close.TextWrapped = true
  38.  
  39. Drop.Name = "Drop"
  40. Drop.Parent = Dropping_Frame
  41. Drop.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  42. Drop.Position = UDim2.new(0.0135135129, 0, 0.252983302, 0)
  43. Drop.Size = UDim2.new(0, 200, 0, 50)
  44. Drop.Font = Enum.Font.SourceSans
  45. Drop.Text = "Drop"
  46. Drop.TextColor3 = Color3.fromRGB(0, 0, 0)
  47. Drop.TextScaled = true
  48. Drop.TextSize = 14.000
  49. Drop.TextWrapped = true
  50.  
  51. EquipDB.Name = "Equip DB"
  52. EquipDB.Parent = Dropping_Frame
  53. EquipDB.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  54. EquipDB.Position = UDim2.new(0.559845567, 0, 0.252983302, 0)
  55. EquipDB.Size = UDim2.new(0, 200, 0, 50)
  56. EquipDB.Font = Enum.Font.SourceSans
  57. EquipDB.Text = "Equip DB"
  58. EquipDB.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. EquipDB.TextScaled = true
  60. EquipDB.TextSize = 14.000
  61. EquipDB.TextWrapped = true
  62.  
  63. Reviz.Name = "Reviz"
  64. Reviz.Parent = Dropping_Frame
  65. Reviz.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  66. Reviz.Position = UDim2.new(0.0135135353, 0, 0.532219529, 0)
  67. Reviz.Size = UDim2.new(0, 200, 0, 50)
  68. Reviz.Font = Enum.Font.SourceSans
  69. Reviz.Text = "Reviz"
  70. Reviz.TextColor3 = Color3.fromRGB(0, 0, 0)
  71. Reviz.TextScaled = true
  72. Reviz.TextSize = 14.000
  73. Reviz.TextWrapped = true
  74.  
  75. TextLabel.Parent = Dropping_Frame
  76. TextLabel.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  77. TextLabel.Position = UDim2.new(0, 0, -0.00400000019, 0)
  78. TextLabel.Size = UDim2.new(0, 464, 0, 31)
  79. TextLabel.Font = Enum.Font.SourceSans
  80. TextLabel.Text = "Ewave1 Dropping Script"
  81. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  82. TextLabel.TextScaled = true
  83. TextLabel.TextSize = 14.000
  84. TextLabel.TextWrapped = true
  85.  
  86. AntiAfk.Name = "AntiAfk"
  87. AntiAfk.Parent = Dropping_Frame
  88. AntiAfk.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  89. AntiAfk.Position = UDim2.new(0.559845567, 0, 0.532219529, 0)
  90. AntiAfk.Size = UDim2.new(0, 200, 0, 50)
  91. AntiAfk.Font = Enum.Font.SourceSans
  92. AntiAfk.Text = "Anti Afk"
  93. AntiAfk.TextColor3 = Color3.fromRGB(0, 0, 0)
  94. AntiAfk.TextScaled = true
  95. AntiAfk.TextSize = 14.000
  96. AntiAfk.TextWrapped = true
  97.  
  98. -- Scripts:
  99.  
  100. local function FRBNG_fake_script() -- Close.Script
  101.     local script = Instance.new('Script', Close)
  102.  
  103.     script.Parent.MouseButton1Up:Connect(function()
  104.         script.Parent.Parent.Visible = false
  105.     end)
  106. end
  107. coroutine.wrap(FRBNG_fake_script)()
  108. local function BZAU_fake_script() -- Drop.Script
  109.     local script = Instance.new('Script', Drop)
  110.  
  111.     script.Parent.MouseButton1Up:Connect(function()
  112.         loadstring(game:HttpGet('https://raw.githubusercontent.com/MCG904YT/godmode/main/godmode'))()
  113.     end)
  114. end
  115. coroutine.wrap(BZAU_fake_script)()
  116. local function DZKZO_fake_script() -- EquipDB.Script
  117.     local script = Instance.new('Script', EquipDB)
  118.  
  119.     _G.Equip = true
  120.     while _G.Equip do
  121.         wait()
  122.         for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  123.             if v.Name == "Dumbelll" then v:Activate()
  124.                 v.Parent = game.Players.LocalPlayer.Character
  125.             end
  126.         end
  127.     end
  128. end
  129. coroutine.wrap(DZKZO_fake_script)()
  130. local function OEJXDWC_fake_script() -- Reviz.Script
  131.     local script = Instance.new('Script', Reviz)
  132.  
  133.     script.Parent.MouseButton1Up:Connect(function()
  134.         loadstring(game:HttpsGet('https://pastebin.com/raw/p5XhPCgc'))
  135.     end)
  136. end
  137. coroutine.wrap(OEJXDWC_fake_script)()
  138. local function OKPZUU_fake_script() -- AntiAfk.Script
  139.     local script = Instance.new('Script', AntiAfk)
  140.  
  141.     script.Parent.MouseButton1Up:Connect(function()
  142.         loadstring(game:HttpsGet('https://pastebin.com/raw/9QCyuc2p'))
  143.     end)
  144. end
  145. coroutine.wrap(OKPZUU_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement