AceW0lf_BOt

Roblox Boxing Simulator 2 Dropping Script Dw

Jul 15th, 2022 (edited)
146
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 Ewave1DroppingScript = Instance.new("ScreenGui")
  7. local Dropping_Frame = Instance.new("Frame")
  8. local Close = Instance.new("TextButton")
  9. local Drop = Instance.new("TextButton")
  10. local EquipDw = 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. Ewave1DroppingScript.Name = "Ewave1 Dropping Script"
  18. Ewave1DroppingScript.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. Ewave1DroppingScript.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Dropping_Frame.Name = "Dropping_Frame"
  22. Dropping_Frame.Parent = Ewave1DroppingScript
  23. Dropping_Frame.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  24. Dropping_Frame.Position = UDim2.new(0.461158782, 0, 0, 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.926485121, 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. EquipDw.Name = "Equip Dw"
  52. EquipDw.Parent = Dropping_Frame
  53. EquipDw.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  54. EquipDw.Position = UDim2.new(0.534323514, 0, 0.252983302, 0)
  55. EquipDw.Size = UDim2.new(0, 200, 0, 50)
  56. EquipDw.Font = Enum.Font.SourceSans
  57. EquipDw.Text = "Equip Dw"
  58. EquipDw.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. EquipDw.TextScaled = true
  60. EquipDw.TextSize = 14.000
  61. EquipDw.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.510739803, 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.Size = UDim2.new(0, 464, 0, 31)
  78. TextLabel.Font = Enum.Font.SourceSans
  79. TextLabel.Text = "Ewave1 Dropping Script"
  80. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  81. TextLabel.TextScaled = true
  82. TextLabel.TextSize = 14.000
  83. TextLabel.TextWrapped = true
  84.  
  85. AntiAfk.Name = "AntiAfk"
  86. AntiAfk.Parent = Dropping_Frame
  87. AntiAfk.BackgroundColor3 = Color3.fromRGB(59, 255, 15)
  88. AntiAfk.Position = UDim2.new(0.534323514, 0, 0.510739803, 0)
  89. AntiAfk.Size = UDim2.new(0, 200, 0, 50)
  90. AntiAfk.Font = Enum.Font.SourceSans
  91. AntiAfk.Text = "Anti Afk"
  92. AntiAfk.TextColor3 = Color3.fromRGB(0, 0, 0)
  93. AntiAfk.TextScaled = true
  94. AntiAfk.TextSize = 14.000
  95. AntiAfk.TextWrapped = true
  96.  
  97. -- Scripts:
  98.  
  99. local function KARJYG_fake_script() -- Close.Script
  100.     local script = Instance.new('Script', Close)
  101.  
  102.     script.Parent.MouseButton1Up:Connect(function()
  103.         script.Parent.Parent.Visible = false
  104.     end)
  105. end
  106. coroutine.wrap(KARJYG_fake_script)()
  107. local function LSDCQ_fake_script() -- Drop.Script
  108.     local script = Instance.new('Script', Drop)
  109.  
  110.     script.Parent.MouseButton1Up:Connect(function()
  111.         loadstring(game:HttpGet('https://raw.githubusercontent.com/MCG904YT/godmode/main/godmode'))()
  112.     end)
  113. end
  114. coroutine.wrap(LSDCQ_fake_script)()
  115. local function VOWMX_fake_script() -- EquipDw.Script
  116.     local script = Instance.new('Script', EquipDw)
  117.  
  118.     _G.Equip = true
  119.     while _G.Equip do
  120.         wait()
  121.         for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  122.             if v.Name == "Double Weight" then v:Activate()
  123.                 v.Parent = game.Players.LocalPlayer.Character
  124.             end
  125.         end
  126.     end
  127. end
  128. coroutine.wrap(VOWMX_fake_script)()
  129. local function CFKYJGG_fake_script() -- Reviz.Script
  130.     local script = Instance.new('Script', Reviz)
  131.  
  132.     script.Parent.MouseButton1Up:Connect(function()
  133.         loadstring(game:HttpsGet('https://pastebin.com/raw/p5XhPCgc'))
  134.     end)
  135. end
  136. coroutine.wrap(CFKYJGG_fake_script)()
  137. local function XSSZEQ_fake_script() -- AntiAfk.Script
  138.     local script = Instance.new('Script', AntiAfk)
  139.  
  140.     script.Parent.MouseButton1Up:Connect(function()
  141.         loadstring(game:HttpsGet('https://pastebin.com/raw/9QCyuc2p'))
  142.     end)
  143. end
  144. coroutine.wrap(XSSZEQ_fake_script)()
Add Comment
Please, Sign In to add comment