Advertisement
tazerzx

Untitled

Mar 26th, 2020
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.27 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Player = game.Players.LocalPlayer
  4.  
  5. local BoxingSimulatorGUI = Instance.new("ScreenGui")
  6. local Base = Instance.new("Frame")
  7. local Title = Instance.new("TextLabel")
  8. local Value = Instance.new("TextBox")
  9. local Unlock = Instance.new("TextButton")
  10. local KillAll = Instance.new("TextButton")
  11. local Kill = Instance.new("TextButton")
  12. local WalkSpeed = Instance.new("TextButton")
  13. local Btools = Instance.new("TextButton")
  14. local credits = Instance.new("TextLabel")
  15. local OpenClose = Instance.new("TextButton")
  16.  
  17. -- Properties
  18.  
  19. BoxingSimulatorGUI.Name = "BoxingSimulatorGUI"
  20. BoxingSimulatorGUI.Parent = game.CoreGui
  21.  
  22. Base.Name = "Base"
  23. Base.Parent = BoxingSimulatorGUI
  24. Base.Active = true
  25. Base.BackgroundColor3 = Color3.new(242, 243, 243)
  26. Base.BorderColor3 = Color3.new(0.188235, 0.309804, 0.584314)
  27. Base.BorderSizePixel = 5
  28. Base.Position = UDim2.new(0.300000012, 0, 0.224000007, 0)
  29. Base.Size = UDim2.new(0, 228, 0, 417)
  30. Base.Visible = false
  31.  
  32. Title.Name = "Title"
  33. Title.Parent = Base
  34. Title.BackgroundColor3 = Color3.new(161, 165, 162)
  35. Title.BorderColor3 = Color3.new(0.188235, 0.309804, 0.580392)
  36. Title.BorderSizePixel = 5
  37. Title.Size = UDim2.new(0, 228, 0, 47)
  38. Title.Font = Enum.Font.SciFi
  39. Title.Text = "Boxing Simulator"
  40. Title.TextColor3 = Color3.new(196, 40, 28)
  41. Title.TextScaled = true
  42. Title.TextSize = 14
  43. Title.TextWrapped = true
  44.  
  45. Value.Name = "Value"
  46. Value.Parent = Base
  47. Value.BackgroundColor3 = Color3.new(1, 1, 1)
  48. Value.BorderColor3 = Color3.new(0.188235, 0.309804, 0.580392)
  49. Value.BorderSizePixel = 3
  50. Value.Position = UDim2.new(0.197368428, 0, 0.302158266, 0)
  51. Value.Size = UDim2.new(0, 141, 0, 36)
  52. Value.Font = Enum.Font.SourceSans
  53. Value.Text = "Player Name / Value"
  54. Value.TextColor3 = Color3.new(0, 0, 0)
  55. Value.TextSize = 14
  56.  
  57. Unlock.Name = "Unlock"
  58. Unlock.Parent = Base
  59. Unlock.BackgroundColor3 = Color3.new(0.321569, 0.545098, 0.992157)
  60. Unlock.BorderColor3 = Color3.new(0.188235, 0.309804, 0.580392)
  61. Unlock.BorderSizePixel = 3
  62. Unlock.Position = UDim2.new(0.101000004, 0, 0.690398097, 0)
  63. Unlock.Size = UDim2.new(0, 181, 0, 40)
  64. Unlock.Font = Enum.Font.SciFi
  65. Unlock.Text = "Unlock Skins"
  66. Unlock.TextColor3 = Color3.new(0.219608, 0.729412, 0.129412)
  67. Unlock.TextSize = 24
  68. Unlock.TextWrapped = true
  69.  
  70. KillAll.Name = "KillAll"
  71. KillAll.Parent = Base
  72. KillAll.BackgroundColor3 = Color3.new(0.321569, 0.545098, 0.992157)
  73. KillAll.BorderColor3 = Color3.new(0.188235, 0.309804, 0.580392)
  74. KillAll.BorderSizePixel = 3
  75. KillAll.Position = UDim2.new(0.101000004, 0, 0.42899999, 0)
  76. KillAll.Size = UDim2.new(0, 181, 0, 40)
  77. KillAll.Font = Enum.Font.SciFi
  78. KillAll.Text = "Kill All"
  79. KillAll.TextColor3 = Color3.new(0.219608, 0.729412, 0.129412)
  80. KillAll.TextSize = 24
  81. KillAll.TextWrapped = true
  82.  
  83. Kill.Name = "Kill"
  84. Kill.Parent = Base
  85. Kill.BackgroundColor3 = Color3.new(0.321569, 0.545098, 0.992157)
  86. Kill.BorderColor3 = Color3.new(0.188235, 0.309804, 0.580392)
  87. Kill.BorderSizePixel = 3
  88. Kill.Position = UDim2.new(0.100877196, 0, 0.561151087, 0)
  89. Kill.Size = UDim2.new(0, 86, 0, 40)
  90. Kill.Font = Enum.Font.SciFi
  91. Kill.Text = "Kill Player"
  92. Kill.TextColor3 = Color3.new(0.219608, 0.729412, 0.129412)
  93. Kill.TextScaled = true
  94. Kill.TextSize = 24
  95. Kill.TextWrapped = true
  96.  
  97. WalkSpeed.Name = "WalkSpeed"
  98. WalkSpeed.Parent = Base
  99. WalkSpeed.BackgroundColor3 = Color3.new(0.321569, 0.545098, 0.992157)
  100. WalkSpeed.BorderColor3 = Color3.new(0.188235, 0.309804, 0.580392)
  101. WalkSpeed.BorderSizePixel = 3
  102. WalkSpeed.Position = UDim2.new(0.521929801, 0, 0.561151087, 0)
  103. WalkSpeed.Size = UDim2.new(0, 85, 0, 40)
  104. WalkSpeed.Font = Enum.Font.SciFi
  105. WalkSpeed.Text = "Walk Speed"
  106. WalkSpeed.TextColor3 = Color3.new(0.219608, 0.729412, 0.129412)
  107. WalkSpeed.TextScaled = true
  108. WalkSpeed.TextSize = 24
  109. WalkSpeed.TextWrapped = true
  110.  
  111. Btools.Name = "Btools"
  112. Btools.Parent = Base
  113. Btools.BackgroundColor3 = Color3.new(0.321569, 0.545098, 0.992157)
  114. Btools.BorderColor3 = Color3.new(0.188235, 0.309804, 0.580392)
  115. Btools.BorderSizePixel = 3
  116. Btools.Position = UDim2.new(0.101000004, 0, 0.822203875, 0)
  117. Btools.Size = UDim2.new(0, 181, 0, 40)
  118. Btools.Font = Enum.Font.SciFi
  119. Btools.Text = "Btools"
  120. Btools.TextColor3 = Color3.new(0.219608, 0.729412, 0.129412)
  121. Btools.TextSize = 24
  122. Btools.TextWrapped = true
  123.  
  124. credits.Name = "credits"
  125. credits.Parent = Base
  126. credits.BackgroundColor3 = Color3.new(1, 1, 1)
  127. credits.BackgroundTransparency = 1
  128. credits.Position = UDim2.new(0, 0, 0.16546762, 0)
  129. credits.Size = UDim2.new(0, 228, 0, 38)
  130. credits.Font = Enum.Font.SciFi
  131. credits.Text = "Robobox by iHavoc101"
  132. credits.TextColor3 = Color3.new(0, 0, 0)
  133. credits.TextSize = 24
  134. credits.TextWrapped = true
  135.  
  136. OpenClose.Name = "OpenClose"
  137. OpenClose.Parent = BoxingSimulatorGUI
  138. OpenClose.BackgroundColor3 = Color3.new(0.298039, 0.498039, 0.921569)
  139. OpenClose.BorderColor3 = Color3.new(0.164706, 0.270588, 0.509804)
  140. OpenClose.BorderSizePixel = 5
  141. OpenClose.Position = UDim2.new(0.321428567, 0, 0.0983606577, 0)
  142. OpenClose.Size = UDim2.new(0, 205, 0, 35)
  143. OpenClose.Font = Enum.Font.SciFi
  144. OpenClose.Text = "Boxing GUI"
  145. OpenClose.TextColor3 = Color3.new(0.32549, 0.772549, 0.0823529)
  146. OpenClose.TextScaled = true
  147. OpenClose.TextSize = 14
  148. OpenClose.TextWrapped = true
  149.  
  150. OpenClose.Draggable = true
  151. Base.Draggable = true
  152.  
  153. local open = false
  154. OpenClose.Text = "Open"
  155.  
  156. OpenClose.MouseButton1Click:connect(function(click)
  157. if OpenClose.Text == "Open" then
  158. Base.Visible = true
  159. OpenClose.Text = "Close"
  160. elseif OpenClose.Text == "Close" then
  161. Base.Visible = false
  162. OpenClose.Text = "Open"
  163. end
  164. end)
  165.  
  166. Btools.MouseButton1Click:connect(function()
  167. for a = 1, 4 do
  168. local HopperBin = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  169. HopperBin.BinType = a
  170. end
  171. end)
  172.  
  173. KillAll.MouseButton1Click:connect(function()
  174. local children = game.Players:GetChildren()
  175.  
  176. local LocalUser = game.Players.LocalPlayer
  177. local NAME = game.Players.LocalPlayer.Name
  178.  
  179. for i = 1, #children do
  180. if(children[i].Name ~= NAME) then
  181. for a = 1,100 do
  182. game.ReplicatedStorage.Remotes.Human_Punch:FireServer(LocalUser.Character.LeftHand, "LeftPunch", children[i].Character.LeftHand, 5, true, "RightPunch", LocalUser.Character.Boxing.Handle.Hit, 5)
  183. end
  184. end
  185. end
  186. end)
  187.  
  188. Unlock.MouseButton1Click:connect(function()
  189.  
  190. local Kagume = {"Wanwood", "Black Iron", "Rainbow", "Adurite", "Wamen", "Trump", "Spongebob", "Cartoon", "Doge", "White", "Pizza", "Donut", "Desert Camo", "Waffle", "Snow Camo", "Gold", "Bluesteel", "Dirt", "Bape Pink", "Pink", "Blue", "Grass", "Bape Blue", "Green", "Bape"}
  191. local Skin = game.CoreGui.WepBuyer.Frame.Bar.KagName:FindFirstChild("Kagune")
  192.  
  193. for i,v in pairs(Kagume) do
  194. Skin.Value = v
  195. game.ReplicatedStorage.Remotes.SetMagic1:FireServer(Skin.Value, workspace.Baseplate2.Texture.Value.Value)
  196. print(Skin.Value)
  197. end
  198.  
  199. end)
  200.  
  201. Kill.MouseButton1Click:connect(function()
  202.  
  203. local field = Value.Text
  204.  
  205. local LocalUser = game.Players.LocalPlayer
  206. local ENEMY = field
  207.  
  208. for i=1,200 do
  209. game.ReplicatedStorage.Remotes.Human_Punch:FireServer(LocalUser.Character.LeftHand, "LeftPunch", game.Workspace[ENEMY].LeftHand, 5, true, "RightPunch", LocalUser.Character.Boxing.Handle.Hit, 5)
  210. end
  211.  
  212. end)
  213.  
  214. WalkSpeed.MouseButton1Click:connect(function()
  215. print(game.Players.LocalPlayer.Character.Humanoid.WalkSpeed)
  216. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value.Text
  217. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement