chrisinator66

Untitled

Nov 12th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.71 KB | None | 0 0
  1. -- Objects
  2.  
  3. local BorkGui = Instance.new("ScreenGui")
  4. local OpenClose = Instance.new("Frame")
  5. local OC = Instance.new("TextButton")
  6. local Main = Instance.new("Frame")
  7. local Background = Instance.new("ImageLabel")
  8. local Title = Instance.new("TextLabel")
  9. local AutoRebirth = Instance.new("TextLabel")
  10. local AutoRebirthOff = Instance.new("TextButton")
  11. local AutoRebirthOn = Instance.new("TextButton")
  12. local UpgraderCframe = Instance.new("TextButton")
  13. local Other = Instance.new("TextLabel")
  14. local CrateTeleportOn = Instance.new("TextButton")
  15. local CrateTeleportOff = Instance.new("TextButton")
  16. local FakeCrateSpam = Instance.new("TextLabel")
  17. local CrateSpamOn = Instance.new("TextButton")
  18. local CrateSpamOff = Instance.new("TextButton")
  19. local RemoteClicker = Instance.new("TextLabel")
  20. local RemoteClickerOn = Instance.new("TextButton")
  21. local RemoteClickerOff = Instance.new("TextButton")
  22. local FactoryTeleport = Instance.new("TextLabel")
  23. local Factory1 = Instance.new("TextButton")
  24. local Factory2 = Instance.new("TextButton")
  25. local Factory3 = Instance.new("TextButton")
  26. local Factory4 = Instance.new("TextButton")
  27. local Factory5 = Instance.new("TextButton")
  28. local Factory6 = Instance.new("TextButton")
  29. local CrateTeleport = Instance.new("TextLabel")
  30. local LuckyClover = Instance.new("TextButton")
  31. local TwitchPoints = Instance.new("TextButton")
  32. local MaskedMan = Instance.new("TextButton")
  33. local Boxman = Instance.new("TextButton")
  34. local Santa = Instance.new("TextButton")
  35. local InfInfuse = Instance.new("TextLabel")
  36. local InfInfuseOn = Instance.new("TextButton")
  37. local InfInfuseOff = Instance.new("TextButton")
  38. local FacOwner = Instance.new("TextButton")
  39. local BuyCrate = Instance.new("TextButton")
  40. local Speed = Instance.new("TextButton")
  41. local Jump = Instance.new("TextButton")
  42. local Night = Instance.new("TextButton")
  43. local Day = Instance.new("TextButton")
  44. local Open = true
  45. _G.BorkInfInfuse = false
  46. _G.FBorkInfInfuse = true
  47. _G.FBorkAutoRebirth = true
  48. _G.FBorkRemoteClicker = true
  49. _G.FBorkCrateTeleport = true
  50. _G.BorkCrateTeleport = nil
  51. _G.BorkRemoteClicker = nil
  52. _G.BorkAutoRebirth = nil
  53.  
  54. -- Properties
  55.  
  56. BorkGui.Name = "BorkGui"
  57. BorkGui.Parent = game.CoreGui
  58.  
  59. OpenClose.Name = "OpenClose"
  60. OpenClose.Parent = BorkGui
  61. OpenClose.BackgroundColor3 = Color3.new(1, 1, 1)
  62. OpenClose.BackgroundTransparency = 1
  63. OpenClose.Position = UDim2.new(0.683441579, 0, 0.873536348, 0)
  64. OpenClose.Size = UDim2.new(0, 100, 0, 100)
  65.  
  66. OC.Name = "OC"
  67. OC.Parent = OpenClose
  68. OC.BackgroundColor3 = Color3.new(0, 0, 0)
  69. OC.Position = UDim2.new(0.680890799, 0, 0.8438797, 0)
  70. OC.Size = UDim2.new(0, 31, 0, 11)
  71. OC.Font = Enum.Font.SourceSans
  72. OC.Text = "Close"
  73. OC.TextColor3 = Color3.new(1, 1, 1)
  74. OC.TextSize = 14
  75. OC.MouseButton1Down:connect(function()
  76. if Open == true then
  77. OC.Text = "Open"
  78. Main.Visible = false
  79. Open = false
  80. elseif Open == false then
  81. Main.Visible = true
  82. OC.Text = "Close"
  83. Open = true
  84. end
  85. end)
  86.  
  87.  
  88. Main.Name = "Main"
  89. Main.Parent = BorkGui
  90. Main.Active = true
  91. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  92. Main.BackgroundTransparency = 1
  93. Main.Position = UDim2.new(0.612336576, 0, 0.73653394, 0)
  94. Main.Selectable = true
  95. Main.Size = UDim2.new(0, 418, 0, 225)
  96.  
  97. Background.Name = "Background"
  98. Background.Parent = Main
  99. Background.BackgroundColor3 = Color3.new(0, 0, 0)
  100. Background.Size = UDim2.new(0, 397, 0, 218)
  101. Background.Image = "rbxassetid://2557904560"
  102.  
  103. Title.Name = "Title"
  104. Title.Parent = Main
  105. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  106. Title.Position = UDim2.new(-0.000283419242, 0, -0.0101326499, 0)
  107. Title.Size = UDim2.new(0, 398, 0, 15)
  108. Title.Font = Enum.Font.SourceSansBold
  109. Title.Text = "Bork's Miner's Haven Gui V1"
  110. Title.TextColor3 = Color3.new(1, 1, 1)
  111. Title.TextSize = 14
  112. Title.TextStrokeColor3 = Color3.new(1, 0, 0.0156863)
  113. Title.TextWrapped = true
  114.  
  115. AutoRebirth.Name = "AutoRebirth"
  116. AutoRebirth.Parent = Main
  117. AutoRebirth.BackgroundColor3 = Color3.new(1, 1, 1)
  118. AutoRebirth.BackgroundTransparency = 0.75
  119. AutoRebirth.Position = UDim2.new(0, 0, 0.057777781, 0)
  120. AutoRebirth.Size = UDim2.new(0, 100, 0, 20)
  121. AutoRebirth.Font = Enum.Font.SourceSansBold
  122. AutoRebirth.Text = "Auto Rebirth"
  123. AutoRebirth.TextColor3 = Color3.new(0, 0, 0)
  124. AutoRebirth.TextSize = 14
  125.  
  126. AutoRebirthOff.Name = "AutoRebirthOff"
  127. AutoRebirthOff.Parent = Main
  128. AutoRebirthOff.BackgroundColor3 = Color3.new(1, 1, 1)
  129. AutoRebirthOff.BackgroundTransparency = 0.75
  130. AutoRebirthOff.Position = UDim2.new(0.118698202, 0, 0.144569337, 0)
  131. AutoRebirthOff.Size = UDim2.new(0, 50, 0, 20)
  132. AutoRebirthOff.Font = Enum.Font.SourceSans
  133. AutoRebirthOff.Text = "Off"
  134. AutoRebirthOff.TextColor3 = Color3.new(0, 0, 0)
  135. AutoRebirthOff.TextSize = 14
  136.  
  137. AutoRebirthOn.Name = "AutoRebirthOn"
  138. AutoRebirthOn.Parent = Main
  139. AutoRebirthOn.BackgroundColor3 = Color3.new(1, 1, 1)
  140. AutoRebirthOn.BackgroundTransparency = 0.75
  141. AutoRebirthOn.Position = UDim2.new(-0.00350081874, 0, 0.144569337, 0)
  142. AutoRebirthOn.Size = UDim2.new(0, 50, 0, 20)
  143. AutoRebirthOn.Font = Enum.Font.SourceSans
  144. AutoRebirthOn.Text = "On"
  145. AutoRebirthOn.TextColor3 = Color3.new(0, 0, 0)
  146. AutoRebirthOn.TextSize = 14
  147.  
  148. UpgraderCframe.Name = "UpgraderCframe"
  149. UpgraderCframe.Parent = Main
  150. UpgraderCframe.BackgroundColor3 = Color3.new(1, 1, 1)
  151. UpgraderCframe.BackgroundTransparency = 0.75
  152. UpgraderCframe.Position = UDim2.new(0.492302865, 0, 0.322347015, 0)
  153. UpgraderCframe.Size = UDim2.new(0, 95, 0, 20)
  154. UpgraderCframe.Font = Enum.Font.SourceSans
  155. UpgraderCframe.Text = "Upgrader CFrame"
  156. UpgraderCframe.TextColor3 = Color3.new(0, 0, 0)
  157. UpgraderCframe.TextSize = 12
  158.  
  159. Other.Name = "Other"
  160. Other.Parent = Main
  161. Other.BackgroundColor3 = Color3.new(1, 1, 1)
  162. Other.BackgroundTransparency = 0.75
  163. Other.Position = UDim2.new(0.492302835, 0, 0.0577777773, 0)
  164. Other.Size = UDim2.new(0, 190, 0, 20)
  165. Other.Font = Enum.Font.SourceSansBold
  166. Other.Text = "Other"
  167. Other.TextColor3 = Color3.new(0, 0, 0)
  168. Other.TextSize = 14
  169.  
  170. CrateTeleportOn.Name = "CrateTeleportOn"
  171. CrateTeleportOn.Parent = Main
  172. CrateTeleportOn.BackgroundColor3 = Color3.new(1, 1, 1)
  173. CrateTeleportOn.BackgroundTransparency = 0.75
  174. CrateTeleportOn.Position = UDim2.new(-0.00350081921, 0, 0.389013797, 0)
  175. CrateTeleportOn.Size = UDim2.new(0, 50, 0, 20)
  176. CrateTeleportOn.Font = Enum.Font.SourceSans
  177. CrateTeleportOn.Text = "On"
  178. CrateTeleportOn.TextColor3 = Color3.new(0, 0, 0)
  179. CrateTeleportOn.TextSize = 14
  180.  
  181. CrateTeleportOff.Name = "CrateTeleportOff"
  182. CrateTeleportOff.Parent = Main
  183. CrateTeleportOff.BackgroundColor3 = Color3.new(1, 1, 1)
  184. CrateTeleportOff.BackgroundTransparency = 0.75
  185. CrateTeleportOff.Position = UDim2.new(0.118698202, 0, 0.389013797, 0)
  186. CrateTeleportOff.Size = UDim2.new(0, 50, 0, 20)
  187. CrateTeleportOff.Font = Enum.Font.SourceSans
  188. CrateTeleportOff.Text = "Off"
  189. CrateTeleportOff.TextColor3 = Color3.new(0, 0, 0)
  190. CrateTeleportOff.TextSize = 14
  191.  
  192. FakeCrateSpam.Name = "FakeCrateSpam"
  193. FakeCrateSpam.Parent = Main
  194. FakeCrateSpam.BackgroundColor3 = Color3.new(1, 1, 1)
  195. FakeCrateSpam.BackgroundTransparency = 0.75
  196. FakeCrateSpam.Position = UDim2.new(-1.02445483e-08, 0, 0.546666682, 0)
  197. FakeCrateSpam.Size = UDim2.new(0, 100, 0, 20)
  198. FakeCrateSpam.Font = Enum.Font.SourceSansBold
  199. FakeCrateSpam.Text = "Fake Crate Spam"
  200. FakeCrateSpam.TextColor3 = Color3.new(0, 0, 0)
  201. FakeCrateSpam.TextSize = 14
  202.  
  203. CrateSpamOn.Name = "CrateSpamOn"
  204. CrateSpamOn.Parent = Main
  205. CrateSpamOn.BackgroundColor3 = Color3.new(1, 1, 1)
  206. CrateSpamOn.BackgroundTransparency = 0.75
  207. CrateSpamOn.Position = UDim2.new(-0.00350081874, 0, 0.633458257, 0)
  208. CrateSpamOn.Size = UDim2.new(0, 50, 0, 20)
  209. CrateSpamOn.Font = Enum.Font.SourceSans
  210. CrateSpamOn.Text = "On"
  211. CrateSpamOn.TextColor3 = Color3.new(0, 0, 0)
  212. CrateSpamOn.TextSize = 14
  213.  
  214. CrateSpamOff.Name = "CrateSpamOff"
  215. CrateSpamOff.Parent = Main
  216. CrateSpamOff.BackgroundColor3 = Color3.new(1, 1, 1)
  217. CrateSpamOff.BackgroundTransparency = 0.75
  218. CrateSpamOff.Position = UDim2.new(0.118698202, 0, 0.633458257, 0)
  219. CrateSpamOff.Size = UDim2.new(0, 50, 0, 20)
  220. CrateSpamOff.Font = Enum.Font.SourceSans
  221. CrateSpamOff.Text = "Off"
  222. CrateSpamOff.TextColor3 = Color3.new(0, 0, 0)
  223. CrateSpamOff.TextSize = 14
  224.  
  225. RemoteClicker.Name = "RemoteClicker"
  226. RemoteClicker.Parent = Main
  227. RemoteClicker.BackgroundColor3 = Color3.new(1, 1, 1)
  228. RemoteClicker.BackgroundTransparency = 0.75
  229. RemoteClicker.Position = UDim2.new(0, 0, 0.791111171, 0)
  230. RemoteClicker.Size = UDim2.new(0, 100, 0, 20)
  231. RemoteClicker.Font = Enum.Font.SourceSansBold
  232. RemoteClicker.Text = "Auto Remote"
  233. RemoteClicker.TextColor3 = Color3.new(0, 0, 0)
  234. RemoteClicker.TextSize = 14
  235.  
  236. RemoteClickerOn.Name = "RemoteClickerOn"
  237. RemoteClickerOn.Parent = Main
  238. RemoteClickerOn.BackgroundColor3 = Color3.new(1, 1, 1)
  239. RemoteClickerOn.BackgroundTransparency = 0.75
  240. RemoteClickerOn.Position = UDim2.new(-0.00350081921, 0, 0.877902746, 0)
  241. RemoteClickerOn.Size = UDim2.new(0, 50, 0, 20)
  242. RemoteClickerOn.Font = Enum.Font.SourceSans
  243. RemoteClickerOn.Text = "On"
  244. RemoteClickerOn.TextColor3 = Color3.new(0, 0, 0)
  245. RemoteClickerOn.TextSize = 14
  246.  
  247. RemoteClickerOff.Name = "RemoteClickerOff"
  248. RemoteClickerOff.Parent = Main
  249. RemoteClickerOff.BackgroundColor3 = Color3.new(1, 1, 1)
  250. RemoteClickerOff.BackgroundTransparency = 0.75
  251. RemoteClickerOff.Position = UDim2.new(0.118698232, 0, 0.877902627, 0)
  252. RemoteClickerOff.Size = UDim2.new(0, 50, 0, 20)
  253. RemoteClickerOff.Font = Enum.Font.SourceSans
  254. RemoteClickerOff.Text = "Off"
  255. RemoteClickerOff.TextColor3 = Color3.new(0, 0, 0)
  256. RemoteClickerOff.TextSize = 14
  257.  
  258. FactoryTeleport.Name = "FactoryTeleport"
  259. FactoryTeleport.Parent = Main
  260. FactoryTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  261. FactoryTeleport.BackgroundTransparency = 0.75
  262. FactoryTeleport.Position = UDim2.new(0.497087538, 0, 0.871111095, 0)
  263. FactoryTeleport.Size = UDim2.new(0, 46, 0, 21)
  264. FactoryTeleport.Font = Enum.Font.SourceSansBold
  265. FactoryTeleport.Text = "Factory Tp"
  266. FactoryTeleport.TextColor3 = Color3.new(0, 0, 0)
  267. FactoryTeleport.TextSize = 12
  268.  
  269. Factory1.Name = "Factory1"
  270. Factory1.Parent = Main
  271. Factory1.BackgroundColor3 = Color3.new(1, 1, 1)
  272. Factory1.BackgroundTransparency = 0.75
  273. Factory1.Position = UDim2.new(0.609527767, 0, 0.871111095, 0)
  274. Factory1.Size = UDim2.new(0, 23, 0, 21)
  275. Factory1.Font = Enum.Font.SourceSans
  276. Factory1.Text = "1"
  277. Factory1.TextColor3 = Color3.new(0, 0, 0)
  278. Factory1.TextSize = 14
  279.  
  280. Factory2.Name = "Factory2"
  281. Factory2.Parent = Main
  282. Factory2.BackgroundColor3 = Color3.new(1, 1, 1)
  283. Factory2.BackgroundTransparency = 0.75
  284. Factory2.Position = UDim2.new(0.66646564, 0, 0.871111155, 0)
  285. Factory2.Size = UDim2.new(0, 23, 0, 21)
  286. Factory2.Font = Enum.Font.SourceSans
  287. Factory2.Text = "2"
  288. Factory2.TextColor3 = Color3.new(0, 0, 0)
  289. Factory2.TextSize = 14
  290.  
  291. Factory3.Name = "Factory3"
  292. Factory3.Parent = Main
  293. Factory3.BackgroundColor3 = Color3.new(1, 1, 1)
  294. Factory3.BackgroundTransparency = 0.75
  295. Factory3.Position = UDim2.new(0.723403335, 0, 0.871111095, 0)
  296. Factory3.Size = UDim2.new(0, 23, 0, 21)
  297. Factory3.Font = Enum.Font.SourceSans
  298. Factory3.Text = "3"
  299. Factory3.TextColor3 = Color3.new(0, 0, 0)
  300. Factory3.TextSize = 14
  301.  
  302. Factory4.Name = "Factory4"
  303. Factory4.Parent = Main
  304. Factory4.BackgroundColor3 = Color3.new(1, 1, 1)
  305. Factory4.BackgroundTransparency = 0.75
  306. Factory4.Position = UDim2.new(0.779384196, 0, 0.871111095, 0)
  307. Factory4.Size = UDim2.new(0, 23, 0, 21)
  308. Factory4.Font = Enum.Font.SourceSans
  309. Factory4.Text = "4"
  310. Factory4.TextColor3 = Color3.new(0, 0, 0)
  311. Factory4.TextSize = 14
  312.  
  313. Factory5.Name = "Factory5"
  314. Factory5.Parent = Main
  315. Factory5.BackgroundColor3 = Color3.new(1, 1, 1)
  316. Factory5.BackgroundTransparency = 0.75
  317. Factory5.Position = UDim2.new(0.836322129, 0, 0.871111155, 0)
  318. Factory5.Size = UDim2.new(0, 23, 0, 21)
  319. Factory5.Font = Enum.Font.SourceSans
  320. Factory5.Text = "5"
  321. Factory5.TextColor3 = Color3.new(0, 0, 0)
  322. Factory5.TextSize = 14
  323.  
  324. Factory6.Name = "Factory6"
  325. Factory6.Parent = Main
  326. Factory6.BackgroundColor3 = Color3.new(1, 1, 1)
  327. Factory6.BackgroundTransparency = 0.75
  328. Factory6.Position = UDim2.new(0.893259823, 0, 0.871111035, 0)
  329. Factory6.Size = UDim2.new(0, 23, 0, 21)
  330. Factory6.Font = Enum.Font.SourceSans
  331. Factory6.Text = "6"
  332. Factory6.TextColor3 = Color3.new(0, 0, 0)
  333. Factory6.TextSize = 14
  334.  
  335. CrateTeleport.Name = "CrateTeleport"
  336. CrateTeleport.Parent = Main
  337. CrateTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  338. CrateTeleport.BackgroundTransparency = 0.75
  339. CrateTeleport.Position = UDim2.new(0, 0, 0.302222222, 0)
  340. CrateTeleport.Size = UDim2.new(0, 100, 0, 20)
  341. CrateTeleport.Font = Enum.Font.SourceSansBold
  342. CrateTeleport.Text = "Crate Teleport"
  343. CrateTeleport.TextColor3 = Color3.new(0, 0, 0)
  344. CrateTeleport.TextSize = 14
  345.  
  346. LuckyClover.Name = "LuckyClover"
  347. LuckyClover.Parent = Main
  348. LuckyClover.BackgroundColor3 = Color3.new(1, 1, 1)
  349. LuckyClover.BackgroundTransparency = 0.75
  350. LuckyClover.Position = UDim2.new(0.492302805, 0, 0.144569233, 0)
  351. LuckyClover.Size = UDim2.new(0, 95, 0, 20)
  352. LuckyClover.Font = Enum.Font.SourceSans
  353. LuckyClover.Text = "Lucky Clovers"
  354. LuckyClover.TextColor3 = Color3.new(0, 0, 0)
  355. LuckyClover.TextSize = 12
  356.  
  357. TwitchPoints.Name = "TwitchPoints"
  358. TwitchPoints.Parent = Main
  359. TwitchPoints.BackgroundColor3 = Color3.new(1, 1, 1)
  360. TwitchPoints.BackgroundTransparency = 0.75
  361. TwitchPoints.BorderColor3 = Color3.new(0, 0, 0)
  362. TwitchPoints.Position = UDim2.new(0.719575584, 0, 0.144569233, 0)
  363. TwitchPoints.Size = UDim2.new(0, 95, 0, 20)
  364. TwitchPoints.Font = Enum.Font.SourceSans
  365. TwitchPoints.Text = "Twitch Points"
  366. TwitchPoints.TextColor3 = Color3.new(0, 0, 0)
  367. TwitchPoints.TextSize = 12
  368.  
  369. MaskedMan.Name = "MaskedMan"
  370. MaskedMan.Parent = Main
  371. MaskedMan.BackgroundColor3 = Color3.new(1, 1, 1)
  372. MaskedMan.BackgroundTransparency = 0.75
  373. MaskedMan.Position = UDim2.new(0.492302865, 0, 0.233458117, 0)
  374. MaskedMan.Size = UDim2.new(0, 95, 0, 20)
  375. MaskedMan.Font = Enum.Font.SourceSans
  376. MaskedMan.Text = "Masked Man"
  377. MaskedMan.TextColor3 = Color3.new(0, 0, 0)
  378. MaskedMan.TextSize = 12
  379.  
  380. Boxman.Name = "Boxman"
  381. Boxman.Parent = Main
  382. Boxman.BackgroundColor3 = Color3.new(1, 1, 1)
  383. Boxman.BackgroundTransparency = 0.75
  384. Boxman.Position = UDim2.new(0.719575584, 0, 0.233458117, 0)
  385. Boxman.Size = UDim2.new(0, 95, 0, 20)
  386. Boxman.Font = Enum.Font.SourceSans
  387. Boxman.Text = "Box Man"
  388. Boxman.TextColor3 = Color3.new(0, 0, 0)
  389. Boxman.TextSize = 12
  390.  
  391. Santa.Name = "Santa"
  392. Santa.Parent = Main
  393. Santa.BackgroundColor3 = Color3.new(1, 1, 1)
  394. Santa.BackgroundTransparency = 0.75
  395. Santa.Position = UDim2.new(0.718618572, 0, 0.322347015, 0)
  396. Santa.Size = UDim2.new(0, 95, 0, 20)
  397. Santa.Font = Enum.Font.SourceSans
  398. Santa.Text = "Santa"
  399. Santa.TextColor3 = Color3.new(0, 0, 0)
  400. Santa.TextSize = 12
  401.  
  402. InfInfuse.Name = "InfInfuse"
  403. InfInfuse.Parent = Main
  404. InfInfuse.BackgroundColor3 = Color3.new(1, 1, 1)
  405. InfInfuse.BackgroundTransparency = 0.75
  406. InfInfuse.Position = UDim2.new(0.239234447, 0, 0.0577777922, 0)
  407. InfInfuse.Size = UDim2.new(0, 100, 0, 20)
  408. InfInfuse.Font = Enum.Font.SourceSansBold
  409. InfInfuse.Text = "Unlimited Infuses"
  410. InfInfuse.TextColor3 = Color3.new(0, 0, 0)
  411. InfInfuse.TextSize = 14
  412.  
  413. InfInfuseOn.Name = "InfInfuseOn"
  414. InfInfuseOn.Parent = Main
  415. InfInfuseOn.BackgroundColor3 = Color3.new(1, 1, 1)
  416. InfInfuseOn.BackgroundTransparency = 0.75
  417. InfInfuseOn.Position = UDim2.new(0.238125965, 0, 0.144569337, 0)
  418. InfInfuseOn.Size = UDim2.new(0, 50, 0, 20)
  419. InfInfuseOn.Font = Enum.Font.SourceSans
  420. InfInfuseOn.Text = "On"
  421. InfInfuseOn.TextColor3 = Color3.new(0, 0, 0)
  422. InfInfuseOn.TextSize = 14
  423.  
  424. InfInfuseOff.Name = "InfInfuseOff"
  425. InfInfuseOff.Parent = Main
  426. InfInfuseOff.BackgroundColor3 = Color3.new(1, 1, 1)
  427. InfInfuseOff.BackgroundTransparency = 0.75
  428. InfInfuseOff.Position = UDim2.new(0.357932627, 0, 0.144569337, 0)
  429. InfInfuseOff.Size = UDim2.new(0, 50, 0, 20)
  430. InfInfuseOff.Font = Enum.Font.SourceSans
  431. InfInfuseOff.Text = "Off"
  432. InfInfuseOff.TextColor3 = Color3.new(0, 0, 0)
  433. InfInfuseOff.TextSize = 14
  434.  
  435. FacOwner.Name = "FacOwner"
  436. FacOwner.Parent = Main
  437. FacOwner.BackgroundColor3 = Color3.new(1, 1, 1)
  438. FacOwner.BackgroundTransparency = 0.75
  439. FacOwner.Position = UDim2.new(0.492302865, 0, 0.411235899, 0)
  440. FacOwner.Size = UDim2.new(0, 95, 0, 20)
  441. FacOwner.Font = Enum.Font.SourceSans
  442. FacOwner.Text = "Print Factory Owners"
  443. FacOwner.TextColor3 = Color3.new(0, 0, 0)
  444. FacOwner.TextSize = 12
  445.  
  446. BuyCrate.Name = "BuyCrate"
  447. BuyCrate.Parent = Main
  448. BuyCrate.BackgroundColor3 = Color3.new(1, 1, 1)
  449. BuyCrate.BackgroundTransparency = 0.75
  450. BuyCrate.Position = UDim2.new(0.718618572, 0, 0.411235899, 0)
  451. BuyCrate.Size = UDim2.new(0, 95, 0, 20)
  452. BuyCrate.Font = Enum.Font.SourceSans
  453. BuyCrate.Text = "Buy Crate Items"
  454. BuyCrate.TextColor3 = Color3.new(0, 0, 0)
  455. BuyCrate.TextSize = 12
  456.  
  457. Speed.Name = "Speed"
  458. Speed.Parent = Main
  459. Speed.BackgroundColor3 = Color3.new(1, 1, 1)
  460. Speed.BackgroundTransparency = 0.75
  461. Speed.Position = UDim2.new(0.492302865, 0, 0.500124812, 0)
  462. Speed.Size = UDim2.new(0, 96, 0, 20)
  463. Speed.Font = Enum.Font.SourceSans
  464. Speed.Text = "+10 Speed"
  465. Speed.TextColor3 = Color3.new(0, 0, 0)
  466. Speed.TextSize = 12
  467.  
  468. Jump.Name = "Jump"
  469. Jump.Parent = Main
  470. Jump.BackgroundColor3 = Color3.new(1, 1, 1)
  471. Jump.BackgroundTransparency = 0.75
  472. Jump.Position = UDim2.new(0.721967936, 0, 0.500124812, 0)
  473. Jump.Size = UDim2.new(0, 94, 0, 20)
  474. Jump.Font = Enum.Font.SourceSans
  475. Jump.Text = "+10 Jump"
  476. Jump.TextColor3 = Color3.new(0, 0, 0)
  477. Jump.TextSize = 12
  478.  
  479. Night.Name = "Night"
  480. Night.Parent = Main
  481. Night.BackgroundColor3 = Color3.new(1, 1, 1)
  482. Night.BackgroundTransparency = 0.75
  483. Night.Position = UDim2.new(0.492302865, 0, 0.589013696, 0)
  484. Night.Size = UDim2.new(0, 96, 0, 20)
  485. Night.Font = Enum.Font.SourceSans
  486. Night.Text = "Set To Night"
  487. Night.TextColor3 = Color3.new(0, 0, 0)
  488. Night.TextSize = 12
  489.  
  490. Day.Name = "Day"
  491. Day.Parent = Main
  492. Day.BackgroundColor3 = Color3.new(1, 1, 1)
  493. Day.BackgroundTransparency = 0.75
  494. Day.Position = UDim2.new(0.721489549, 0, 0.589013696, 0)
  495. Day.Size = UDim2.new(0, 94, 0, 20)
  496. Day.Font = Enum.Font.SourceSans
  497. Day.Text = "Set To Day"
  498. Day.TextColor3 = Color3.new(0, 0, 0)
  499. Day.TextSize = 12
  500.  
  501.  
  502.  
  503.  
  504. --Functions--
  505. Santa.MouseButton1Down:connect(function()
  506. game.ReplicatedStorage.Click:FireServer(game.Workspace.Map.Santa.Hitfox)
  507. end)
  508.  
  509. Boxman.MouseButton1Down:connect(function()
  510. game.ReplicatedStorage.Click:FireServer(game.Workspace.Map.Boxman.Hitbox)
  511. end)
  512.  
  513. MaskedMan.MouseButton1Down:connect(function()
  514. game.Players.LocalPlayer.PlayerGui.GUI.EventShop.Visible = true
  515. end)
  516.  
  517. TwitchPoints.MouseButton1Down:connect(function()
  518. game.Players.LocalPlayer.Clovers.Value = 100000
  519. end)
  520.  
  521. LuckyClover.MouseButton1Down:connect(function()
  522. game.Players.LocalPlayer.Clovers.Value = 100000
  523. end)
  524.  
  525. Factory1.MouseButton1Down:connect(function()
  526. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FakeBases.Factory1.CFrame*CFrame.new(0,50,0)
  527. end)
  528.  
  529. Factory2.MouseButton1Down:connect(function()
  530. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FakeBases.Factory2.CFrame*CFrame.new(0,50,0)
  531. end)
  532.  
  533. Factory3.MouseButton1Down:connect(function()
  534. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FakeBases.Factory3.CFrame*CFrame.new(0,50,0)
  535. end)
  536.  
  537. Factory4.MouseButton1Down:connect(function()
  538. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FakeBases.Factory4.CFrame*CFrame.new(0,50,0)
  539. end)
  540.  
  541. Factory5.MouseButton1Down:connect(function()
  542. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FakeBases.Factory5.CFrame*CFrame.new(0,50,0)
  543. end)
  544.  
  545. Factory6.MouseButton1Down:connect(function()
  546. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FakeBases.Factory6.CFrame*CFrame.new(0,50,0)
  547. end)
  548.  
  549. UpgraderCframe.MouseButton1Down:connect(function()
  550. game.ReplicatedStorage.DestroyAll:InvokeServer()
  551. local Tycoon = workspace.Tycoons:FindFirstChild(tostring(game.Players.LocalPlayer.PlayerTycoon.Value))
  552. local PlaceItem = game.ReplicatedStorage.PlaceItem
  553. local placehere = CFrame.new(0, 2, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1) + Tycoon:FindFirstChild("Base").Position
  554. PlaceItem:InvokeServer("Basic Conveyor", placehere)
  555. wait(0.01)
  556. for i,v in pairs(game.Workspace.Tycoons:GetDescendants()) do
  557. if v.Name == "Big Bad Blaster" or v.Name == "Flaming Schrodinger" or v.Name == "Schrodinger Evaluator" or v.Name == "Super Schrodinger" or v.Name == "Ore Illuminator" or v.Name == "Ore Crane" or v.Name == "Portable Flamethrower" or v.Name == "Flaming Ore Scanner" or v.Name == "Chemical Refiner" or v.Name == "Pirate Cove" or v.Name == "Dragonglass Blaster" or v.Name == "Dragon Blaster" or v.Name == "Clover Blaster" or v.Name == "Hydra Blaster" or v.Name == "Aether Schrodinger" or v.Name == "Ore Indoctrinator" or v.Name == "Arcane Lightning" then
  558. v:Remove()
  559. end
  560. end
  561. for i,v in pairs(game.Workspace.Tycoons:GetDescendants()) do
  562. if v.Name == "Upgrade" then
  563. v.CFrame = game.Players.LocalPlayer.PlayerTycoon.Value["Basic Conveyor"].Hitbox.CFrame
  564. end
  565. end
  566. end)
  567.  
  568.  
  569. AutoRebirthOn.MouseButton1Down:connect(function()
  570. _G.BorkAutoRebirth = true
  571. if _G.FBorkAutoRebirth == true then
  572. _G.FBorkAutoRebirth = false
  573. while wait(1) do
  574. if _G.BorkAutoRebirth == true then
  575. game.ReplicatedStorage.Rebirth:InvokeServer()
  576. end
  577. end
  578. end
  579. end)
  580.  
  581. AutoRebirthOff.MouseButton1Down:connect(function()
  582. _G.BorkAutoRebirth = false
  583. end)
  584.  
  585.  
  586. RemoteClickerOn.MouseButton1Down:connect(function()
  587. _G.BorkRemoteClicker = true
  588. if _G.FBorkRemoteClicker == true then
  589. _G.FBorkRemoteClicker = false
  590. while wait(1) do
  591. if _G.BorkRemoteClicker == true then
  592. game.ReplicatedStorage.RemoteDrop:FireServer()
  593. end
  594. end
  595. end
  596. end)
  597.  
  598. RemoteClickerOff.MouseButton1Down:connect(function()
  599. _G.BorkRemoteClicker = false
  600. end)
  601.  
  602.  
  603. CrateSpamOn.MouseButton1Down:connect(function()
  604. for i,v in pairs(game.Workspace:GetDescendants()) do
  605. if v:IsA("Part") then
  606. game.ReplicatedStorage.FakeCrate:InvokeServer(v.CFrame)
  607. end
  608. end
  609. end)
  610.  
  611. CrateSpamOff.MouseButton1Down:connect(function()
  612. _G.BorkCrateSpam = false
  613. end)
  614.  
  615.  
  616. CrateTeleportOn.MouseButton1Down:connect(function()
  617. _G.BorkCrateTeleport = true
  618. if _G.FBorkCrateTeleport == true then
  619. _G.FBorkCrateTeleport = false
  620. while wait(1) do
  621. if _G.BorkCrateTeleport == true then
  622. for i,v in pairs(game.Workspace:GetChildren()) do
  623. if v.Name == "ResearchCrate" or v.Name == "CrystalCrate" or v.Name == "LuckyCrate" or v.Name == "ExecutiveCrate" or v.Name == "GiftCrate" or v.Name == "ShadowCrate" or v.Name == "GoldCrate" then
  624. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  625. end
  626. end
  627. for i,v in pairs(game.Workspace.Shadows:GetChildren()) do
  628. if v.Name == "ShadowCrate" then
  629. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  630. end
  631. end
  632. end
  633. end
  634. end
  635. end)
  636.  
  637. CrateTeleportOff.MouseButton1Down:connect(function()
  638. _G.BorkCrateTeleport = false
  639. end)
  640.  
  641.  
  642. BuyCrate.MouseButton1Down:connect(function()
  643. game.ReplicatedStorage.BuyItem:InvokeServer("Ore Zapper", 1)
  644. game.ReplicatedStorage.BuyItem:InvokeServer("Ore Winder", 1)
  645. game.ReplicatedStorage.BuyItem:InvokeServer("Ore Hoister", 1)
  646. game.ReplicatedStorage.BuyItem:InvokeServer("Rush Upgrader", 1)
  647. game.ReplicatedStorage.BuyItem:InvokeServer("Ore Recliner", 1)
  648. game.ReplicatedStorage.BuyItem:InvokeServer("Satellite Beam", 1)
  649. game.ReplicatedStorage.BuyItem:InvokeServer("Endpoint Refiner", 1)
  650. game.ReplicatedStorage.BuyItem:InvokeServer("Orbitable Upgrader", 1)
  651. game.ReplicatedStorage.BuyItem:InvokeServer("Portable Ore Stopper", 1)
  652. game.ReplicatedStorage.BuyItem:InvokeServer("Ore Steamer", 1)
  653. game.ReplicatedStorage.BuyItem:InvokeServer("Overhang Upgrader", 1)
  654. game.ReplicatedStorage.BuyItem:InvokeServer("Heat Condenser", 1)
  655. game.ReplicatedStorage.BuyItem:InvokeServer("Ore Recliner", 1)
  656. game.ReplicatedStorage.BuyItem:InvokeServer("Industrial Ore Welder", 1)
  657. game.ReplicatedStorage.BuyItem:InvokeServer("Portable Ore Enhancer", 1)
  658. game.ReplicatedStorage.BuyItem:InvokeServer("Drone Upgrader", 1)
  659. end)
  660.  
  661.  
  662. FacOwner.MouseButton1Down:connect(function()
  663. for i,v in pairs(game.Workspace.Tycoons:GetChildren()) do
  664. if v:IsA("Model") then
  665. if v:FindFirstChild("Owner") then
  666. if v.Owner.Value == "" then
  667. v.Owner.Value = "empty"
  668. end
  669. end
  670. end
  671. end
  672. for i,v in pairs(game.Workspace.Tycoons:GetChildren()) do
  673. if v:IsA("Model") then
  674. if v:FindFirstChild("Owner") then
  675. print(v.Name, v.Owner.Value)
  676. end
  677. end
  678. end
  679. end)
  680.  
  681.  
  682. Speed.MouseButton1Down:connect(function()
  683. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed + 10
  684. end)
  685.  
  686. Jump.MouseButton1Down:connect(function()
  687. game.Players.LocalPlayer.Character.Humanoid.JumpPower = game.Players.LocalPlayer.Character.Humanoid.JumpPower + 10
  688. end)
  689.  
  690.  
  691. Night.MouseButton1Down:connect(function()
  692. game.ReplicatedStorage.NightTime.Value = true
  693. end)
  694.  
  695. Day.MouseButton1Down:connect(function()
  696. game.ReplicatedStorage.NightTime.Value = false
  697. end)
  698.  
  699.  
  700. InfInfuseOn.MouseButton1Down:connect(function()
  701. _G.BorkInfInfuse = true
  702. if _G.FBorkInfInfuse == true then
  703. _G.FBorkInfInfuse = false
  704. while wait(1) do
  705. if _G.InfInfuse == true then
  706. while wait(0.25) do
  707. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  708. if v.Name == "Infusion" or v.Name == "2ndInfuse" then
  709. v:Remove()
  710. end
  711. end
  712. end
  713. end
  714. end
  715. end
  716. end)
  717.  
  718. CrateTeleportOff.MouseButton1Down:connect(function()
  719. _G.BorkCrateTeleport = false
  720. end)
Advertisement
Add Comment
Please, Sign In to add comment