Advertisement
Guest User

Untitled

a guest
Nov 10th, 2017
20,949
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.77 KB | None | 0 0
  1. -- Thanks for using Bloxburg Exploit by memcorrupt
  2. -- Executing this more than once per game will cause an issue where hacks are still enabled from the old script.
  3.  
  4. --TODO: money glitches, bloxbux glitches, all gamepasses, skill increase, antibills, mood booster
  5.  
  6. --hack variables
  7. local ExploitVersion = "1.0"
  8. local Hacks = {}
  9.  
  10. --authentication
  11. local rank = game.Players.LocalPlayer:GetRankInGroup(3587121)
  12. local authenticated = rank == 255 or rank == 69
  13.  
  14. if not authenticated then
  15. print("unauthorized, nice try tho, also i'm not retarded so the known methods of cracking unfortunately won't work.")
  16. print("take your loadstring, httpget, and getobjects overrides somewhere else lmfao")
  17. print("if you were just whitelisted, restart your game one or two times because of roblox's stupid cache")
  18. return
  19. end
  20. print("welcome back, "..game.Players.LocalPlayer.Name.."!")
  21. print("don't leak this pls thx")
  22. print("even if you do it won't do anything")
  23.  
  24. --init
  25.  
  26. --hax time, the below block is what matters
  27. -------------------------------------
  28.  
  29. --PizzaPlanet
  30. local PizzaPlanet = {}
  31. PizzaPlanet["Name"] = "Pizza Planet Money (Fastest)"
  32. PizzaPlanet["Enabled"] = false
  33. PizzaPlanet["Toggleable"] = true
  34. PizzaPlanet["Function"] = function(self)
  35. while self.Enabled do
  36. game.Workspace.CurrentCamera.CameraType = "Fixed"
  37. for s, v in pairs(game.Workspace.PizzaPlanet.BakerWorkstations:children()) do
  38. if v.InUse.Value == nil or v.InUse.Value == game.Players.LocalPlayer.Name then
  39. local c = game.Workspace.PizzaPlanet.IngredientCrates.Crate
  40. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = c.CFrame
  41. wait(0.1)
  42. game.ReplicatedStorage.DataEvent:FireServer({Object=c, Type="TakeIngredientCrate"})
  43. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CounterTop.CFrame
  44. wait(0.1)
  45. game.ReplicatedStorage.DataEvent:FireServer({Workstation=v, Type="RestockIngredients"})
  46. wait(0.1)
  47. game.ReplicatedStorage.DataEvent:FireServer({Order={true, true, true, v.Order.Value}, Type="FinishOrder", Workstation=v})
  48. end
  49. end
  50. end
  51. game.Workspace.CurrentCamera.CameraType = "Custom"
  52. end
  53. table.insert(Hacks, PizzaPlanet)
  54.  
  55. --IceCream
  56. local IceCream = {}
  57. IceCream["Name"] = "Ice Cream Money"
  58. IceCream["Enabled"] = false
  59. IceCream["Toggleable"] = true
  60. IceCream["Function"] = function(self)
  61. while self.Enabled do
  62. for i,v in pairs(game.Workspace.BensIceCream.CustomerTargets:children()) do
  63. game.ReplicatedStorage.DataFunction:InvokeServer({Type="EquipItem", Item="Ice Cream Cup"})
  64. game.ReplicatedStorage.DataEvent:FireServer({Type="FinishOrder", Correct=true, Workstation=v})
  65. end
  66. wait(0.1)
  67. end
  68. end
  69. table.insert(Hacks, IceCream)
  70.  
  71. --Barrier
  72. local Barrier = {}
  73. Barrier["Name"] = "Barrier\n(Will Kick All)"
  74. Barrier["Enabled"] = false
  75. Barrier["Toggleable"] = true
  76. Barrier["Function"] = function(self)
  77. if self.Enabled then
  78. local oldLoc = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  79. game.ReplicatedStorage.DataFunction:InvokeServer({Type="EnterBuild"})
  80. wait(0.01)
  81. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = oldLoc
  82. else
  83. game.ReplicatedStorage.DataEvent:FireServer({Type="ExitBuild"})
  84. end
  85. end
  86. table.insert(Hacks, Barrier)
  87.  
  88. --Turn on lights
  89. local Lights = {}
  90. Lights["Name"] = "Turn on Lights"
  91. Lights["Enabled"] = false
  92. Lights["Toggleable"] = false
  93. Lights["Function"] = function(self)
  94. local plot = game.Workspace.Plots:FindFirstChild("Plot_"..game.Players.LocalPlayer.Name)
  95. for i,v in pairs(plot.House.Objects:children()) do
  96. if v.Type.Value == "Lighting" then
  97. if not v.ObjectData.IsOn.Value then
  98. game.ReplicatedStorage.DataEvent:FireServer({Type="Interact", Path=1, Target=v})
  99. end
  100. end
  101. end
  102. for ii,wall in pairs(plot.House.Walls:children()) do
  103. if wall:FindFirstChild("ItemHolder") then
  104. for i,v in pairs(wall.ItemHolder:children()) do
  105. if v.Type.Value == "Lighting" then
  106. if v:FindFirstChild("ObjectData") then
  107. if not v.ObjectData.IsOn.Value then
  108. game.ReplicatedStorage.DataEvent:FireServer({Type="Interact", Path=1, Target=v})
  109. end
  110. end
  111. end
  112. end
  113. end
  114. end
  115. end
  116. table.insert(Hacks, Lights)
  117.  
  118. --Unstuck
  119. local Unstuck = {}
  120. Unstuck["Name"] = "Unstuck"
  121. Unstuck["Enabled"] = false
  122. Unstuck["Toggleable"] = false
  123. Unstuck["Function"] = function(self)
  124. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 1, 0)
  125. end
  126. table.insert(Hacks, Unstuck)
  127.  
  128. -------------------------------------
  129.  
  130. --useful functions
  131. function updateColors(hack, HackButton)
  132. if hack.Toggleable then
  133. if hack.Enabled then
  134. HackButton.BackgroundColor3 = Color3.new(0, 1, 0)
  135. else
  136. HackButton.BackgroundColor3 = Color3.new(1, 0, 0)
  137. end
  138. else
  139. HackButton.BackgroundColor3 = Color3.new(0.666, 0.666, 0.666)
  140. end
  141. end
  142.  
  143. --gui variables
  144. local GUI = Instance.new("ScreenGui")
  145. local TitleFrame = Instance.new("Frame")
  146. local Title = Instance.new("TextLabel")
  147. local HacksFrame = Instance.new("Frame")
  148.  
  149. --destroy other instances
  150. if game.CoreGui:FindFirstChild("MemsBloxburg") then
  151. game.CoreGui:FindFirstChild("MemsBloxburg"):Destroy()
  152. end
  153.  
  154. --setting up the ScreenGUI
  155. GUI.Name = "MemsBloxburg"
  156. GUI.Parent = game.CoreGui
  157.  
  158. --frame for displaying title
  159. TitleFrame.Name = "TitleFrame"
  160. TitleFrame.Parent = GUI
  161. TitleFrame.BackgroundColor3 = Color3.new(0.333333, 0.666666, 1)
  162. TitleFrame.BorderColor3 = Color3.new(1, 0.843, 0)
  163. TitleFrame.Position = UDim2.new(0, 5, 0, 300)
  164. TitleFrame.Size = UDim2.new(0, 117, 0, 60)
  165. TitleFrame.Visible = true
  166. TitleFrame.Draggable = true
  167. TitleFrame.Active = true
  168.  
  169. --title of hack
  170. Title.Name = "Title"
  171. Title.Parent = TitleFrame
  172. Title.BackgroundTransparency = 1
  173. Title.Position = UDim2.new(0, 0, 0, 10)
  174. Title.Size = UDim2.new(0, 117, 0, 35)
  175. Title.Font = Enum.Font.SourceSansBold
  176. Title.FontSize = Enum.FontSize.Size18
  177. Title.Text = "Bloxburg Exploit\nBy memcorrupt\nVersion "..ExploitVersion
  178. Title.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961)
  179. Title.TextSize = 18
  180.  
  181. --get amount of hacks for gui stuff - i'm an idiot and there's probably a better way
  182. local HackCount = 0
  183. for i,v in pairs(Hacks) do
  184. HackCount = HackCount + 1
  185. end
  186.  
  187. --frame for displaying hacks
  188. HacksFrame.Name = "HacksFrame"
  189. HacksFrame.Parent = TitleFrame
  190. HacksFrame.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  191. HacksFrame.BorderColor3 = Color3.new(1, 0.843, 0)
  192. HacksFrame.Position = UDim2.new(0, 0, 0, 60)
  193. HacksFrame.Size = UDim2.new(0, 117, 0, HackCount*30+2)
  194. HacksFrame.Visible = true
  195. HacksFrame.Draggable = true
  196. HacksFrame.Active = true
  197.  
  198. --render buttons
  199. local RenderCount = 0
  200. for i,hack in next,Hacks do
  201. local HackButton = Instance.new("TextButton")
  202. HackButton.Name = "GUIButton_"..hack.Name
  203. HackButton.Parent = HacksFrame
  204. updateColors(hack, HackButton)
  205. HackButton.Position = UDim2.new(0, 1, 0, 1+(RenderCount*30))
  206. HackButton.Size = UDim2.new(0, 115, 0, 30)
  207. HackButton.Font = Enum.Font.Cartoon
  208. HackButton.FontSize = Enum.FontSize.Size14
  209. HackButton.Text = hack.Name
  210. HackButton.TextWrapped = true
  211. HackButton.TextSize = 14
  212. HackButton.MouseButton1Down:connect(function()
  213. hack.Enabled = not hack.Enabled
  214. updateColors(hack, HackButton)
  215. hack:Function()
  216. end)
  217. RenderCount = RenderCount + 1
  218. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement