Advertisement
yWolf_BR

PET FARM CONFIG - ENGLISH

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