Scriptorz5

pet sim gUI

Nov 10th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.44 KB | None | 0 0
  1. -- Updated 11/9/2018 --
  2. -- Updated by https://v3rmillion.net/member.php?action=profile&uid=234837 --
  3.  
  4. -- Credit to https://v3rmillion.net/member.php?action=profile&uid=519098 --
  5.  
  6. FarmStart = false
  7. FarmArea = "none"
  8. WalkNumber = "1"
  9. JumpNumber = "1"
  10.  
  11. local petTable = {}
  12. local Try = 0
  13. local Amount = 0
  14.  
  15. local function PetTable()
  16. local Stats = workspace["__REMOTES"]["Core"]["Get Other Stats"]:InvokeServer()
  17. local Times = #Stats[game.Players.LocalPlayer.Name]["Save"]["Pets"]
  18. local Name = game:GetService("Players").LocalPlayer.Name
  19. petTable = {}
  20. Try = 0
  21. Amount = 0
  22. for i=1,Times do
  23. if(Stats[Name]["Save"]["Pets"][Times].e == true) then
  24. Amount = Amount + 1
  25. petTable[Amount] = {
  26. ["ID"] = tonumber(Stats[Name]["Save"]["Pets"][Times].id),
  27. ["LEVEL"] = tonumber(Stats[Name]["Save"]["Pets"][Times].l),
  28. }
  29. end
  30. Times = Times - 1
  31. end
  32. end
  33.  
  34. pcall(function()
  35. PetTable()
  36. end)
  37.  
  38. local MainGUI = Instance.new("ScreenGui")
  39. local TopFrame = Instance.new("Frame")
  40. local PSHeader = Instance.new("TextLabel")
  41. local ClosePS = Instance.new("TextButton")
  42. local StatsFrame = Instance.new("Frame")
  43. local FarmCoins = Instance.new("TextButton")
  44. local FarmFrame = Instance.new("Frame")
  45. local PowerTextInfo1 = Instance.new("TextLabel")
  46. local PowerText1 = Instance.new("TextLabel")
  47. local FarmPower = Instance.new("TextBox")
  48. local StartFarming = Instance.new("TextButton")
  49. local StartFarmingEarth = Instance.new("TextButton")
  50. local StartFarmingMoon = Instance.new("TextButton")
  51. local WalkSpeed = Instance.new("TextButton")
  52. local JumpPower = Instance.new("TextButton")
  53. local BuyScreen = Instance.new("TextButton")
  54. local BuyScreenFrame = Instance.new("Frame")
  55. local BuyPetTitle1 = Instance.new("TextLabel")
  56. local BuyPetTitle2 = Instance.new("TextLabel")
  57. local BuyPetTitle3 = Instance.new("TextLabel")
  58. local BuyPetAmount1 = Instance.new("TextLabel")
  59. local BuyPetAmount2 = Instance.new("TextBox")
  60. local BuyPetAmount3 = Instance.new("TextBox")
  61. local BuyPetTier1 = Instance.new("TextLabel")
  62. local BuyPetTier2 = Instance.new("TextBox")
  63. local BuyPetGo = Instance.new("TextButton")
  64. local BuyHatTitle1 = Instance.new("TextLabel")
  65. local BuyHatTitle2 = Instance.new("TextLabel")
  66. local BuyHatAmount1 = Instance.new("TextLabel")
  67. local BuyHatAmount2 = Instance.new("TextBox")
  68. local BuyHatTier1 = Instance.new("TextLabel")
  69. local BuyHatTier2 = Instance.new("TextBox")
  70. local BuyHatGo = Instance.new("TextButton")
  71. local Locations = Instance.new("TextButton")
  72. local Locations2 = Instance.new("TextButton")
  73. local MainFrame = Instance.new("Frame")
  74. local Stats = Instance.new("TextButton")
  75. local Spawn = Instance.new("TextButton")
  76. local Shop = Instance.new("TextButton")
  77. local Area2 = Instance.new("TextButton")
  78. local Area3 = Instance.new("TextButton")
  79. local Area4 = Instance.new("TextButton")
  80. local Area5 = Instance.new("TextButton")
  81. local Area6 = Instance.new("TextButton")
  82. local Area7 = Instance.new("TextButton")
  83. local Area8 = Instance.new("TextButton")
  84. local Area9 = Instance.new("TextButton")
  85. local Area10 = Instance.new("TextButton")
  86. local Area11 = Instance.new("TextButton")
  87. local Area12 = Instance.new("TextButton")
  88. local Rocket = Instance.new("TextButton")
  89. local CandyLand = Instance.new("TextButton")
  90. local CyborgLand = Instance.new("TextButton")
  91. local AreaDivider = Instance.new("TextLabel")
  92. local AllHealthLabel = Instance.new("TextLabel")
  93. local AllHealthMinLabel = Instance.new("TextLabel")
  94. local AllHealthMaxLabel = Instance.new("TextLabel")
  95. local AllHealthMin = Instance.new("TextBox")
  96. local AllHealthMax = Instance.new("TextBox")
  97. local EarthHealthLabel = Instance.new("TextLabel")
  98. local EarthHealthMinLabel = Instance.new("TextLabel")
  99. local EarthHealthMaxLabel = Instance.new("TextLabel")
  100. local EarthHealthMin = Instance.new("TextBox")
  101. local EarthHealthMax = Instance.new("TextBox")
  102. local MoonHealthLabel = Instance.new("TextLabel")
  103. local MoonHealthMinLabel = Instance.new("TextLabel")
  104. local MoonHealthMaxLabel = Instance.new("TextLabel")
  105. local MoonHealthMin = Instance.new("TextBox")
  106. local MoonHealthMax = Instance.new("TextBox")
  107. local TeleportScreen = Instance.new("TextButton")
  108.  
  109. MainGUI.Name = "MainGUI"
  110. MainGUI.Parent = game.CoreGui
  111. local MainCORE = game.CoreGui["MainGUI"]
  112.  
  113. TopFrame.Name = "TopFrame"
  114. TopFrame.Parent = MainGUI
  115. TopFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  116. TopFrame.BackgroundTransparency = 0
  117. TopFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  118. TopFrame.Active = true
  119. TopFrame.Selectable = true
  120. TopFrame.Draggable = true
  121. TopFrame.Visible = true
  122. TopFrame.Position = UDim2.new(1, -145, 0.5, -100)
  123. TopFrame.Size = UDim2.new(0, 140, 0, 30)
  124.  
  125. PSHeader.Name = "PSHeader"
  126. PSHeader.Parent = TopFrame
  127. PSHeader.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  128. PSHeader.BackgroundTransparency = 1
  129. PSHeader.BorderSizePixel = 0
  130. PSHeader.BorderColor3 = Color3.new(0, 0, 0)
  131. PSHeader.Position = UDim2.new(0, 5, 0, 5)
  132. PSHeader.Size = UDim2.new(0, 105, 0, 20)
  133. PSHeader.Font = Enum.Font.Fantasy
  134. PSHeader.Text = "Pet Simulator"
  135. PSHeader.TextColor3 = Color3.new(0, 0, 0)
  136. PSHeader.TextScaled = true
  137. PSHeader.TextSize = 17
  138.  
  139. ClosePS.Name = "ClosePS"
  140. ClosePS.Parent = TopFrame
  141. ClosePS.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  142. ClosePS.BorderColor3 = Color3.new(0, 0, 0)
  143. ClosePS.Position = UDim2.new(0, 115, 0, 5)
  144. ClosePS.Size = UDim2.new(0, 20, 0, 20)
  145. ClosePS.Font = Enum.Font.Fantasy
  146. ClosePS.Text = "X"
  147. ClosePS.TextColor3 = Color3.new(1, 0, 0)
  148. ClosePS.TextScaled = true
  149. ClosePS.TextSize = 17
  150.  
  151. MainFrame.Name = "MainFrame"
  152. MainFrame.Parent = TopFrame
  153. MainFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  154. MainFrame.BackgroundTransparency = 0
  155. MainFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  156. MainFrame.Position = UDim2.new(0, 0, 0, 30)
  157. MainFrame.Size = UDim2.new(0, 140, 0, 433)
  158. MainFrame.Visible = true
  159.  
  160. BuyScreen.Name = "BuyScreen"
  161. BuyScreen.Parent = MainFrame
  162. BuyScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  163. BuyScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  164. BuyScreen.Position = UDim2.new(0, 5, 0, 5)
  165. BuyScreen.Size = UDim2.new(0, 60, 0, 25)
  166. BuyScreen.Font = Enum.Font.Fantasy
  167. BuyScreen.TextColor3 = Color3.new(1, 1, 1)
  168. BuyScreen.Text = "SHOP"
  169. BuyScreen.TextSize = 17
  170. BuyScreen.TextWrapped = true
  171.  
  172. FarmCoins.Name = "FarmCoins"
  173. FarmCoins.Parent = MainFrame
  174. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  175. FarmCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  176. FarmCoins.Position = UDim2.new(0, 75, 0, 5)
  177. FarmCoins.Size = UDim2.new(0, 60, 0, 25)
  178. FarmCoins.Font = Enum.Font.Fantasy
  179. FarmCoins.TextColor3 = Color3.new(1, 1, 1)
  180. FarmCoins.Text = "FARM"
  181. FarmCoins.TextSize = 17
  182. FarmCoins.TextWrapped = true
  183.  
  184. WalkSpeed.Name = "WalkSpeed"
  185. WalkSpeed.Parent = MainFrame
  186. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  187. WalkSpeed.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  188. WalkSpeed.Position = UDim2.new(0, 5, 0, 40)
  189. WalkSpeed.Size = UDim2.new(0, 60, 0, 25)
  190. WalkSpeed.Font = Enum.Font.Fantasy
  191. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  192. WalkSpeed.Text = "Walk:1"
  193. WalkSpeed.TextSize = 17
  194. WalkSpeed.TextWrapped = true
  195.  
  196. JumpPower.Name = "JumpPower"
  197. JumpPower.Parent = MainFrame
  198. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  199. JumpPower.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  200. JumpPower.Position = UDim2.new(0, 75, 0, 40)
  201. JumpPower.Size = UDim2.new(0, 60, 0, 25)
  202. JumpPower.Font = Enum.Font.Fantasy
  203. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  204. JumpPower.Text = "Jump:1"
  205. JumpPower.TextSize = 17
  206. JumpPower.TextWrapped = true
  207.  
  208. TeleportScreen.Name = "TeleportScreen"
  209. TeleportScreen.Parent = MainFrame
  210. TeleportScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  211. TeleportScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  212. TeleportScreen.Position = UDim2.new(0, 5, 0, 75)
  213. TeleportScreen.Size = UDim2.new(0, 130, 0, 20)
  214. TeleportScreen.Font = Enum.Font.Fantasy
  215. TeleportScreen.TextColor3 = Color3.new(1, 1, 1)
  216. TeleportScreen.Text = "GAME TELEPORT"
  217. TeleportScreen.TextSize = 17
  218. TeleportScreen.TextWrapped = true
  219.  
  220. Spawn.Name = "Spawn"
  221. Spawn.Parent = MainFrame
  222. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  223. Spawn.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  224. Spawn.Position = UDim2.new(0, 5, 0, 100)
  225. Spawn.Size = UDim2.new(0, 130, 0, 20)
  226. Spawn.Font = Enum.Font.Fantasy
  227. Spawn.TextColor3 = Color3.new(1, 1, 1)
  228. Spawn.Text = "Spawn Area"
  229. Spawn.TextSize = 17
  230. Spawn.TextWrapped = true
  231.  
  232. Shop.Name = "Shop"
  233. Shop.Parent = MainFrame
  234. Shop.BackgroundColor3 = Color3.new(0, 0, 0)
  235. Shop.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  236. Shop.Position = UDim2.new(0, 5, 0, 125)
  237. Shop.Size = UDim2.new(0, 130, 0, 20)
  238. Shop.Font = Enum.Font.Fantasy
  239. Shop.TextColor3 = Color3.new(1, 1, 1)
  240. Shop.Text = "Egg Shop"
  241. Shop.TextSize = 17
  242. Shop.TextWrapped = true
  243.  
  244. Area2.Name = "Area2"
  245. Area2.Parent = MainFrame
  246. Area2.BackgroundColor3 = Color3.new(0, 0, 0)
  247. Area2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  248. Area2.Position = UDim2.new(0, 5, 0, 150)
  249. Area2.Size = UDim2.new(0, 130, 0, 20)
  250. Area2.Font = Enum.Font.Fantasy
  251. Area2.TextColor3 = Color3.new(1, 1, 1)
  252. Area2.Text = "25K Area"
  253. Area2.TextSize = 17
  254. Area2.TextWrapped = true
  255.  
  256. Area3.Name = "Area3"
  257. Area3.Parent = MainFrame
  258. Area3.BackgroundColor3 = Color3.new(0, 0, 0)
  259. Area3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  260. Area3.Position = UDim2.new(0, 5, 0, 175)
  261. Area3.Size = UDim2.new(0, 130, 0, 20)
  262. Area3.Font = Enum.Font.Fantasy
  263. Area3.TextColor3 = Color3.new(1, 1, 1)
  264. Area3.Text = "400K Area"
  265. Area3.TextSize = 17
  266. Area3.TextWrapped = true
  267.  
  268. Area4.Name = "Area4"
  269. Area4.Parent = MainFrame
  270. Area4.BackgroundColor3 = Color3.new(0, 0, 0)
  271. Area4.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  272. Area4.Position = UDim2.new(0, 5, 0, 200)
  273. Area4.Size = UDim2.new(0, 130, 0, 20)
  274. Area4.Font = Enum.Font.Fantasy
  275. Area4.TextColor3 = Color3.new(1, 1, 1)
  276. Area4.Text = "2.5M Area"
  277. Area4.TextSize = 17
  278. Area4.TextWrapped = true
  279.  
  280. Area5.Name = "Area5"
  281. Area5.Parent = MainFrame
  282. Area5.BackgroundColor3 = Color3.new(0, 0, 0)
  283. Area5.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  284. Area5.Position = UDim2.new(0, 5, 0, 225)
  285. Area5.Size = UDim2.new(0, 130, 0, 20)
  286. Area5.Font = Enum.Font.Fantasy
  287. Area5.TextColor3 = Color3.new(1, 1, 1)
  288. Area5.Text = "20M Area"
  289. Area5.TextSize = 17
  290. Area5.TextWrapped = true
  291.  
  292. Area6.Name = "Area6"
  293. Area6.Parent = MainFrame
  294. Area6.BackgroundColor3 = Color3.new(0, 0, 0)
  295. Area6.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  296. Area6.Position = UDim2.new(0, 5, 0, 250)
  297. Area6.Size = UDim2.new(0, 130, 0, 20)
  298. Area6.Font = Enum.Font.Fantasy
  299. Area6.TextColor3 = Color3.new(1, 1, 1)
  300. Area6.Text = "500M Area"
  301. Area6.TextSize = 17
  302. Area6.TextWrapped = true
  303.  
  304. Rocket.Name = "Rocket"
  305. Rocket.Parent = MainFrame
  306. Rocket.BackgroundColor3 = Color3.new(0, 0, 0)
  307. Rocket.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  308. Rocket.Position = UDim2.new(0, 5, 0, 275)
  309. Rocket.Size = UDim2.new(0, 130, 0, 20)
  310. Rocket.Font = Enum.Font.Fantasy
  311. Rocket.TextColor3 = Color3.new(1, 1, 1)
  312. Rocket.Text = "Rocket Area"
  313. Rocket.TextSize = 17
  314. Rocket.TextWrapped = true
  315.  
  316. AreaDivider.Name = "AreaDivider"
  317. AreaDivider.Parent = MainFrame
  318. AreaDivider.BackgroundColor3 = Color3.new(0, 0, 0)
  319. AreaDivider.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  320. AreaDivider.Position = UDim2.new(0, 0, 0, 300)
  321. AreaDivider.Size = UDim2.new(0, 140, 0, 3)
  322. AreaDivider.Font = Enum.Font.Fantasy
  323. AreaDivider.Text = ""
  324. AreaDivider.TextSize = 17
  325.  
  326. Area9.Name = "Area9"
  327. Area9.Parent = MainFrame
  328. Area9.BackgroundColor3 = Color3.new(0, 0, 0)
  329. Area9.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  330. Area9.Position = UDim2.new(0, 5, 0, 308)
  331. Area9.Size = UDim2.new(0, 130, 0, 20)
  332. Area9.Font = Enum.Font.Fantasy
  333. Area9.TextColor3 = Color3.new(1, 1, 1)
  334. Area9.Text = "Moon Spawn Point"
  335. Area9.TextSize = 17
  336. Area9.TextWrapped = true
  337.  
  338. Area8.Name = "Area8"
  339. Area8.Parent = MainFrame
  340. Area8.BackgroundColor3 = Color3.new(0, 0, 0)
  341. Area8.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  342. Area8.Position = UDim2.new(0, 5, 0, 333)
  343. Area8.Size = UDim2.new(0, 130, 0, 20)
  344. Area8.Font = Enum.Font.Fantasy
  345. Area8.TextColor3 = Color3.new(1, 1, 1)
  346. Area8.Text = "Moon Egg Shop"
  347. Area8.TextSize = 17
  348. Area8.TextWrapped = true
  349.  
  350. Area10.Name = "Area10"
  351. Area10.Parent = MainFrame
  352. Area10.BackgroundColor3 = Color3.new(0, 0, 0)
  353. Area10.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  354. Area10.Position = UDim2.new(0, 5, 0, 358)
  355. Area10.Size = UDim2.new(0, 130, 0, 20)
  356. Area10.Font = Enum.Font.Fantasy
  357. Area10.TextColor3 = Color3.new(1, 1, 1)
  358. Area10.Text = "Moon Area 2"
  359. Area10.TextSize = 17
  360. Area10.TextWrapped = true
  361.  
  362. CandyLand.Name = "CandyLand"
  363. CandyLand.Parent = MainFrame
  364. CandyLand.BackgroundColor3 = Color3.new(0, 0, 0)
  365. CandyLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  366. CandyLand.Position = UDim2.new(0, 5, 0, 383)
  367. CandyLand.Size = UDim2.new(0, 130, 0, 20)
  368. CandyLand.Font = Enum.Font.Fantasy
  369. CandyLand.TextColor3 = Color3.new(1, 1, 1)
  370. CandyLand.Text = "Candy Land"
  371. CandyLand.TextSize = 17
  372. CandyLand.TextWrapped = true
  373.  
  374. CyborgLand.Name = "CyborgLand"
  375. CyborgLand.Parent = MainFrame
  376. CyborgLand.BackgroundColor3 = Color3.new(0, 0, 0)
  377. CyborgLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  378. CyborgLand.Position = UDim2.new(0, 5, 0, 408)
  379. CyborgLand.Size = UDim2.new(0, 130, 0, 20)
  380. CyborgLand.Font = Enum.Font.Fantasy
  381. CyborgLand.TextColor3 = Color3.new(1, 1, 1)
  382. CyborgLand.Text = "Cyborg Land"
  383. CyborgLand.TextSize = 17
  384. CyborgLand.TextWrapped = true
  385.  
  386. BuyScreenFrame.Name = "BuyScreenFrame"
  387. BuyScreenFrame.Parent = TopFrame
  388. BuyScreenFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  389. BuyScreenFrame.BackgroundTransparency = 0
  390. BuyScreenFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  391. BuyScreenFrame.Position = UDim2.new(0, 0, 0, 30)
  392. BuyScreenFrame.Size = UDim2.new(0, 140, 0, 350)
  393. BuyScreenFrame.Visible = false
  394.  
  395. Locations.Name = "Locations"
  396. Locations.Parent = BuyScreenFrame
  397. Locations.BackgroundColor3 = Color3.new(0, 0, 0)
  398. Locations.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  399. Locations.Position = UDim2.new(0, 5, 0, 5)
  400. Locations.Size = UDim2.new(0, 130, 0, 25)
  401. Locations.Font = Enum.Font.Fantasy
  402. Locations.TextColor3 = Color3.new(1, 1, 1)
  403. Locations.Text = "LOCATIONS"
  404. Locations.TextSize = 17
  405. Locations.TextWrapped = true
  406.  
  407. BuyPetTitle1.Name = "BuyPetTitle1"
  408. BuyPetTitle1.Parent = BuyScreenFrame
  409. BuyPetTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  410. BuyPetTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  411. BuyPetTitle1.Position = UDim2.new(0, 5, 0, 50)
  412. BuyPetTitle1.Size = UDim2.new(0, 130, 0, 55)
  413. BuyPetTitle1.Font = Enum.Font.Fantasy
  414. BuyPetTitle1.TextColor3 = Color3.new(1, 1, 1)
  415. BuyPetTitle1.Text = "You must have the money to buy what you want"
  416. BuyPetTitle1.TextSize = 17
  417. BuyPetTitle1.TextWrapped = true
  418.  
  419. BuyPetTitle2.Name = "BuyPetTitle2"
  420. BuyPetTitle2.Parent = BuyScreenFrame
  421. BuyPetTitle2.BackgroundTransparency = 1
  422. BuyPetTitle2.BorderSizePixel = 0
  423. BuyPetTitle2.Position = UDim2.new(0, 5, 0, 110)
  424. BuyPetTitle2.Size = UDim2.new(0, 130, 0, 20)
  425. BuyPetTitle2.Font = Enum.Font.Fantasy
  426. BuyPetTitle2.TextColor3 = Color3.new(0, 0, 0)
  427. BuyPetTitle2.Text = "BUY PETS"
  428. BuyPetTitle2.TextSize = 17
  429. BuyPetTitle2.TextWrapped = true
  430.  
  431. BuyPetAmount1.Name = "BuyPetAmount1"
  432. BuyPetAmount1.Parent = BuyScreenFrame
  433. BuyPetAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  434. BuyPetAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  435. BuyPetAmount1.Position = UDim2.new(0, 6, 0, 129)
  436. BuyPetAmount1.Size = UDim2.new(0, 89, 0, 21)
  437. BuyPetAmount1.Font = Enum.Font.Fantasy
  438. BuyPetAmount1.TextColor3 = Color3.new(1, 1, 1)
  439. BuyPetAmount1.Text = "Quantity"
  440. BuyPetAmount1.TextSize = 17
  441. BuyPetAmount1.TextWrapped = true
  442.  
  443. BuyPetAmount2.Name = "BuyPetAmount2"
  444. BuyPetAmount2.Parent = BuyScreenFrame
  445. BuyPetAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  446. BuyPetAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  447. BuyPetAmount2.Position = UDim2.new(0, 95, 0, 130)
  448. BuyPetAmount2.Size = UDim2.new(0, 40, 0, 20)
  449. BuyPetAmount2.Font = Enum.Font.Fantasy
  450. BuyPetAmount2.TextColor3 = Color3.new(1, 1, 1)
  451. BuyPetAmount2.Text = "1"
  452. BuyPetAmount2.TextSize = 17
  453. BuyPetAmount2.TextWrapped = true
  454.  
  455. BuyPetTier1.Name = "BuyPetTier1"
  456. BuyPetTier1.Parent = BuyScreenFrame
  457. BuyPetTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  458. BuyPetTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  459. BuyPetTier1.Position = UDim2.new(0, 6, 0, 150)
  460. BuyPetTier1.Size = UDim2.new(0, 89, 0, 20)
  461. BuyPetTier1.Font = Enum.Font.Fantasy
  462. BuyPetTier1.TextColor3 = Color3.new(1, 1, 1)
  463. BuyPetTier1.Text = "Tier"
  464. BuyPetTier1.TextSize = 17
  465. BuyPetTier1.TextWrapped = true
  466.  
  467. BuyPetTier2.Name = "BuyPetTier2"
  468. BuyPetTier2.Parent = BuyScreenFrame
  469. BuyPetTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  470. BuyPetTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  471. BuyPetTier2.Position = UDim2.new(0, 95, 0, 150)
  472. BuyPetTier2.Size = UDim2.new(0, 40, 0, 20)
  473. BuyPetTier2.Font = Enum.Font.Fantasy
  474. BuyPetTier2.TextColor3 = Color3.new(1, 1, 1)
  475. BuyPetTier2.Text = "16"
  476. BuyPetTier2.TextSize = 17
  477. BuyPetTier2.TextWrapped = true
  478.  
  479. BuyPetGo.Name = "BuyPetGo"
  480. BuyPetGo.Parent = BuyScreenFrame
  481. BuyPetGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  482. BuyPetGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  483. BuyPetGo.Position = UDim2.new(0, 5, 0, 170)
  484. BuyPetGo.Size = UDim2.new(0, 130, 0, 20)
  485. BuyPetGo.Font = Enum.Font.Fantasy
  486. BuyPetGo.TextColor3 = Color3.new(1, 1, 1)
  487. BuyPetGo.Text = "Buy Eggs"
  488. BuyPetGo.TextSize = 17
  489. BuyPetGo.TextWrapped = true
  490.  
  491. BuyPetTitle3.Name = "BuyPetTitle3"
  492. BuyPetTitle3.Parent = BuyScreenFrame
  493. BuyPetTitle3.BackgroundColor3 = Color3.new(0, 0, 0)
  494. BuyPetTitle3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  495. BuyPetTitle3.Position = UDim2.new(0, 5, 0, 195)
  496. BuyPetTitle3.Size = UDim2.new(0, 130, 0, 20)
  497. BuyPetTitle3.Font = Enum.Font.Fantasy
  498. BuyPetTitle3.TextColor3 = Color3.new(1, 1, 1)
  499. BuyPetTitle3.Text = "In Tier type 1-16"
  500. BuyPetTitle3.TextSize = 17
  501. BuyPetTitle3.TextWrapped = true
  502.  
  503. BuyHatTitle2.Name = "BuyHatTitle2"
  504. BuyHatTitle2.Parent = BuyScreenFrame
  505. BuyHatTitle2.BackgroundTransparency = 1
  506. BuyHatTitle2.BorderSizePixel = 0
  507. BuyHatTitle2.Position = UDim2.new(0, 5, 0, 225)
  508. BuyHatTitle2.Size = UDim2.new(0, 130, 0, 20)
  509. BuyHatTitle2.Font = Enum.Font.Fantasy
  510. BuyHatTitle2.TextColor3 = Color3.new(0, 0, 0)
  511. BuyHatTitle2.Text = "BUY HATS"
  512. BuyHatTitle2.TextSize = 17
  513. BuyHatTitle2.TextWrapped = true
  514.  
  515. BuyHatAmount1.Name = "BuyHatAmount1"
  516. BuyHatAmount1.Parent = BuyScreenFrame
  517. BuyHatAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  518. BuyHatAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  519. BuyHatAmount1.Position = UDim2.new(0, 6, 0, 245)
  520. BuyHatAmount1.Size = UDim2.new(0, 89, 0, 20)
  521. BuyHatAmount1.Font = Enum.Font.Fantasy
  522. BuyHatAmount1.TextColor3 = Color3.new(1, 1, 1)
  523. BuyHatAmount1.Text = "Quantity"
  524. BuyHatAmount1.TextSize = 17
  525. BuyHatAmount1.TextWrapped = true
  526.  
  527. BuyHatAmount2.Name = "BuyHatAmount2"
  528. BuyHatAmount2.Parent = BuyScreenFrame
  529. BuyHatAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  530. BuyHatAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  531. BuyHatAmount2.Position = UDim2.new(0, 95, 0, 244)
  532. BuyHatAmount2.Size = UDim2.new(0, 40, 0, 21)
  533. BuyHatAmount2.Font = Enum.Font.Fantasy
  534. BuyHatAmount2.TextColor3 = Color3.new(1, 1, 1)
  535. BuyHatAmount2.Text = "1"
  536. BuyHatAmount2.TextSize = 17
  537. BuyHatAmount2.TextWrapped = true
  538.  
  539. BuyHatTier1.Name = "BuyHatTier1"
  540. BuyHatTier1.Parent = BuyScreenFrame
  541. BuyHatTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  542. BuyHatTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  543. BuyHatTier1.Position = UDim2.new(0, 6, 0, 265)
  544. BuyHatTier1.Size = UDim2.new(0, 60, 0, 20)
  545. BuyHatTier1.Font = Enum.Font.Fantasy
  546. BuyHatTier1.TextColor3 = Color3.new(1, 1, 1)
  547. BuyHatTier1.Text = "Tier"
  548. BuyHatTier1.TextSize = 17
  549. BuyHatTier1.TextWrapped = true
  550.  
  551. BuyHatTier2.Name = "BuyHatTier2"
  552. BuyHatTier2.Parent = BuyScreenFrame
  553. BuyHatTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  554. BuyHatTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  555. BuyHatTier2.Position = UDim2.new(0, 66, 0, 265)
  556. BuyHatTier2.Size = UDim2.new(0, 69, 0, 20)
  557. BuyHatTier2.Font = Enum.Font.Fantasy
  558. BuyHatTier2.TextColor3 = Color3.new(1, 1, 1)
  559. BuyHatTier2.Text = "Golden"
  560. BuyHatTier2.TextSize = 17
  561. BuyHatTier2.TextWrapped = true
  562.  
  563. BuyHatGo.Name = "BuyHatGo"
  564. BuyHatGo.Parent = BuyScreenFrame
  565. BuyHatGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  566. BuyHatGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  567. BuyHatGo.Position = UDim2.new(0, 5, 0, 285)
  568. BuyHatGo.Size = UDim2.new(0, 130, 0, 20)
  569. BuyHatGo.Font = Enum.Font.Fantasy
  570. BuyHatGo.TextColor3 = Color3.new(1, 1, 1)
  571. BuyHatGo.Text = "Buy Hats"
  572. BuyHatGo.TextSize = 17
  573. BuyHatGo.TextWrapped = true
  574.  
  575. BuyHatTitle1.Name = "BuyHatTitle1"
  576. BuyHatTitle1.Parent = BuyScreenFrame
  577. BuyHatTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  578. BuyHatTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  579. BuyHatTitle1.Position = UDim2.new(0, 5, 0, 310)
  580. BuyHatTitle1.Size = UDim2.new(0, 130, 0, 35)
  581. BuyHatTitle1.Font = Enum.Font.Fantasy
  582. BuyHatTitle1.TextColor3 = Color3.new(1, 1, 1)
  583. BuyHatTitle1.Text = "In Tier type 1-4 or Golden"
  584. BuyHatTitle1.TextSize = 17
  585. BuyHatTitle1.TextWrapped = true
  586.  
  587. FarmFrame.Name = "FarmFrame"
  588. FarmFrame.Parent = TopFrame
  589. FarmFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  590. FarmFrame.BackgroundTransparency = 0
  591. FarmFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  592. FarmFrame.Position = UDim2.new(0, 0, 0, 30)
  593. FarmFrame.Size = UDim2.new(0, 140, 0, 351)
  594. FarmFrame.Visible = false
  595.  
  596. Locations2.Name = "Locations2"
  597. Locations2.Parent = FarmFrame
  598. Locations2.BackgroundColor3 = Color3.new(0, 0, 0)
  599. Locations2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  600. Locations2.Position = UDim2.new(0, 5, 0, 5)
  601. Locations2.Size = UDim2.new(0, 130, 0, 25)
  602. Locations2.Font = Enum.Font.Fantasy
  603. Locations2.TextColor3 = Color3.new(1, 1, 1)
  604. Locations2.Text = "LOCATIONS"
  605. Locations2.TextSize = 17
  606. Locations2.TextWrapped = true
  607.  
  608. AllHealthLabel.Name = "AllHealthLabel"
  609. AllHealthLabel.Parent = FarmFrame
  610. AllHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  611. AllHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  612. AllHealthLabel.Position = UDim2.new(0, 5, 0, 50)
  613. AllHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  614. AllHealthLabel.Font = Enum.Font.Fantasy
  615. AllHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  616. AllHealthLabel.Text = "Coin/Chest Health"
  617. AllHealthLabel.TextSize = 17
  618. AllHealthLabel.TextWrapped = true
  619.  
  620. AllHealthMinLabel.Name = "AllHealthMinLabel"
  621. AllHealthMinLabel.Parent = FarmFrame
  622. AllHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  623. AllHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  624. AllHealthMinLabel.Position = UDim2.new(0, 5, 0, 71)
  625. AllHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  626. AllHealthMinLabel.Font = Enum.Font.Fantasy
  627. AllHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  628. AllHealthMinLabel.Text = "Min"
  629. AllHealthMinLabel.TextSize = 17
  630. AllHealthMinLabel.TextWrapped = true
  631.  
  632. AllHealthMin.Name = "AllHealthMin"
  633. AllHealthMin.Parent = FarmFrame
  634. AllHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  635. AllHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  636. AllHealthMin.Position = UDim2.new(0, 46, 0, 71)
  637. AllHealthMin.Size = UDim2.new(0, 89, 0, 20)
  638. AllHealthMin.Font = Enum.Font.Fantasy
  639. AllHealthMin.TextColor3 = Color3.new(1, 1, 1)
  640. AllHealthMin.Text = "1"
  641. AllHealthMin.TextSize = 17
  642. AllHealthMin.TextWrapped = true
  643.  
  644. AllHealthMaxLabel.Name = "AllHealthMaxLabel"
  645. AllHealthMaxLabel.Parent = FarmFrame
  646. AllHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  647. AllHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  648. AllHealthMaxLabel.Position = UDim2.new(0, 5, 0, 92)
  649. AllHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  650. AllHealthMaxLabel.Font = Enum.Font.Fantasy
  651. AllHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  652. AllHealthMaxLabel.Text = "Max"
  653. AllHealthMaxLabel.TextSize = 17
  654. AllHealthMaxLabel.TextWrapped = true
  655.  
  656. AllHealthMax.Name = "AllHealthMax"
  657. AllHealthMax.Parent = FarmFrame
  658. AllHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  659. AllHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  660. AllHealthMax.Position = UDim2.new(0, 46, 0, 92)
  661. AllHealthMax.Size = UDim2.new(0, 89, 0, 20)
  662. AllHealthMax.Font = Enum.Font.Fantasy
  663. AllHealthMax.TextColor3 = Color3.new(1, 1, 1)
  664. AllHealthMax.Text = "10e6"
  665. AllHealthMax.TextSize = 17
  666. AllHealthMax.TextWrapped = true
  667.  
  668. StartFarming.Name = "StartFarming"
  669. StartFarming.Parent = FarmFrame
  670. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  671. StartFarming.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  672. StartFarming.Position = UDim2.new(0, 5, 0, 117)
  673. StartFarming.Size = UDim2.new(0, 130, 0, 25)
  674. StartFarming.Font = Enum.Font.Fantasy
  675. StartFarming.TextColor3 = Color3.new(1, 1, 1)
  676. StartFarming.Text = "Mine ALL: OFF"
  677. StartFarming.TextSize = 17
  678. StartFarming.TextWrapped = true
  679.  
  680. EarthHealthLabel.Name = "EarthHealthLabel"
  681. EarthHealthLabel.Parent = FarmFrame
  682. EarthHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  683. EarthHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  684. EarthHealthLabel.Position = UDim2.new(0, 5, 0, 152)
  685. EarthHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  686. EarthHealthLabel.Font = Enum.Font.Fantasy
  687. EarthHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  688. EarthHealthLabel.Text = "Coin/Chest Health"
  689. EarthHealthLabel.TextSize = 17
  690. EarthHealthLabel.TextWrapped = true
  691.  
  692. EarthHealthMinLabel.Name = "EarthHealthMinLabel"
  693. EarthHealthMinLabel.Parent = FarmFrame
  694. EarthHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  695. EarthHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  696. EarthHealthMinLabel.Position = UDim2.new(0, 5, 0, 173)
  697. EarthHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  698. EarthHealthMinLabel.Font = Enum.Font.Fantasy
  699. EarthHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  700. EarthHealthMinLabel.Text = "Min"
  701. EarthHealthMinLabel.TextSize = 17
  702. EarthHealthMinLabel.TextWrapped = true
  703.  
  704. EarthHealthMin.Name = "EarthHealthMin"
  705. EarthHealthMin.Parent = FarmFrame
  706. EarthHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  707. EarthHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  708. EarthHealthMin.Position = UDim2.new(0, 46, 0, 173)
  709. EarthHealthMin.Size = UDim2.new(0, 89, 0, 20)
  710. EarthHealthMin.Font = Enum.Font.Fantasy
  711. EarthHealthMin.TextColor3 = Color3.new(1, 1, 1)
  712. EarthHealthMin.Text = "1"
  713. EarthHealthMin.TextSize = 17
  714. EarthHealthMin.TextWrapped = true
  715.  
  716. EarthHealthMaxLabel.Name = "EarthHealthMaxLabel"
  717. EarthHealthMaxLabel.Parent = FarmFrame
  718. EarthHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  719. EarthHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  720. EarthHealthMaxLabel.Position = UDim2.new(0, 5, 0, 194)
  721. EarthHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  722. EarthHealthMaxLabel.Font = Enum.Font.Fantasy
  723. EarthHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  724. EarthHealthMaxLabel.Text = "Max"
  725. EarthHealthMaxLabel.TextSize = 17
  726. EarthHealthMaxLabel.TextWrapped = true
  727.  
  728. EarthHealthMax.Name = "EarthHealthMax"
  729. EarthHealthMax.Parent = FarmFrame
  730. EarthHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  731. EarthHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  732. EarthHealthMax.Position = UDim2.new(0, 46, 0, 194)
  733. EarthHealthMax.Size = UDim2.new(0, 89, 0, 20)
  734. EarthHealthMax.Font = Enum.Font.Fantasy
  735. EarthHealthMax.TextColor3 = Color3.new(1, 1, 1)
  736. EarthHealthMax.Text = "20e06"
  737. EarthHealthMax.TextSize = 17
  738. EarthHealthMax.TextWrapped = true
  739.  
  740. StartFarmingEarth.Name = "StartFarmingEarth"
  741. StartFarmingEarth.Parent = FarmFrame
  742. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  743. StartFarmingEarth.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  744. StartFarmingEarth.Position = UDim2.new(0, 5, 0, 219)
  745. StartFarmingEarth.Size = UDim2.new(0, 130, 0, 25)
  746. StartFarmingEarth.Font = Enum.Font.Fantasy
  747. StartFarmingEarth.TextColor3 = Color3.new(1, 1, 1)
  748. StartFarmingEarth.Text = "Mine Earth: OFF"
  749. StartFarmingEarth.TextSize = 17
  750. StartFarmingEarth.TextWrapped = true
  751.  
  752. MoonHealthLabel.Name = "MoonHealthLabel"
  753. MoonHealthLabel.Parent = FarmFrame
  754. MoonHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  755. MoonHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  756. MoonHealthLabel.Position = UDim2.new(0, 5, 0, 254)
  757. MoonHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  758. MoonHealthLabel.Font = Enum.Font.Fantasy
  759. MoonHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  760. MoonHealthLabel.Text = "Coin/Chest Health"
  761. MoonHealthLabel.TextSize = 17
  762. MoonHealthLabel.TextWrapped = true
  763.  
  764. MoonHealthMinLabel.Name = "MoonHealthMinLabel"
  765. MoonHealthMinLabel.Parent = FarmFrame
  766. MoonHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  767. MoonHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  768. MoonHealthMinLabel.Position = UDim2.new(0, 5, 0, 275)
  769. MoonHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  770. MoonHealthMinLabel.Font = Enum.Font.Fantasy
  771. MoonHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  772. MoonHealthMinLabel.Text = "Min"
  773. MoonHealthMinLabel.TextSize = 17
  774. MoonHealthMinLabel.TextWrapped = true
  775.  
  776. MoonHealthMin.Name = "MoonHealthMin"
  777. MoonHealthMin.Parent = FarmFrame
  778. MoonHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  779. MoonHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  780. MoonHealthMin.Position = UDim2.new(0, 46, 0, 275)
  781. MoonHealthMin.Size = UDim2.new(0, 89, 0, 20)
  782. MoonHealthMin.Font = Enum.Font.Fantasy
  783. MoonHealthMin.TextColor3 = Color3.new(1, 1, 1)
  784. MoonHealthMin.Text = "10e04"
  785. MoonHealthMin.TextSize = 17
  786. MoonHealthMin.TextWrapped = true
  787.  
  788. MoonHealthMaxLabel.Name = "MoonHealthMaxLabel"
  789. MoonHealthMaxLabel.Parent = FarmFrame
  790. MoonHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  791. MoonHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  792. MoonHealthMaxLabel.Position = UDim2.new(0, 5, 0, 296)
  793. MoonHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  794. MoonHealthMaxLabel.Font = Enum.Font.Fantasy
  795. MoonHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  796. MoonHealthMaxLabel.Text = "Max"
  797. MoonHealthMaxLabel.TextSize = 17
  798. MoonHealthMaxLabel.TextWrapped = true
  799.  
  800. MoonHealthMax.Name = "MoonHealthMax"
  801. MoonHealthMax.Parent = FarmFrame
  802. MoonHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  803. MoonHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  804. MoonHealthMax.Position = UDim2.new(0, 46, 0, 296)
  805. MoonHealthMax.Size = UDim2.new(0, 89, 0, 20)
  806. MoonHealthMax.Font = Enum.Font.Fantasy
  807. MoonHealthMax.TextColor3 = Color3.new(1, 1, 1)
  808. MoonHealthMax.Text = "60e06"
  809. MoonHealthMax.TextSize = 17
  810. MoonHealthMax.TextWrapped = true
  811.  
  812. StartFarmingMoon.Name = "StartFarmingMoon"
  813. StartFarmingMoon.Parent = FarmFrame
  814. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  815. StartFarmingMoon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  816. StartFarmingMoon.Position = UDim2.new(0, 5, 0, 321)
  817. StartFarmingMoon.Size = UDim2.new(0, 130, 0, 25)
  818. StartFarmingMoon.Font = Enum.Font.Fantasy
  819. StartFarmingMoon.TextColor3 = Color3.new(1, 1, 1)
  820. StartFarmingMoon.Text = "Mine Moon: OFF"
  821. StartFarmingMoon.TextSize = 17
  822. StartFarmingMoon.TextWrapped = true
  823.  
  824. -- Close GUI --
  825. ClosePS.MouseButton1Down:connect(function()
  826. MainGUI:destroy()
  827. end)
  828.  
  829. BuyScreen.MouseButton1Click:connect(function()
  830. MainFrame.Visible = false
  831. BuyScreenFrame.Visible = true
  832. end)
  833.  
  834. Locations.MouseButton1Click:connect(function()
  835. MainFrame.Visible = true
  836. BuyScreenFrame.Visible = false
  837. end)
  838.  
  839. FarmCoins.MouseButton1Click:connect(function()
  840. MainFrame.Visible = false
  841. FarmFrame.Visible = true
  842. end)
  843.  
  844. Locations2.MouseButton1Click:connect(function()
  845. MainFrame.Visible = true
  846. FarmFrame.Visible = false
  847. end)
  848.  
  849. TeleportScreen.MouseButton1Click:connect(function()
  850. game.Players.LocalPlayer.PlayerGui.Teleport.Enabled = true
  851. end)
  852.  
  853. -- Farm --
  854.  
  855. StartFarming.MouseButton1Click:connect(function()
  856. if not FarmStart then
  857. FarmArea = "all"
  858. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  859. StartFarming.BackgroundColor3 = Color3.new(0, 0.3, 0)
  860. StartFarming.Text = "Mine ALL: ON"
  861. pcall(function()
  862. PetTable()
  863. end)
  864. FarmStart = true
  865. else
  866. FarmStart = false
  867. FarmArea = "none"
  868. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  869. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  870. StartFarming.Text = "Mine ALL: OFF"
  871. end
  872. end)
  873.  
  874. StartFarmingEarth.MouseButton1Click:connect(function()
  875. if not FarmStart then
  876. FarmArea = "earth"
  877. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  878. StartFarmingEarth.BackgroundColor3 = Color3.new(0, 0.3, 0)
  879. StartFarmingEarth.Text = "Mine Earth: ON"
  880. pcall(function()
  881. PetTable()
  882. end)
  883. FarmStart = true
  884. else
  885. FarmStart = false
  886. FarmArea = "none"
  887. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  888. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  889. StartFarmingEarth.Text = "Mine Earth: OFF"
  890. end
  891. end)
  892.  
  893. StartFarmingMoon.MouseButton1Click:connect(function()
  894. if not FarmStart then
  895. FarmArea = "moon"
  896. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  897. StartFarmingMoon.BackgroundColor3 = Color3.new(0, 0.3, 0)
  898. StartFarmingMoon.Text = "Mine Moon: ON"
  899. pcall(function()
  900. PetTable()
  901. end)
  902. FarmStart = true
  903. else
  904. FarmStart = false
  905. FarmArea = "none"
  906. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  907. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  908. StartFarmingMoon.Text = "Mine Moon: OFF"
  909. end
  910. end)
  911.  
  912. function Mine(Coin)
  913. while FarmStart and (Coin:FindFirstChild("Health") ~= nil) and (Coin:FindFirstChild("Health").Value > 0) do
  914. wait(0.1)
  915. for PetNumber,_ in pairs(petTable) do
  916. workspace["__REMOTES"]["Game"]["Coins"]:FireServer("Mine",Coin.Name,petTable[PetNumber]["LEVEL"],petTable[PetNumber]["ID"])
  917. end
  918. end
  919. end
  920.  
  921. spawn(function()
  922. while true do
  923. while FarmStart do
  924. for _,Coin in next, workspace["__THINGS"].Coins:GetChildren() do
  925. if (done ~= Coin) then
  926. if (FarmArea == "all") then
  927. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  928. if Coin.Health.Value > tonumber(AllHealthMin.Text) and Coin.Health.Value < tonumber(AllHealthMax.Text) then
  929. Mine(Coin)
  930. end
  931. end
  932. elseif (FarmArea == "earth") then
  933. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  934. if Coin.Position.Y < 100 then
  935. if Coin.Health.Value > tonumber(EarthHealthMin.Text) and Coin.Health.Value < tonumber(EarthHealthMax.Text) then
  936. Mine(Coin)
  937. end
  938. end
  939. end
  940. elseif (FarmArea == "moon") then
  941. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  942. if Coin.Position.Y > 100 then
  943. if Coin.Health.Value > tonumber(MoonHealthMin.Text) and Coin.Health.Value < tonumber(MoonHealthMax.Text) then
  944. Mine(Coin)
  945. end
  946. end
  947. end
  948. else
  949. end
  950. end
  951. end
  952. wait()
  953. end
  954. wait()
  955. end
  956. end)
  957.  
  958. WalkSpeed.MouseButton1Click:connect(function()
  959. if WalkNumber == "1" then
  960. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0.5)
  961. WalkSpeed.Text = "Walk:2"
  962. WalkNumber = "2"
  963. Walk = 30
  964. elseif WalkNumber == "2" then
  965. WalkSpeed.BackgroundColor3 = Color3.new(0.5, 0, 0)
  966. WalkSpeed.Text = "Walk:3"
  967. WalkNumber = "3"
  968. Walk = 80
  969. elseif WalkNumber == "3" then
  970. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  971. WalkSpeed.Text = "Walk:1"
  972. WalkNumber = "1"
  973. Walk = 16
  974. else
  975. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  976. WalkSpeed.Text = "Walk:1"
  977. WalkNumber = "1"
  978. Walk = 16
  979. end
  980. player = game.Players.LocalPlayer
  981. player.Character.Humanoid.WalkSpeed = Walk
  982. end)
  983.  
  984. JumpPower.MouseButton1Click:connect(function()
  985. if JumpNumber == "1" then
  986. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0.5)
  987. JumpPower.Text = "Jump:2"
  988. JumpNumber = "2"
  989. Jump = 150
  990. elseif JumpNumber == "2" then
  991. JumpPower.BackgroundColor3 = Color3.new(0.5, 0, 0)
  992. JumpPower.Text = "Jump:3"
  993. JumpNumber = "3"
  994. Jump = 400
  995. elseif JumpNumber == "3" then
  996. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  997. JumpPower.Text = "Jump:1"
  998. JumpNumber = "1"
  999. Jump = 50
  1000. else
  1001. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  1002. JumpPower.Text = "Jump:1"
  1003. JumpNumber = "1"
  1004. Jump = 50
  1005. end
  1006. player = game.Players.LocalPlayer
  1007. player.Character.Humanoid.JumpPower = Jump
  1008. end)
  1009.  
  1010. -- Buy Eggs and Hats --
  1011.  
  1012. BuyPetGo.MouseButton1Click:connect(function()
  1013. for i = 1, tonumber(BuyPetAmount2.Text) do
  1014. if tonumber(BuyPetAmount2.Text) == 0 then break end
  1015. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Eggs", "Tier " ..BuyPetTier2.Text)
  1016. wait()
  1017. end
  1018. end)
  1019.  
  1020. BuyHatGo.MouseButton1Click:connect(function()
  1021. for i = 1, tonumber(BuyHatAmount2.Text) do
  1022. if tonumber(BuyHatAmount2.Text) == 0 then break end
  1023. if BuyHatTier2.Text:lower() == "golden" then
  1024. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Golden")
  1025. else
  1026. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Tier " ..BuyHatTier2.Text)
  1027. end
  1028. wait()
  1029. end
  1030. end)
  1031.  
  1032. -- TP to locations --
  1033. Spawn.MouseButton1Click:connect(function()
  1034. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(526, -36.292, 909)
  1035. end)
  1036.  
  1037. Shop.MouseButton1Click:connect(function()
  1038. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(647.35, -33.6, 890.23)
  1039. end)
  1040.  
  1041. Area2.MouseButton1Click:connect(function()
  1042. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13, -37, 885)
  1043. end)
  1044.  
  1045. Area3.MouseButton1Click:connect(function()
  1046. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-364, -37, 885)
  1047. end)
  1048.  
  1049. Area4.MouseButton1Click:connect(function()
  1050. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-760, -37, 885)
  1051. end)
  1052.  
  1053. Area5.MouseButton1Click:connect(function()
  1054. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1160, -37, 885)
  1055. end)
  1056.  
  1057. Area6.MouseButton1Click:connect(function()
  1058. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1500, -37, 885)
  1059. end)
  1060.  
  1061. Rocket.MouseButton1Click:connect(function()
  1062. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1828, -37, 897)
  1063. end)
  1064.  
  1065. Area8.MouseButton1Click:connect(function()
  1066. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(616, 146, -1720)
  1067. end)
  1068.  
  1069. Area9.MouseButton1Click:connect(function()
  1070. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(527, 145, -1762)
  1071. end)
  1072.  
  1073. Area10.MouseButton1Click:connect(function()
  1074. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.8, 145, -1718)
  1075. end)
  1076.  
  1077. CandyLand.MouseButton1Click:connect(function()
  1078. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13.7, 145, -1449.8)
  1079. end)
  1080.  
  1081. CyborgLand.MouseButton1Click:connect(function()
  1082. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-283.5, 145, -1704.4)
  1083. end)
Add Comment
Please, Sign In to add comment