Advertisement
Anonymouse10101

Miner Haven (GUI)

Apr 25th, 2019
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 27.11 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local MenuFrame = Instance.new("Frame")
  3. local MenuTitlebar = Instance.new("Frame")
  4. local TitleMenu = Instance.new("TextLabel")
  5. local Utilities = Instance.new("TextButton")
  6. local AutoSetup = Instance.new("TextButton")
  7. local HideMenu = Instance.new("TextButton")
  8. local OreBoost = Instance.new("TextButton")
  9. local Util = Instance.new("Frame")
  10. local UtilitiesTitlebar = Instance.new("Frame")
  11. local BackMenuU = Instance.new("TextButton")
  12. local TextLabel = Instance.new("TextLabel")
  13. local AutoRebirth = Instance.new("TextButton")
  14. local GrabCrates = Instance.new("TextButton")
  15. local GrabMM = Instance.new("TextButton")
  16. local TTokens = Instance.new("TextButton")
  17. local CTokens = Instance.new("TextButton")
  18. local MSpeed = Instance.new("TextButton")
  19. local JPower = Instance.new("TextButton")
  20. local RemoteOn = Instance.new("TextButton")
  21. local RemoteOff = Instance.new("TextButton")
  22. local OBoost = Instance.new("Frame")
  23. local BoostTitlebar = Instance.new("Frame")
  24. local BackMenuB = Instance.new("TextButton")
  25. local AutoLayout = Instance.new("TextButton")
  26. local OreBoost_2 = Instance.new("TextButton")
  27. local TextLabel_2 = Instance.new("TextLabel")
  28. local TextBox = Instance.new("TextBox")
  29. local OpenMenu = Instance.new("TextButton")
  30. local ASetup = Instance.new("Frame")
  31. local SetupTitlebar = Instance.new("Frame")
  32. local BackMenuS = Instance.new("TextButton")
  33. local CatalyzedStar = Instance.new("TextButton")
  34. local NeutronStar = Instance.new("TextButton")
  35. local MorningStar = Instance.new("TextButton")
  36. local TextLabel_3 = Instance.new("TextLabel")
  37.  
  38. ScreenGui.Parent = game.CoreGui
  39.  
  40. MenuFrame.Name = "MenuFrame"
  41. MenuFrame.Parent = ScreenGui
  42. MenuFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  43. MenuFrame.BorderSizePixel = 0
  44. MenuFrame.Position = UDim2.new(0.85852313, 0, 0.180689663, 0)
  45. MenuFrame.Size = UDim2.new(0, 202, 0, 239)
  46. MenuFrame.SizeConstraint = Enum.SizeConstraint.RelativeYY
  47. MenuFrame.Style = Enum.FrameStyle.RobloxSquare
  48. MenuFrame.Visible = false
  49.  
  50. MenuTitlebar.Name = "MenuTitlebar"
  51. MenuTitlebar.Parent = MenuFrame
  52. MenuTitlebar.BackgroundColor3 = Color3.new(1, 1, 1)
  53. MenuTitlebar.Position = UDim2.new(-0.0420792066, 0, -0.0334728025, 0)
  54. MenuTitlebar.Size = UDim2.new(0, 201, 0, 51)
  55. MenuTitlebar.Style = Enum.FrameStyle.RobloxSquare
  56.  
  57. TitleMenu.Name = "TitleMenu"
  58. TitleMenu.Parent = MenuFrame
  59. TitleMenu.BackgroundColor3 = Color3.new(1, 1, 1)
  60. TitleMenu.BackgroundTransparency = 1
  61. TitleMenu.Position = UDim2.new(-0.0396039598, 0, -0.0292887036, 0)
  62. TitleMenu.Size = UDim2.new(0, 202, 0, 51)
  63. TitleMenu.Font = Enum.Font.SourceSans
  64. TitleMenu.Text = "Masters Collection Menu"
  65. TitleMenu.TextColor3 = Color3.new(1, 1, 1)
  66. TitleMenu.TextSize = 20
  67.  
  68. Utilities.Name = "Utilities"
  69. Utilities.Parent = MenuFrame
  70. Utilities.BackgroundColor3 = Color3.new(1, 1, 1)
  71. Utilities.Position = UDim2.new(0.0990099013, 0, 0.252595186, 0)
  72. Utilities.Size = UDim2.new(0, 148, 0, 37)
  73. Utilities.Style = Enum.ButtonStyle.RobloxRoundButton
  74. Utilities.Font = Enum.Font.SourceSans
  75. Utilities.Text = "Utilities"
  76. Utilities.TextSize = 14
  77. Utilities.MouseButton1Click:connect(function()
  78. MenuFrame.Visible = false
  79. Util.Visible = true
  80. end)
  81.  
  82. AutoSetup.Name = "AutoSetup"
  83. AutoSetup.Parent = MenuFrame
  84. AutoSetup.BackgroundColor3 = Color3.new(1, 1, 1)
  85. AutoSetup.Position = UDim2.new(0.0990099013, 0, 0.465043187, 0)
  86. AutoSetup.Size = UDim2.new(0, 148, 0, 37)
  87. AutoSetup.Style = Enum.ButtonStyle.RobloxRoundButton
  88. AutoSetup.Font = Enum.Font.SourceSans
  89. AutoSetup.Text = "Auto Setup"
  90. AutoSetup.TextSize = 14
  91. AutoSetup.MouseButton1Click:connect(function()
  92. MenuFrame.Visible = false
  93. ASetup.Visible = true
  94. end)
  95.  
  96. HideMenu.Name = "HideMenu"
  97. HideMenu.Parent = MenuFrame
  98. HideMenu.BackgroundColor3 = Color3.new(1, 1, 1)
  99. HideMenu.BackgroundTransparency = 1
  100. HideMenu.Position = UDim2.new(0.742574275, 0, 0.927824259, 0)
  101. HideMenu.Size = UDim2.new(0, 69, 0, 17)
  102. HideMenu.Font = Enum.Font.SourceSans
  103. HideMenu.Text = "Hide"
  104. HideMenu.TextColor3 = Color3.new(1, 1, 1)
  105. HideMenu.TextSize = 14
  106. HideMenu.MouseButton1Click:connect(function()
  107. MenuFrame.Visible = false
  108. OpenMenu.Visible = true
  109. end)
  110.  
  111. OreBoost.Name = "OreBoost"
  112. OreBoost.Parent = MenuFrame
  113. OreBoost.BackgroundColor3 = Color3.new(1, 1, 1)
  114. OreBoost.Position = UDim2.new(0.0990099013, 0, 0.670064151, 0)
  115. OreBoost.Size = UDim2.new(0, 148, 0, 37)
  116. OreBoost.Style = Enum.ButtonStyle.RobloxRoundButton
  117. OreBoost.Font = Enum.Font.SourceSans
  118. OreBoost.Text = "Ore Booster"
  119. OreBoost.TextSize = 14
  120. OreBoost.MouseButton1Click:connect(function()
  121. MenuFrame.Visible = false
  122. OBoost.Visible = true
  123. end)
  124.  
  125. Util.Name = "Util"
  126. Util.Parent = ScreenGui
  127. Util.BackgroundColor3 = Color3.new(1, 1, 1)
  128. Util.Position = UDim2.new(0.857142806, 0, 0.183448285, 0)
  129. Util.Size = UDim2.new(0, 202, 0, 239)
  130. Util.Visible = false
  131. Util.Style = Enum.FrameStyle.RobloxSquare
  132.  
  133. UtilitiesTitlebar.Name = "UtilitiesTitlebar"
  134. UtilitiesTitlebar.Parent = Util
  135. UtilitiesTitlebar.BackgroundColor3 = Color3.new(1, 1, 1)
  136. UtilitiesTitlebar.Position = UDim2.new(-0.0445544571, 0, -0.0376569033, 0)
  137. UtilitiesTitlebar.Size = UDim2.new(0, 201, 0, 51)
  138. UtilitiesTitlebar.Style = Enum.FrameStyle.RobloxSquare
  139.  
  140. BackMenuU.Name = "BackMenuU"
  141. BackMenuU.Parent = Util
  142. BackMenuU.BackgroundColor3 = Color3.new(1, 1, 1)
  143. BackMenuU.BackgroundTransparency = 1
  144. BackMenuU.Position = UDim2.new(0.742574275, 0, 0.927824259, 0)
  145. BackMenuU.Size = UDim2.new(0, 69, 0, 17)
  146. BackMenuU.Font = Enum.Font.SourceSans
  147. BackMenuU.Text = "Back"
  148. BackMenuU.TextColor3 = Color3.new(1, 1, 1)
  149. BackMenuU.TextSize = 14
  150. BackMenuU.MouseButton1Click:connect(function()
  151. Util.Visible = false
  152. MenuFrame.Visible = true
  153. end)
  154.  
  155. TextLabel.Parent = Util
  156. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  157. TextLabel.BackgroundTransparency = 1
  158. TextLabel.Position = UDim2.new(-0.0396039598, 0, -0.0251046028, 0)
  159. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  160. TextLabel.Font = Enum.Font.SourceSans
  161. TextLabel.Text = "Utilities"
  162. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  163. TextLabel.TextSize = 24
  164.  
  165. AutoRebirth.Name = "AutoRebirth"
  166. AutoRebirth.Parent = Util
  167. AutoRebirth.BackgroundColor3 = Color3.new(1, 1, 1)
  168. AutoRebirth.Position = UDim2.new(0.0148514882, 0, 0.22594142, 0)
  169. AutoRebirth.Size = UDim2.new(0, 83, 0, 23)
  170. AutoRebirth.Style = Enum.ButtonStyle.RobloxRoundButton
  171. AutoRebirth.Font = Enum.Font.SourceSans
  172. AutoRebirth.Text = "Auto Rebirth"
  173. AutoRebirth.TextSize = 14
  174. AutoRebirth.MouseButton1Click:connect(function()
  175. while true do
  176. game.ReplicatedStorage.Rebirth:InvokeServer()
  177. wait(0.1)
  178. end
  179. end)
  180.  
  181. GrabCrates.Name = "GrabCrates"
  182. GrabCrates.Parent = Util
  183. GrabCrates.BackgroundColor3 = Color3.new(1, 1, 1)
  184. GrabCrates.Position = UDim2.new(0.544554472, 0, 0.22594142, 0)
  185. GrabCrates.Size = UDim2.new(0, 83, 0, 23)
  186. GrabCrates.Style = Enum.ButtonStyle.RobloxRoundButton
  187. GrabCrates.Font = Enum.Font.SourceSans
  188. GrabCrates.Text = "GrabCrates"
  189. GrabCrates.TextSize = 14
  190. GrabCrates.MouseButton1Click:connect(function()
  191. while wait() do
  192. while wait(2) do
  193. for _,v in pairs(game.Workspace:GetChildren()) do
  194. if string.match(v.Name, "DiamondCrate") or string.match(v.Name, "ResearchCrate") or string.match(v.Name, "GoldenCrate") or string.match(v.Name, "CrystalCrate") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "MegaPumpkin") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "LuckyCrate") or string.match(v.Name, "ExecutiveCrate") or string.match(v.Name, "GiftCrate") or string.match(v.Name, "ShadowCrate")then
  195. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
  196. v.CanCollide = false
  197. v.Transparency = 1
  198. for _,v in pairs(game.Workspace.Shadows:GetChildren()) do
  199. if string.match(v.Name, "ShadowCrate") or string.match(v.Name, "MegaPumpkin") then
  200. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
  201. v.CanCollide = false
  202. v.Transparency = 1
  203. end
  204. end
  205. end
  206. end
  207. end
  208. end
  209. end)
  210.  
  211. GrabMM.Name = "GrabMM"
  212. GrabMM.Parent = Util
  213. GrabMM.BackgroundColor3 = Color3.new(1, 1, 1)
  214. GrabMM.Position = UDim2.new(0.0198019929, 0, 0.364016712, 0)
  215. GrabMM.Size = UDim2.new(0, 83, 0, 23)
  216. GrabMM.Style = Enum.ButtonStyle.RobloxRoundButton
  217. GrabMM.Font = Enum.Font.SourceSans
  218. GrabMM.Text = "Grab MM"
  219. GrabMM.TextSize = 14
  220. GrabMM.MouseButton1Click:connect(function()
  221. thing = game.Workspace.Market.Hitfox
  222. thing.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  223. thing.Transparency = 0
  224. thing.BrickColor = BrickColor.new(255,0,100)
  225. tell = Instance.new("SurfaceGui",thing)
  226. tell2 = Instance.new("TextLabel",tell)
  227. tell2.Size = UDim2.new(0, 800, 0, 750)
  228. tell2.TextWrapped= true
  229. tell2.TextScaled = true
  230. tell2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  231. tell2.TextColor3 = Color3.fromRGB(255, 255, 255)
  232. tell2.Text =  "Click Me!"
  233. end)
  234.  
  235. TTokens.Name = "TTokens"
  236. TTokens.Parent = Util
  237. TTokens.BackgroundColor3 = Color3.new(1, 1, 1)
  238. TTokens.Position = UDim2.new(0.544554472, 0, 0.364016712, 0)
  239. TTokens.Size = UDim2.new(0, 83, 0, 23)
  240. TTokens.Style = Enum.ButtonStyle.RobloxRoundButton
  241. TTokens.Font = Enum.Font.SourceSans
  242. TTokens.Text = "Twitch Tokens"
  243. TTokens.TextSize = 14
  244. TTokens.MouseButton1Click:connect(function()
  245. while wait() do
  246. while wait(1) do
  247. game.Players.LocalPlayer.TwitchPoints.Value = game.Players.LocalPlayer.TwitchPoints.Value +50
  248. end
  249. end
  250. end)
  251.  
  252. CTokens.Name = "CTokens"
  253. CTokens.Parent = Util
  254. CTokens.BackgroundColor3 = Color3.new(1, 1, 1)
  255. CTokens.Position = UDim2.new(0.0198019929, 0, 0.497907937, 0)
  256. CTokens.Size = UDim2.new(0, 83, 0, 23)
  257. CTokens.Style = Enum.ButtonStyle.RobloxRoundButton
  258. CTokens.Font = Enum.Font.SourceSans
  259. CTokens.Text = "Clover Tokens"
  260. CTokens.TextSize = 14
  261. CTokens.MouseButton1Click:connect(function()
  262. while wait() do
  263. while wait(1) do
  264. game.Players.LocalPlayer.Clovers.Value = game.Players.LocalPlayer.Clovers.Value +50
  265. end
  266. end
  267. end)
  268.  
  269. MSpeed.Name = "MSpeed"
  270. MSpeed.Parent = Util
  271. MSpeed.BackgroundColor3 = Color3.new(1, 1, 1)
  272. MSpeed.Position = UDim2.new(0.544554472, 0, 0.497907937, 0)
  273. MSpeed.Size = UDim2.new(0, 83, 0, 23)
  274. MSpeed.Style = Enum.ButtonStyle.RobloxRoundButton
  275. MSpeed.Font = Enum.Font.SourceSans
  276. MSpeed.Text = "Walk Speed"
  277. MSpeed.TextSize = 14
  278. MSpeed.MouseButton1Click:connect(function()
  279. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 80
  280. end)
  281.  
  282. JPower.Name = "JPower"
  283. JPower.Parent = Util
  284. JPower.BackgroundColor3 = Color3.new(1, 1, 1)
  285. JPower.Position = UDim2.new(0.0198019929, 0, 0.631799161, 0)
  286. JPower.Size = UDim2.new(0, 83, 0, 23)
  287. JPower.Style = Enum.ButtonStyle.RobloxRoundButton
  288. JPower.Font = Enum.Font.SourceSans
  289. JPower.Text = "Jump Power"
  290. JPower.TextSize = 14
  291. JPower.MouseButton1Click:connect(function()
  292. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 180
  293. end)
  294.  
  295. RemoteOn.Name = "RemoteOn"
  296. RemoteOn.Parent = Util
  297. RemoteOn.BackgroundColor3 = Color3.new(1, 1, 1)
  298. RemoteOn.Position = UDim2.new(0.544554472, 0, 0.631799161, 0)
  299. RemoteOn.Size = UDim2.new(0, 83, 0, 23)
  300. RemoteOn.Style = Enum.ButtonStyle.RobloxRoundButton
  301. RemoteOn.Font = Enum.Font.SourceSans
  302. RemoteOn.Text = "Remote On"
  303. RemoteOn.TextSize = 14
  304. RemoteOn.MouseButton1Click:connect(function()
  305. x = 1;
  306. while(x>0) do
  307. wait (0.3)
  308. game.ReplicatedStorage.RemoteDrop:FireServer()
  309. end
  310. end)
  311.  
  312. RemoteOff.Name = "RemoteOff"
  313. RemoteOff.Parent = Util
  314. RemoteOff.BackgroundColor3 = Color3.new(1, 1, 1)
  315. RemoteOff.Position = UDim2.new(0.544554472, 0, 0.753138065, 0)
  316. RemoteOff.Size = UDim2.new(0, 83, 0, 23)
  317. RemoteOff.Style = Enum.ButtonStyle.RobloxRoundButton
  318. RemoteOff.Font = Enum.Font.SourceSans
  319. RemoteOff.Text = "Remote Off"
  320. RemoteOff.TextSize = 14
  321. RemoteOff.MouseButton1Click:connect(function()
  322. x = 0;
  323. end)
  324.  
  325. OBoost.Name = "OBoost"
  326. OBoost.Parent = ScreenGui
  327. OBoost.BackgroundColor3 = Color3.new(1, 1, 1)
  328. OBoost.Position = UDim2.new(0.856797814, 0, 0.180689663, 0)
  329. OBoost.Size = UDim2.new(0, 202, 0, 239)
  330. OBoost.Visible = false
  331. OBoost.Style = Enum.FrameStyle.RobloxSquare
  332.  
  333. BoostTitlebar.Name = "BoostTitlebar"
  334. BoostTitlebar.Parent = OBoost
  335. BoostTitlebar.BackgroundColor3 = Color3.new(1, 1, 1)
  336. BoostTitlebar.Position = UDim2.new(-0.0445544571, 0, -0.0376569033, 0)
  337. BoostTitlebar.Size = UDim2.new(0, 201, 0, 51)
  338. BoostTitlebar.Style = Enum.FrameStyle.RobloxSquare
  339.  
  340. BackMenuB.Name = "BackMenuB"
  341. BackMenuB.Parent = OBoost
  342. BackMenuB.BackgroundColor3 = Color3.new(1, 1, 1)
  343. BackMenuB.BackgroundTransparency = 1
  344. BackMenuB.Position = UDim2.new(0.742574275, 0, 0.927824259, 0)
  345. BackMenuB.Size = UDim2.new(0, 69, 0, 17)
  346. BackMenuB.Font = Enum.Font.SourceSans
  347. BackMenuB.Text = "Back"
  348. BackMenuB.TextColor3 = Color3.new(1, 1, 1)
  349. BackMenuB.TextSize = 14
  350. BackMenuB.MouseButton1Click:connect(function()
  351. OBoost.Visible = false
  352. MenuFrame.Visible = true
  353. end)
  354.  
  355. AutoLayout.Name = "AutoLayout"
  356. AutoLayout.Parent = OBoost
  357. AutoLayout.BackgroundColor3 = Color3.new(1, 1, 1)
  358. AutoLayout.Position = UDim2.new(0.103960395, 0, 0.684708416, 0)
  359. AutoLayout.Size = UDim2.new(0, 148, 0, 37)
  360. AutoLayout.Style = Enum.ButtonStyle.RobloxRoundButton
  361. AutoLayout.Font = Enum.Font.SourceSans
  362. AutoLayout.Text = "Auto Load Layout 1: OFF"
  363. AutoLayout.TextSize = 14
  364.  
  365. local autoload1 = false
  366. AutoLayout.MouseButton1Click:connect(function()
  367. if autoload1 == false then
  368. autoload1 = true
  369. AutoLayout.Text = "Auto Load Layout 1: ON"
  370. else
  371. autoload1 = false
  372. AutoLayout.Text = "Auto Load Layout 1: OFF"
  373. end
  374. end)
  375.  
  376. spawn(function()
  377. while true do
  378. wait()
  379. if autoload1 == true then
  380. game.Players.LocalPlayer.PlayerGui.GUI.Menu.Menu.Sounds.Message.Volume = 0
  381. game.Players.LocalPlayer.PlayerGui.GUI.Notifications.Visible = false
  382. game.ReplicatedStorage.Layouts:InvokeServer("Load","Layout1")
  383. else
  384. game.Players.LocalPlayer.PlayerGui.GUI.Menu.Menu.Sounds.Message.Volume = 0.5
  385. game.Players.LocalPlayer.PlayerGui.GUI.Notifications.Visible = true
  386. end
  387. end
  388. end)
  389.  
  390. TextBox.Parent = OBoost
  391. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  392. TextBox.Position = UDim2.new(0.103960402, 0, 0.22594142, 0)
  393. TextBox.Size = UDim2.new(0, 148, 0, 54)
  394. TextBox.Font = Enum.Font.SourceSans
  395. TextBox.Text = "Enter Mine Name, Case Sensitive: E.g. Basic Iron Mine"
  396. TextBox.TextScaled = true
  397. TextBox.TextSize = 14
  398. TextBox.TextWrapped = true
  399.  
  400. OreBoost_2.Name = "OreBoost"
  401. OreBoost_2.Parent = OBoost
  402. OreBoost_2.BackgroundColor3 = Color3.new(1, 1, 1)
  403. OreBoost_2.Position = UDim2.new(0.101485148, 0, 0.49318096, 0)
  404. OreBoost_2.Size = UDim2.new(0, 148, 0, 37)
  405. OreBoost_2.Style = Enum.ButtonStyle.RobloxRoundButton
  406. OreBoost_2.Font = Enum.Font.SourceSans
  407. OreBoost_2.Text = "Boost Ore: OFF"
  408. OreBoost_2.TextSize = 14
  409.  
  410. local oreboost = false
  411. OreBoost_2.MouseButton1Click:connect(function()
  412. if oreboost == false then
  413. oreboost = true
  414. OreBoost_2.Text = "Boost Ore: ON"
  415. else
  416. oreboost = false
  417. OreBoost_2.Text = "Boost Ore: OFF"
  418. end
  419. end)
  420.  
  421. spawn(function()
  422. while true do
  423. wait()
  424. if oreboost == true then
  425. local tyc = workspace.Tycoons:GetChildren()
  426. for i=1,#tyc do
  427. local basepart = tyc[i]:GetChildren()
  428. for i=1,#basepart do
  429. if basepart[i].ClassName == "Model" then
  430. if basepart[i].Model:findFirstChild("Upgrade") then
  431. if basepart[i].Model.Upgrade:findFirstChild("Cloned") then
  432. else
  433. local decoy = basepart[i].Model.Upgrade:Clone()
  434. decoy.Parent = basepart[i].Model
  435. decoy.Name = "UpgradeDecoy"
  436. local tag = Instance.new("StringValue",basepart[i].Model.Upgrade)
  437. tag.Name = "Cloned"
  438. local deco = basepart[i].Model.Upgrade:GetChildren()
  439. for i=1,#deco do
  440. if deco[i].ClassName == "ParticleEmitter" then
  441. deco[i]:remove()
  442. end
  443. if deco[i].Name == "Mesh" then
  444. deco[i]:remove()
  445. end
  446. if deco[i].Name == "Smoke" then
  447. deco[i]:remove()
  448. end
  449. if deco[i].Name == "Fire" then
  450. deco[i]:remove()
  451. end
  452. end
  453. if basepart[i].Model.Upgrade:findFirstChild("Error") then
  454. basepart[i].Model.Upgrade.Error.Volume = 0
  455. end
  456. basepart[i].Model.Upgrade.Transparency = 1
  457. basepart[i].Model.Upgrade.Size = Vector3.new(5,5,5)
  458. basepart[i].Model.Upgrade.CFrame = CFrame.new(workspace.Tycoons[tostring(game.Players.LocalPlayer.PlayerTycoon.Value)][TextBox.Text].Model.Drop.Position)
  459. end
  460. end
  461. end
  462. end
  463. end
  464. end
  465. end
  466. end)
  467.  
  468. TextLabel_2.Parent = OBoost
  469. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  470. TextLabel_2.BackgroundTransparency = 1
  471. TextLabel_2.Position = UDim2.new(-0.0247524753, 0, -0.0292887036, 0)
  472. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  473. TextLabel_2.Font = Enum.Font.SourceSans
  474. TextLabel_2.Text = "Ore Booster"
  475. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  476. TextLabel_2.TextSize = 24
  477.  
  478. OpenMenu.Name = "OpenMenu"
  479. OpenMenu.Parent = ScreenGui
  480. OpenMenu.BackgroundColor3 = Color3.new(1, 1, 1)
  481. OpenMenu.Position = UDim2.new(0.473775059, 0, 0.79724133, 0)
  482. OpenMenu.Size = UDim2.new(0, 76, 0, 31)
  483. OpenMenu.Style = Enum.ButtonStyle.RobloxRoundButton
  484. OpenMenu.Font = Enum.Font.SourceSans
  485. OpenMenu.Text = "Open"
  486. OpenMenu.TextSize = 14
  487. OpenMenu.MouseButton1Click:connect(function()
  488. MenuFrame.Visible = true
  489. OpenMenu.Visible = false
  490. end)
  491.  
  492. ASetup.Name = "ASetup"
  493. ASetup.Parent = ScreenGui
  494. ASetup.BackgroundColor3 = Color3.new(1, 1, 1)
  495. ASetup.Position = UDim2.new(0.858078897, 0, 0.182611465, 0)
  496. ASetup.Size = UDim2.new(0, 202, 0, 239)
  497. ASetup.Visible = false
  498. ASetup.Style = Enum.FrameStyle.RobloxSquare
  499.  
  500. SetupTitlebar.Name = "SetupTitlebar"
  501. SetupTitlebar.Parent = ASetup
  502. SetupTitlebar.BackgroundColor3 = Color3.new(1, 1, 1)
  503. SetupTitlebar.Position = UDim2.new(-0.0445544571, 0, -0.0376569033, 0)
  504. SetupTitlebar.Size = UDim2.new(0, 201, 0, 51)
  505. SetupTitlebar.Style = Enum.FrameStyle.RobloxSquare
  506.  
  507. BackMenuS.Name = "BackMenuS"
  508. BackMenuS.Parent = ASetup
  509. BackMenuS.BackgroundColor3 = Color3.new(1, 1, 1)
  510. BackMenuS.BackgroundTransparency = 1
  511. BackMenuS.Position = UDim2.new(0.742574275, 0, 0.927824259, 0)
  512. BackMenuS.Size = UDim2.new(0, 69, 0, 17)
  513. BackMenuS.Font = Enum.Font.SourceSans
  514. BackMenuS.Text = "Back"
  515. BackMenuS.TextColor3 = Color3.new(1, 1, 1)
  516. BackMenuS.TextSize = 14
  517. BackMenuS.MouseButton1Click:connect(function()
  518. ASetup.Visible = false
  519. MenuFrame.Visible = true
  520. end)
  521.  
  522. CatalyzedStar.Name = "CatalyzedStar"
  523. CatalyzedStar.Parent = ASetup
  524. CatalyzedStar.BackgroundColor3 = Color3.new(1, 1, 1)
  525. CatalyzedStar.Position = UDim2.new(0.0990099013, 0, 0.438787639, 0)
  526. CatalyzedStar.Size = UDim2.new(0, 148, 0, 37)
  527. CatalyzedStar.Style = Enum.ButtonStyle.RobloxRoundButton
  528. CatalyzedStar.Font = Enum.Font.SourceSans
  529. CatalyzedStar.Text = "Catalyzed Star"
  530. CatalyzedStar.TextSize = 14
  531. CatalyzedStar.MouseButton1Click:connect(function()
  532. local function A()
  533. wait(0.5)
  534.  
  535. game.ReplicatedStorage.PlaceItem:InvokeServer("Symmetryte Mine", CFrame.new(-97.5, 206.799988, 194, -2.90066708e-07, 0, -1, 0, 1, 0, 1, 0, -2.90066708e-07))
  536. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-97.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  537. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-91.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  538. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-85.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  539. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-79.5, 202.299988, 209, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  540. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-79.5, 202.299988, 215, 1.3907092e-07, 0, 1, 0, 1, 0, -1, 0, 1.3907092e-07))
  541. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-73.5, 202.299988, 215, -1, 0, -2.38497613e-08, 0, 1, 0, 2.38497613e-08, 0, -1))
  542. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-73.5, 202.299988, 209, -2.90066708e-07, 0, -1, 0, 1, 0, 1, 0, -2.90066708e-07))
  543. game.ReplicatedStorage.PlaceItem:InvokeServer("Catalyzed Star", CFrame.new(-43.5, 205.299988, 179, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  544. game.ReplicatedStorage.PlaceItem:InvokeServer("The Final Upgrader", CFrame.new(-45, 205.299988, 198.5, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  545. game.ReplicatedStorage.PlaceItem:InvokeServer("Sakura Garden", CFrame.new(-43.5, 206.799988, 219.5, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  546.  
  547. local player = game:GetService'Players'.LocalPlayer
  548.  local factorye = player.PlayerTycoon.Value
  549. local Factory = tostring(factorye)
  550. -- if you'd like to change the upgrader this goes through, go ahead and change it below
  551. thing = game.Workspace.Tycoons[Factory]["Catalyzed Star"].Hitbox
  552.  
  553. --1200 is the default amount of times this will run, feel free to change it to whatever you want!
  554. for i = 1,1000 do wait(1.5)
  555. for i,v in pairs(game.Workspace.DroppedParts[Factory]:getChildren()) do
  556.     local p= CFrame.new(thing.Position.x, thing.Position.y, thing.Position.z)
  557. v.CFrame = p
  558. end
  559. end
  560. end
  561.  
  562. A()
  563.  
  564. spawn(function()
  565. while wait(0.1)do
  566.     game:GetService'ReplicatedStorage'.RemoteDrop:FireServer()
  567. end
  568. end)
  569. spawn(function()
  570. while wait(1)do
  571.     local Ea = game:GetService'ReplicatedStorage'.Rebirth:InvokeServer()
  572.     if Ea == true then
  573.     wait(3)
  574.         A()
  575.     end
  576. end
  577. end)
  578. end)
  579.  
  580. NeutronStar.Name = "NeutronStar"
  581. NeutronStar.Parent = ASetup
  582. NeutronStar.BackgroundColor3 = Color3.new(1, 1, 1)
  583. NeutronStar.Position = UDim2.new(0.0990099013, 0, 0.634499252, 0)
  584. NeutronStar.Size = UDim2.new(0, 148, 0, 37)
  585. NeutronStar.Style = Enum.ButtonStyle.RobloxRoundButton
  586. NeutronStar.Font = Enum.Font.SourceSans
  587. NeutronStar.Text = "Neutron Star"
  588. NeutronStar.TextSize = 14
  589. NeutronStar.MouseButton1Click:connect(function()
  590. local function A()
  591. wait(0.5)
  592.  
  593. game.ReplicatedStorage.PlaceItem:InvokeServer("Symmetryte Mine", CFrame.new(-97.5, 206.799988, 194, -2.90066708e-07, 0, -1, 0, 1, 0, 1, 0, -2.90066708e-07))
  594. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-97.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  595. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-91.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  596. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-85.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  597. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-79.5, 202.299988, 209, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  598. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-79.5, 202.299988, 215, 1.3907092e-07, 0, 1, 0, 1, 0, -1, 0, 1.3907092e-07))
  599. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-73.5, 202.299988, 215, -1, 0, -2.38497613e-08, 0, 1, 0, 2.38497613e-08, 0, -1))
  600. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-73.5, 202.299988, 209, -2.90066708e-07, 0, -1, 0, 1, 0, 1, 0, -2.90066708e-07))
  601. game.ReplicatedStorage.PlaceItem:InvokeServer("Neutron Star", CFrame.new(-43.5, 206.799988, 182, -1, 0, -2.38497613e-08, 0, 1, 0, 2.38497613e-08, 0, -1))
  602. game.ReplicatedStorage.PlaceItem:InvokeServer("The Final Upgrader", CFrame.new(-45, 205.299988, 198.5, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  603. game.ReplicatedStorage.PlaceItem:InvokeServer("Sakura Garden", CFrame.new(-43.5, 206.799988, 219.5, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  604.  
  605. local player = game:GetService'Players'.LocalPlayer
  606. local factorye = player.PlayerTycoon.Value
  607. local Factory = tostring(factorye)
  608. -- if you'd like to change the upgrader this goes through, go ahead and change it below
  609. thing = game.Workspace.Tycoons[Factory]["Neutron Star"].Hitbox
  610.  
  611. --1200 is the default amount of times this will run, feel free to change it to whatever you want!
  612. for i = 1,1000 do wait(1.5)
  613.  for i,v in pairs(game.Workspace.DroppedParts[Factory]:getChildren()) do
  614.      local p= CFrame.new(thing.Position.x, thing.Position.y, thing.Position.z)
  615. v.CFrame = p
  616. end
  617. end
  618. end
  619.  
  620. A()
  621.  
  622. spawn(function()
  623.  while wait(0.1)do
  624.      game:GetService'ReplicatedStorage'.RemoteDrop:FireServer()
  625.  end
  626. end)
  627. spawn(function()
  628.  while wait(1)do
  629.      local Ea = game:GetService'ReplicatedStorage'.Rebirth:InvokeServer()
  630.      if Ea == true then
  631.      wait(3)
  632.          A()
  633.      end
  634.  end
  635. end)
  636. end)
  637.  
  638. MorningStar.Name = "MorningStar"
  639. MorningStar.Parent = ASetup
  640. MorningStar.BackgroundColor3 = Color3.new(1, 1, 1)
  641. MorningStar.Position = UDim2.new(0.0965346545, 0, 0.25468725, 0)
  642. MorningStar.Size = UDim2.new(0, 148, 0, 37)
  643. MorningStar.Style = Enum.ButtonStyle.RobloxRoundButton
  644. MorningStar.Font = Enum.Font.SourceSans
  645. MorningStar.Text = "Morning Star"
  646. MorningStar.TextSize = 14
  647. MorningStar.MouseButton1Click:connect(function()
  648. local function A()
  649. wait(0.5)
  650.  
  651. game.ReplicatedStorage.PlaceItem:InvokeServer("Symmetryte Mine", CFrame.new(-97.5, 206.799988, 194, -2.90066708e-07, 0, -1, 0, 1, 0, 1, 0, -2.90066708e-07))
  652. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-97.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  653. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-91.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  654. game.ReplicatedStorage.PlaceItem:InvokeServer("Discord Conveyor", CFrame.new(-85.5, 202.299988, 209, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08))
  655. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-79.5, 202.299988, 209, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  656. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-79.5, 202.299988, 215, 1.3907092e-07, 0, 1, 0, 1, 0, -1, 0, 1.3907092e-07))
  657. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-73.5, 202.299988, 215, -1, 0, -2.38497613e-08, 0, 1, 0, 2.38497613e-08, 0, -1))
  658. game.ReplicatedStorage.PlaceItem:InvokeServer("Basic Conveyor", CFrame.new(-73.5, 202.299988, 209, -2.90066708e-07, 0, -1, 0, 1, 0, 1, 0, -2.90066708e-07))
  659. game.ReplicatedStorage.PlaceItem:InvokeServer("Morning Star", CFrame.new(-43.5, 206.799988, 182, -1, 0, -2.38497613e-08, 0, 1, 0, 2.38497613e-08, 0, -1))
  660. game.ReplicatedStorage.PlaceItem:InvokeServer("The Final Upgrader", CFrame.new(-45, 205.299988, 198.5, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  661. game.ReplicatedStorage.PlaceItem:InvokeServer("Sakura Garden", CFrame.new(-43.5, 206.799988, 219.5, 1, 0, 1.74845553e-07, 0, 1, 0, -1.74845553e-07, 0, 1))
  662.  
  663. local player = game:GetService'Players'.LocalPlayer
  664.  local factorye = player.PlayerTycoon.Value
  665. local Factory = tostring(factorye)
  666. -- if you'd like to change the upgrader this goes through, go ahead and change it below
  667. thing = game.Workspace.Tycoons[Factory]["Morning Star"].Hitbox
  668.  
  669. --1000 is the default amount of times this will run, feel free to change it to whatever you want!
  670. for i = 1,1000 do wait(1.5)
  671. for i,v in pairs(game.Workspace.DroppedParts[Factory]:getChildren()) do
  672.     local p= CFrame.new(thing.Position.x, thing.Position.y, thing.Position.z)
  673. v.CFrame = p
  674. end
  675. end
  676. end
  677.  
  678. A()
  679.  
  680. spawn(function()
  681. while wait(0.1)do
  682.     game:GetService'ReplicatedStorage'.RemoteDrop:FireServer()
  683. end
  684. end)
  685. spawn(function()
  686. while wait(1)do
  687.     local Ea = game:GetService'ReplicatedStorage'.Rebirth:InvokeServer()
  688.     if Ea == true then
  689.     wait(3)
  690.         A()
  691.     end
  692. end
  693. end)
  694. end)
  695.  
  696. TextLabel_3.Parent = ASetup
  697. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  698. TextLabel_3.BackgroundTransparency = 1
  699. TextLabel_3.Position = UDim2.new(-0.0247524753, 0, -0.0292887036, 0)
  700. TextLabel_3.Size = UDim2.new(0, 200, 0, 50)
  701. TextLabel_3.Font = Enum.Font.SourceSans
  702. TextLabel_3.Text = "Auto Setup"
  703. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  704. TextLabel_3.TextSize = 24
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement