Advertisement
BrokoHub

BrokoHub

Nov 25th, 2021
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.87 KB | None | 0 0
  1. -- Thanks for using BrokoHub! If you have any problems, message/add me on discord AmSpacemanB)#1411
  2. -- To activate the WalkSpeed, you must click on WalkSpeed first before entering the amount of speed
  3. -- Enjoy the script!
  4.  
  5.  
  6. -- Instances:
  7.  
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local Main = Instance.new("Frame")
  10. local ScrollingFrame = Instance.new("ScrollingFrame")
  11. local Walkonwall = Instance.new("TextButton")
  12. local UICorner = Instance.new("UICorner")
  13. local TextLabel = Instance.new("TextLabel")
  14. local Walk = Instance.new("TextButton")
  15. local TypeSpeed = Instance.new("TextBox")
  16. local Noclip = Instance.new("TextButton")
  17. local UICorner_2 = Instance.new("UICorner")
  18. local TextLabel_2 = Instance.new("TextLabel")
  19. local UICorner_3 = Instance.new("UICorner")
  20.  
  21. --Properties:
  22.  
  23. ScreenGui.Parent = game.CoreGui
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. Main.Name = "Main"
  27. Main.Parent = ScreenGui
  28. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. Main.Position = UDim2.new(0.198739678, 0, 0.291254938, 0)
  30. Main.Size = UDim2.new(0, 439, 0, 278)
  31.  
  32. ScrollingFrame.Parent = Main
  33. ScrollingFrame.Active = true
  34. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  35. ScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  36. ScrollingFrame.Position = UDim2.new(-0.0017158665, 0, 0.114995942, 0)
  37. ScrollingFrame.Size = UDim2.new(0, 439, 0, 246)
  38. ScrollingFrame.CanvasPosition = Vector2.new(0, 300)
  39.  
  40. Walkonwall.Name = "Walkonwall"
  41. Walkonwall.Parent = ScrollingFrame
  42. Walkonwall.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  43. Walkonwall.BorderColor3 = Color3.fromRGB(68, 68, 68)
  44. Walkonwall.Position = UDim2.new(0.0387243666, 0, 0.43953231, 0)
  45. Walkonwall.Size = UDim2.new(0, 405, 0, 58)
  46. Walkonwall.Font = Enum.Font.GothamBold
  47. Walkonwall.Text = "WalkOnWall"
  48. Walkonwall.TextColor3 = Color3.fromRGB(255, 255, 255)
  49. Walkonwall.TextSize = 24.000
  50. Walkonwall.TextWrapped = true
  51. Walkonwall.MouseButton1Down:connect(function()
  52. getgenv()["cofiG"] = getgenv()["cofiG"] or {}
  53. local hasToUpdate = true
  54. local alreadyRan = cofiG.gravityController ~= nil
  55.  
  56. local http = game:GetService'HttpService'
  57. local readfile,writefile,fileexists = readfile or syn_io_read,writefile or syn_io_write,isfile or readfile
  58.  
  59. local rawUrl,baseUrl = "https://ixss.keybase.pub/rblx/gravityController/", "https://keybase.pub/ixss/rblx/gravityController/"
  60.  
  61. do
  62. _G.req = [[
  63. local require = function(lol)
  64. lol = "https://raw.githubusercontent.com/msva/lua-htmlparser/master/src/"..lol:gsub("%.","/")..".lua";
  65. return loadstring(_G.req..game:HttpGet(lol))();
  66. end;
  67. ]]
  68.  
  69. local require = function(lol)
  70. lol = "https://raw.githubusercontent.com/msva/lua-htmlparser/master/src/"..lol:gsub("%.","/")..".lua";
  71. return loadstring(_G.req..game:HttpGet(lol))();
  72. end;
  73.  
  74. cofiG.htmlparser = cofiG.htmlparser or require"htmlparser"
  75. end
  76.  
  77. do -- check if exists
  78. if fileexists'gravityController.json' then
  79. local json = readfile'gravityController.json'
  80. if json then
  81. cofiG.gravityController = http:JSONDecode(json)
  82. hasToUpdate = cofiG.gravityController.Version ~= game:HttpGet(rawUrl.."Version.txt")
  83. end
  84. end
  85. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  86. Text = hasToUpdate and "Updating script..." or "Running script!";
  87. Font = Enum.Font.Code;
  88. Color = Color3.fromRGB(255, 60, 60);
  89. FontSize = Enum.FontSize.Size96;
  90. })
  91. end
  92.  
  93.  
  94. if hasToUpdate then -- update/download
  95.  
  96. function getScripts()
  97. local ret = {}
  98. local text = game:HttpGet(baseUrl, false)
  99.  
  100. local root = cofiG.htmlparser.parse(text)
  101. local files = root:select(".file")
  102.  
  103. for i,v in pairs(files) do
  104. if string.sub(v.attributes.href, string.len(v.attributes.href)-3) == ".lua" then
  105. local name = string.sub(v.attributes.href,string.len(baseUrl)+1, string.len(v.attributes.href)-4)
  106. local script = rawUrl..name..".lua"
  107. ret[name] = game:HttpGet(script)
  108. elseif string.sub(v.attributes.href, string.len(v.attributes.href)-3) == ".txt" then
  109. local name = string.sub(v.attributes.href,string.len(baseUrl)+1, string.len(v.attributes.href)-4)
  110. local script = rawUrl..name..".txt"
  111. ret[name] = game:HttpGet(script)
  112. end
  113. end
  114.  
  115. return ret
  116. end
  117. cofiG.gravityController = getScripts()
  118. writefile('gravityController.json', http:JSONEncode(cofiG.gravityController))
  119. warn('Script updated!')
  120. end
  121.  
  122. local a,b = pcall(loadstring(cofiG.gravityController.Loader))
  123.  
  124. if not a then
  125. error('Loader ', b)
  126. end
  127.  
  128. if not alreadyRan then
  129. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  130. Text = game:HttpGet('https://ixss.keybase.pub/Watermark.txt', true)..", originally made by EgoMoose.";
  131. Font = Enum.Font.Code;
  132. Color = Color3.fromRGB(244, 0, 175);
  133. FontSize = Enum.FontSize.Size96;
  134. })
  135. end
  136. end)
  137.  
  138. UICorner.Parent = Walkonwall
  139.  
  140. TextLabel.Parent = ScrollingFrame
  141. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  142. TextLabel.BackgroundTransparency = 1.000
  143. TextLabel.Position = UDim2.new(0.0113895219, 0, 0.0165698286, 0)
  144. TextLabel.Size = UDim2.new(0, 429, 0, 22)
  145. TextLabel.Font = Enum.Font.SourceSansItalic
  146. TextLabel.Text = "Note: Reset to make everything normal"
  147. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  148. TextLabel.TextScaled = true
  149. TextLabel.TextSize = 14.000
  150. TextLabel.TextWrapped = true
  151.  
  152. Walk.Name = "Walk"
  153. Walk.Parent = ScrollingFrame
  154. Walk.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  155. Walk.BorderColor3 = Color3.fromRGB(68, 68, 68)
  156. Walk.Position = UDim2.new(0.0410022773, 0, 0.110108249, 0)
  157. Walk.Size = UDim2.new(0, 404, 0, 52)
  158. Walk.Font = Enum.Font.GothamBold
  159. Walk.Text = "WalkSpeed"
  160. Walk.TextColor3 = Color3.fromRGB(255, 255, 255)
  161. Walk.TextSize = 24.000
  162. Walk.MouseButton1Down:connect(function()
  163. while true do
  164. wait()
  165. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = TypeSpeed.Text
  166. end
  167. end)
  168.  
  169. TypeSpeed.Name = "TypeSpeed"
  170. TypeSpeed.Parent = ScrollingFrame
  171. TypeSpeed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  172. TypeSpeed.BorderColor3 = Color3.fromRGB(255, 255, 255)
  173. TypeSpeed.Position = UDim2.new(0.0410022773, 0, 0.203306854, 0)
  174. TypeSpeed.Size = UDim2.new(0, 403, 0, 42)
  175. TypeSpeed.Font = Enum.Font.SourceSansItalic
  176. TypeSpeed.PlaceholderColor3 = Color3.fromRGB(131, 131, 131)
  177. TypeSpeed.PlaceholderText = "Enter the WalkSpeed ammount"
  178. TypeSpeed.Text = ""
  179. TypeSpeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  180. TypeSpeed.TextSize = 14.000
  181.  
  182. Noclip.Name = "Noclip"
  183. Noclip.Parent = ScrollingFrame
  184. Noclip.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  185. Noclip.BorderColor3 = Color3.fromRGB(68, 68, 68)
  186. Noclip.Position = UDim2.new(0.0364464633, 0, 0.723704934, 0)
  187. Noclip.Size = UDim2.new(0, 405, 0, 58)
  188. Noclip.Font = Enum.Font.GothamBold
  189. Noclip.Text = "NoClip"
  190. Noclip.TextColor3 = Color3.fromRGB(255, 255, 255)
  191. Noclip.TextSize = 24.000
  192. Noclip.TextWrapped = true
  193. Noclip.MouseButton1Down:connect(function()
  194. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = false elseif v.ClassName == "Model" then v.Head.CanCollide = false end end) end end game:service("RunService").Stepped:wait() end
  195. end)
  196.  
  197. UICorner_2.Parent = Noclip
  198.  
  199. TextLabel_2.Parent = Main
  200. TextLabel_2.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  201. TextLabel_2.BorderColor3 = Color3.fromRGB(0, 255, 0)
  202. TextLabel_2.Position = UDim2.new(-0.0159453303, 0, -0.0251798555, 0)
  203. TextLabel_2.Size = UDim2.new(0, 452, 0, 39)
  204. TextLabel_2.Font = Enum.Font.GothamBold
  205. TextLabel_2.Text = "BrokoHub"
  206. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  207. TextLabel_2.TextSize = 14.000
  208.  
  209. UICorner_3.Parent = TextLabel_2
  210.  
  211. -- Scripts:
  212.  
  213. local function KUAJSGA_fake_script() -- ScreenGui.Script
  214. local script = Instance.new('Script', ScreenGui)
  215.  
  216. frame = script.Parent.Main
  217. frame.Draggable = true
  218. frame.Active = true
  219. fram.Selectable = true
  220. end
  221. coroutine.wrap(KUAJSGA_fake_script)()
  222.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement