Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 72.19 KB | None | 0 0
  1.  
  2. FarmStart = false
  3. FarmArea = "none"
  4. WalkNumber = "1"
  5. JumpNumber = "1"
  6.  
  7. local petTable = {}
  8. local Try = 0
  9. local Amount = 0
  10.  
  11. function PetTable()
  12. local Stats = workspace["__REMOTES"]["Core"]["Get Other Stats"]:InvokeServer()
  13. local Times = #Stats[game.Players.LocalPlayer.Name]["Save"]["Pets"]
  14. local Name = game:GetService("Players").LocalPlayer.Name
  15. petTable = {}
  16. Try = 0
  17. Amount = 0
  18. for i=1,Times do
  19. if(Stats[Name]["Save"]["Pets"][Times].e == true) then
  20. Amount = Amount + 1
  21. petTable[Amount] = {
  22. ["ID"] = tonumber(Stats[Name]["Save"]["Pets"][Times].id),
  23. ["LEVEL"] = tonumber(Stats[Name]["Save"]["Pets"][Times].l),
  24. }
  25. end
  26. Times = Times - 1
  27. end
  28. end
  29.  
  30. local MainGUI = Instance.new("ScreenGui")
  31. local TopFrame = Instance.new("Frame")
  32. local PSHeader = Instance.new("TextLabel")
  33. local ClosePS = Instance.new("TextButton")
  34. local StatsFrame = Instance.new("Frame")
  35. local FarmCoins = Instance.new("TextButton")
  36. local FarmFrame = Instance.new("Frame")
  37. local PowerTextInfo1 = Instance.new("TextLabel")
  38. local PowerText1 = Instance.new("TextLabel")
  39. local FarmPower = Instance.new("TextBox")
  40. local StartFarming = Instance.new("TextButton")
  41. local StartFarmingEarth = Instance.new("TextButton")
  42. local StartFarmingMoon = Instance.new("TextButton")
  43. local WalkSpeed = Instance.new("TextButton")
  44. local JumpPower = Instance.new("TextButton")
  45. local BuyScreen = Instance.new("TextButton")
  46. local BuyScreenFrame = Instance.new("Frame")
  47. local BuyPetTitle1 = Instance.new("TextLabel")
  48. local BuyPetTitle2 = Instance.new("TextLabel")
  49. local BuyPetTitle3 = Instance.new("TextLabel")
  50. local BuyPetAmount1 = Instance.new("TextLabel")
  51. local BuyPetAmount2 = Instance.new("TextBox")
  52. local BuyPetAmount3 = Instance.new("TextBox")
  53. local BuyPetTier1 = Instance.new("TextLabel")
  54. local BuyPetTier2 = Instance.new("TextBox")
  55. local BuyPetGo = Instance.new("TextButton")
  56. local BuyHatTitle1 = Instance.new("TextLabel")
  57. local BuyHatTitle2 = Instance.new("TextLabel")
  58. local BuyHatAmount1 = Instance.new("TextLabel")
  59. local BuyHatAmount2 = Instance.new("TextBox")
  60. local BuyHatTier1 = Instance.new("TextLabel")
  61. local BuyHatTier2 = Instance.new("TextBox")
  62. local BuyHatGo = Instance.new("TextButton")
  63. local Locations = Instance.new("TextButton")
  64. local Locations2 = Instance.new("TextButton")
  65. local MainFrame = Instance.new("Frame")
  66. local Stats = Instance.new("TextButton")
  67. local Spawn = Instance.new("TextButton")
  68. local Shop = Instance.new("TextButton")
  69. local Area2 = Instance.new("TextButton")
  70. local Area3 = Instance.new("TextButton")
  71. local Area4 = Instance.new("TextButton")
  72. local Area5 = Instance.new("TextButton")
  73. local Area6 = Instance.new("TextButton")
  74. local Area7 = Instance.new("TextButton")
  75. local Area8 = Instance.new("TextButton")
  76. local Area9 = Instance.new("TextButton")
  77. local Area10 = Instance.new("TextButton")
  78. local Area11 = Instance.new("TextButton")
  79. local Area12 = Instance.new("TextButton")
  80. local Rocket = Instance.new("TextButton")
  81. local CandyLand = Instance.new("TextButton")
  82. local CyborgLand = Instance.new("TextButton")
  83. local AreaDivider = Instance.new("TextLabel")
  84. local AllHealthLabel = Instance.new("TextLabel")
  85. local AllHealthMinLabel = Instance.new("TextLabel")
  86. local AllHealthMaxLabel = Instance.new("TextLabel")
  87. local AllHealthMin = Instance.new("TextBox")
  88. local AllHealthMax = Instance.new("TextBox")
  89. local EarthHealthLabel = Instance.new("TextLabel")
  90. local EarthHealthMinLabel = Instance.new("TextLabel")
  91. local EarthHealthMaxLabel = Instance.new("TextLabel")
  92. local EarthHealthMin = Instance.new("TextBox")
  93. local EarthHealthMax = Instance.new("TextBox")
  94. local MoonHealthLabel = Instance.new("TextLabel")
  95. local MoonHealthMinLabel = Instance.new("TextLabel")
  96. local MoonHealthMaxLabel = Instance.new("TextLabel")
  97. local MoonHealthMin = Instance.new("TextBox")
  98. local MoonHealthMax = Instance.new("TextBox")
  99. local TeleportScreen = Instance.new("TextButton")
  100.  
  101. MainGUI.Name = "MainGUI"
  102. MainGUI.Parent = game.CoreGui
  103. local MainCORE = game.CoreGui["MainGUI"]
  104.  
  105. TopFrame.Name = "TopFrame"
  106. TopFrame.Parent = MainGUI
  107. TopFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  108. TopFrame.BackgroundTransparency = 0
  109. TopFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  110. TopFrame.Active = true
  111. TopFrame.Selectable = true
  112. TopFrame.Draggable = true
  113. TopFrame.Visible = true
  114. TopFrame.Position = UDim2.new(1, -145, 0.5, -100)
  115. TopFrame.Size = UDim2.new(0, 140, 0, 30)
  116.  
  117. PSHeader.Name = "PSHeader"
  118. PSHeader.Parent = TopFrame
  119. PSHeader.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  120. PSHeader.BackgroundTransparency = 1
  121. PSHeader.BorderSizePixel = 0
  122. PSHeader.BorderColor3 = Color3.new(0, 0, 0)
  123. PSHeader.Position = UDim2.new(0, 5, 0, 5)
  124. PSHeader.Size = UDim2.new(0, 105, 0, 20)
  125. PSHeader.Font = Enum.Font.Fantasy
  126. PSHeader.Text = "Pet Simulator"
  127. PSHeader.TextColor3 = Color3.new(0, 0, 0)
  128. PSHeader.TextScaled = true
  129. PSHeader.TextSize = 17
  130.  
  131. ClosePS.Name = "ClosePS"
  132. ClosePS.Parent = TopFrame
  133. ClosePS.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  134. ClosePS.BorderColor3 = Color3.new(0, 0, 0)
  135. ClosePS.Position = UDim2.new(0, 115, 0, 5)
  136. ClosePS.Size = UDim2.new(0, 20, 0, 20)
  137. ClosePS.Font = Enum.Font.Fantasy
  138. ClosePS.Text = "X"
  139. ClosePS.TextColor3 = Color3.new(1, 0, 0)
  140. ClosePS.TextScaled = true
  141. ClosePS.TextSize = 17
  142.  
  143. MainFrame.Name = "MainFrame"
  144. MainFrame.Parent = TopFrame
  145. MainFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  146. MainFrame.BackgroundTransparency = 0
  147. MainFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  148. MainFrame.Position = UDim2.new(0, 0, 0, 30)
  149. MainFrame.Size = UDim2.new(0, 140, 0, 433)
  150. MainFrame.Visible = true
  151.  
  152. BuyScreen.Name = "BuyScreen"
  153. BuyScreen.Parent = MainFrame
  154. BuyScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  155. BuyScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  156. BuyScreen.Position = UDim2.new(0, 5, 0, 5)
  157. BuyScreen.Size = UDim2.new(0, 60, 0, 25)
  158. BuyScreen.Font = Enum.Font.Fantasy
  159. BuyScreen.TextColor3 = Color3.new(1, 1, 1)
  160. BuyScreen.Text = "SHOP"
  161. BuyScreen.TextSize = 17
  162. BuyScreen.TextWrapped = true
  163.  
  164. FarmCoins.Name = "FarmCoins"
  165. FarmCoins.Parent = MainFrame
  166. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  167. FarmCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  168. FarmCoins.Position = UDim2.new(0, 75, 0, 5)
  169. FarmCoins.Size = UDim2.new(0, 60, 0, 25)
  170. FarmCoins.Font = Enum.Font.Fantasy
  171. FarmCoins.TextColor3 = Color3.new(1, 1, 1)
  172. FarmCoins.Text = "FARM"
  173. FarmCoins.TextSize = 17
  174. FarmCoins.TextWrapped = true
  175.  
  176. WalkSpeed.Name = "WalkSpeed"
  177. WalkSpeed.Parent = MainFrame
  178. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  179. WalkSpeed.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  180. WalkSpeed.Position = UDim2.new(0, 5, 0, 40)
  181. WalkSpeed.Size = UDim2.new(0, 60, 0, 25)
  182. WalkSpeed.Font = Enum.Font.Fantasy
  183. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  184. WalkSpeed.Text = "Walk:1"
  185. WalkSpeed.TextSize = 17
  186. WalkSpeed.TextWrapped = true
  187.  
  188. JumpPower.Name = "JumpPower"
  189. JumpPower.Parent = MainFrame
  190. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  191. JumpPower.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  192. JumpPower.Position = UDim2.new(0, 75, 0, 40)
  193. JumpPower.Size = UDim2.new(0, 60, 0, 25)
  194. JumpPower.Font = Enum.Font.Fantasy
  195. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  196. JumpPower.Text = "Jump:1"
  197. JumpPower.TextSize = 17
  198. JumpPower.TextWrapped = true
  199.  
  200. TeleportScreen.Name = "TeleportScreen"
  201. TeleportScreen.Parent = MainFrame
  202. TeleportScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  203. TeleportScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  204. TeleportScreen.Position = UDim2.new(0, 5, 0, 75)
  205. TeleportScreen.Size = UDim2.new(0, 130, 0, 20)
  206. TeleportScreen.Font = Enum.Font.Fantasy
  207. TeleportScreen.TextColor3 = Color3.new(1, 1, 1)
  208. TeleportScreen.Text = "GAME TELEPORT"
  209. TeleportScreen.TextSize = 17
  210. TeleportScreen.TextWrapped = true
  211.  
  212. Spawn.Name = "Spawn"
  213. Spawn.Parent = MainFrame
  214. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  215. Spawn.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  216. Spawn.Position = UDim2.new(0, 5, 0, 100)
  217. Spawn.Size = UDim2.new(0, 130, 0, 20)
  218. Spawn.Font = Enum.Font.Fantasy
  219. Spawn.TextColor3 = Color3.new(1, 1, 1)
  220. Spawn.Text = "Spawn Area"
  221. Spawn.TextSize = 17
  222. Spawn.TextWrapped = true
  223.  
  224. Shop.Name = "Shop"
  225. Shop.Parent = MainFrame
  226. Shop.BackgroundColor3 = Color3.new(0, 0, 0)
  227. Shop.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  228. Shop.Position = UDim2.new(0, 5, 0, 125)
  229. Shop.Size = UDim2.new(0, 130, 0, 20)
  230. Shop.Font = Enum.Font.Fantasy
  231. Shop.TextColor3 = Color3.new(1, 1, 1)
  232. Shop.Text = "Egg Shop"
  233. Shop.TextSize = 17
  234. Shop.TextWrapped = true
  235.  
  236. Area2.Name = "Area2"
  237. Area2.Parent = MainFrame
  238. Area2.BackgroundColor3 = Color3.new(0, 0, 0)
  239. Area2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  240. Area2.Position = UDim2.new(0, 5, 0, 150)
  241. Area2.Size = UDim2.new(0, 130, 0, 20)
  242. Area2.Font = Enum.Font.Fantasy
  243. Area2.TextColor3 = Color3.new(1, 1, 1)
  244. Area2.Text = "25K Area"
  245. Area2.TextSize = 17
  246. Area2.TextWrapped = true
  247.  
  248. Area3.Name = "Area3"
  249. Area3.Parent = MainFrame
  250. Area3.BackgroundColor3 = Color3.new(0, 0, 0)
  251. Area3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  252. Area3.Position = UDim2.new(0, 5, 0, 175)
  253. Area3.Size = UDim2.new(0, 130, 0, 20)
  254. Area3.Font = Enum.Font.Fantasy
  255. Area3.TextColor3 = Color3.new(1, 1, 1)
  256. Area3.Text = "400K Area"
  257. Area3.TextSize = 17
  258. Area3.TextWrapped = true
  259.  
  260. Area4.Name = "Area4"
  261. Area4.Parent = MainFrame
  262. Area4.BackgroundColor3 = Color3.new(0, 0, 0)
  263. Area4.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  264. Area4.Position = UDim2.new(0, 5, 0, 200)
  265. Area4.Size = UDim2.new(0, 130, 0, 20)
  266. Area4.Font = Enum.Font.Fantasy
  267. Area4.TextColor3 = Color3.new(1, 1, 1)
  268. Area4.Text = "2.5M Area"
  269. Area4.TextSize = 17
  270. Area4.TextWrapped = true
  271.  
  272. Area5.Name = "Area5"
  273. Area5.Parent = MainFrame
  274. Area5.BackgroundColor3 = Color3.new(0, 0, 0)
  275. Area5.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  276. Area5.Position = UDim2.new(0, 5, 0, 225)
  277. Area5.Size = UDim2.new(0, 130, 0, 20)
  278. Area5.Font = Enum.Font.Fantasy
  279. Area5.TextColor3 = Color3.new(1, 1, 1)
  280. Area5.Text = "20M Area"
  281. Area5.TextSize = 17
  282. Area5.TextWrapped = true
  283.  
  284. Area6.Name = "Area6"
  285. Area6.Parent = MainFrame
  286. Area6.BackgroundColor3 = Color3.new(0, 0, 0)
  287. Area6.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  288. Area6.Position = UDim2.new(0, 5, 0, 250)
  289. Area6.Size = UDim2.new(0, 130, 0, 20)
  290. Area6.Font = Enum.Font.Fantasy
  291. Area6.TextColor3 = Color3.new(1, 1, 1)
  292. Area6.Text = "500M Area"
  293. Area6.TextSize = 17
  294. Area6.TextWrapped = true
  295.  
  296. Rocket.Name = "Rocket"
  297. Rocket.Parent = MainFrame
  298. Rocket.BackgroundColor3 = Color3.new(0, 0, 0)
  299. Rocket.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  300. Rocket.Position = UDim2.new(0, 5, 0, 275)
  301. Rocket.Size = UDim2.new(0, 130, 0, 20)
  302. Rocket.Font = Enum.Font.Fantasy
  303. Rocket.TextColor3 = Color3.new(1, 1, 1)
  304. Rocket.Text = "Rocket Area"
  305. Rocket.TextSize = 17
  306. Rocket.TextWrapped = true
  307.  
  308. AreaDivider.Name = "AreaDivider"
  309. AreaDivider.Parent = MainFrame
  310. AreaDivider.BackgroundColor3 = Color3.new(0, 0, 0)
  311. AreaDivider.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  312. AreaDivider.Position = UDim2.new(0, 0, 0, 300)
  313. AreaDivider.Size = UDim2.new(0, 140, 0, 3)
  314. AreaDivider.Font = Enum.Font.Fantasy
  315. AreaDivider.Text = ""
  316. AreaDivider.TextSize = 17
  317.  
  318. Area9.Name = "Area9"
  319. Area9.Parent = MainFrame
  320. Area9.BackgroundColor3 = Color3.new(0, 0, 0)
  321. Area9.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  322. Area9.Position = UDim2.new(0, 5, 0, 308)
  323. Area9.Size = UDim2.new(0, 130, 0, 20)
  324. Area9.Font = Enum.Font.Fantasy
  325. Area9.TextColor3 = Color3.new(1, 1, 1)
  326. Area9.Text = "Moon Spawn Point"
  327. Area9.TextSize = 17
  328. Area9.TextWrapped = true
  329.  
  330. Area8.Name = "Area8"
  331. Area8.Parent = MainFrame
  332. Area8.BackgroundColor3 = Color3.new(0, 0, 0)
  333. Area8.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  334. Area8.Position = UDim2.new(0, 5, 0, 333)
  335. Area8.Size = UDim2.new(0, 130, 0, 20)
  336. Area8.Font = Enum.Font.Fantasy
  337. Area8.TextColor3 = Color3.new(1, 1, 1)
  338. Area8.Text = "Moon Egg Shop"
  339. Area8.TextSize = 17
  340. Area8.TextWrapped = true
  341.  
  342. Area10.Name = "Area10"
  343. Area10.Parent = MainFrame
  344. Area10.BackgroundColor3 = Color3.new(0, 0, 0)
  345. Area10.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  346. Area10.Position = UDim2.new(0, 5, 0, 358)
  347. Area10.Size = UDim2.new(0, 130, 0, 20)
  348. Area10.Font = Enum.Font.Fantasy
  349. Area10.TextColor3 = Color3.new(1, 1, 1)
  350. Area10.Text = "Moon Area 2"
  351. Area10.TextSize = 17
  352. Area10.TextWrapped = true
  353.  
  354. CandyLand.Name = "CandyLand"
  355. CandyLand.Parent = MainFrame
  356. CandyLand.BackgroundColor3 = Color3.new(0, 0, 0)
  357. CandyLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  358. CandyLand.Position = UDim2.new(0, 5, 0, 383)
  359. CandyLand.Size = UDim2.new(0, 130, 0, 20)
  360. CandyLand.Font = Enum.Font.Fantasy
  361. CandyLand.TextColor3 = Color3.new(1, 1, 1)
  362. CandyLand.Text = "Candy Land"
  363. CandyLand.TextSize = 17
  364. CandyLand.TextWrapped = true
  365.  
  366. CyborgLand.Name = "CyborgLand"
  367. CyborgLand.Parent = MainFrame
  368. CyborgLand.BackgroundColor3 = Color3.new(0, 0, 0)
  369. CyborgLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  370. CyborgLand.Position = UDim2.new(0, 5, 0, 408)
  371. CyborgLand.Size = UDim2.new(0, 130, 0, 20)
  372. CyborgLand.Font = Enum.Font.Fantasy
  373. CyborgLand.TextColor3 = Color3.new(1, 1, 1)
  374. CyborgLand.Text = "Cyborg Land"
  375. CyborgLand.TextSize = 17
  376. CyborgLand.TextWrapped = true
  377.  
  378. BuyScreenFrame.Name = "BuyScreenFrame"
  379. BuyScreenFrame.Parent = TopFrame
  380. BuyScreenFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  381. BuyScreenFrame.BackgroundTransparency = 0
  382. BuyScreenFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  383. BuyScreenFrame.Position = UDim2.new(0, 0, 0, 30)
  384. BuyScreenFrame.Size = UDim2.new(0, 140, 0, 350)
  385. BuyScreenFrame.Visible = false
  386.  
  387. Locations.Name = "Locations"
  388. Locations.Parent = BuyScreenFrame
  389. Locations.BackgroundColor3 = Color3.new(0, 0, 0)
  390. Locations.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  391. Locations.Position = UDim2.new(0, 5, 0, 5)
  392. Locations.Size = UDim2.new(0, 130, 0, 25)
  393. Locations.Font = Enum.Font.Fantasy
  394. Locations.TextColor3 = Color3.new(1, 1, 1)
  395. Locations.Text = "LOCATIONS"
  396. Locations.TextSize = 17
  397. Locations.TextWrapped = true
  398.  
  399. BuyPetTitle1.Name = "BuyPetTitle1"
  400. BuyPetTitle1.Parent = BuyScreenFrame
  401. BuyPetTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  402. BuyPetTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  403. BuyPetTitle1.Position = UDim2.new(0, 5, 0, 50)
  404. BuyPetTitle1.Size = UDim2.new(0, 130, 0, 55)
  405. BuyPetTitle1.Font = Enum.Font.Fantasy
  406. BuyPetTitle1.TextColor3 = Color3.new(1, 1, 1)
  407. BuyPetTitle1.Text = "You must have the money to buy what you want"
  408. BuyPetTitle1.TextSize = 17
  409. BuyPetTitle1.TextWrapped = true
  410.  
  411. BuyPetTitle2.Name = "BuyPetTitle2"
  412. BuyPetTitle2.Parent = BuyScreenFrame
  413. BuyPetTitle2.BackgroundTransparency = 1
  414. BuyPetTitle2.BorderSizePixel = 0
  415. BuyPetTitle2.Position = UDim2.new(0, 5, 0, 110)
  416. BuyPetTitle2.Size = UDim2.new(0, 130, 0, 20)
  417. BuyPetTitle2.Font = Enum.Font.Fantasy
  418. BuyPetTitle2.TextColor3 = Color3.new(0, 0, 0)
  419. BuyPetTitle2.Text = "BUY PETS"
  420. BuyPetTitle2.TextSize = 17
  421. BuyPetTitle2.TextWrapped = true
  422.  
  423. BuyPetAmount1.Name = "BuyPetAmount1"
  424. BuyPetAmount1.Parent = BuyScreenFrame
  425. BuyPetAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  426. BuyPetAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  427. BuyPetAmount1.Position = UDim2.new(0, 6, 0, 129)
  428. BuyPetAmount1.Size = UDim2.new(0, 89, 0, 21)
  429. BuyPetAmount1.Font = Enum.Font.Fantasy
  430. BuyPetAmount1.TextColor3 = Color3.new(1, 1, 1)
  431. BuyPetAmount1.Text = "Quantity"
  432. BuyPetAmount1.TextSize = 17
  433. BuyPetAmount1.TextWrapped = true
  434.  
  435. BuyPetAmount2.Name = "BuyPetAmount2"
  436. BuyPetAmount2.Parent = BuyScreenFrame
  437. BuyPetAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  438. BuyPetAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  439. BuyPetAmount2.Position = UDim2.new(0, 95, 0, 130)
  440. BuyPetAmount2.Size = UDim2.new(0, 40, 0, 20)
  441. BuyPetAmount2.Font = Enum.Font.Fantasy
  442. BuyPetAmount2.TextColor3 = Color3.new(1, 1, 1)
  443. BuyPetAmount2.Text = "1"
  444. BuyPetAmount2.TextSize = 17
  445. BuyPetAmount2.TextWrapped = true
  446.  
  447. BuyPetTier1.Name = "BuyPetTier1"
  448. BuyPetTier1.Parent = BuyScreenFrame
  449. BuyPetTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  450. BuyPetTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  451. BuyPetTier1.Position = UDim2.new(0, 6, 0, 150)
  452. BuyPetTier1.Size = UDim2.new(0, 89, 0, 20)
  453. BuyPetTier1.Font = Enum.Font.Fantasy
  454. BuyPetTier1.TextColor3 = Color3.new(1, 1, 1)
  455. BuyPetTier1.Text = "Tier"
  456. BuyPetTier1.TextSize = 17
  457. BuyPetTier1.TextWrapped = true
  458.  
  459. BuyPetTier2.Name = "BuyPetTier2"
  460. BuyPetTier2.Parent = BuyScreenFrame
  461. BuyPetTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  462. BuyPetTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  463. BuyPetTier2.Position = UDim2.new(0, 95, 0, 150)
  464. BuyPetTier2.Size = UDim2.new(0, 40, 0, 20)
  465. BuyPetTier2.Font = Enum.Font.Fantasy
  466. BuyPetTier2.TextColor3 = Color3.new(1, 1, 1)
  467. BuyPetTier2.Text = "16"
  468. BuyPetTier2.TextSize = 17
  469. BuyPetTier2.TextWrapped = true
  470.  
  471. BuyPetGo.Name = "BuyPetGo"
  472. BuyPetGo.Parent = BuyScreenFrame
  473. BuyPetGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  474. BuyPetGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  475. BuyPetGo.Position = UDim2.new(0, 5, 0, 170)
  476. BuyPetGo.Size = UDim2.new(0, 130, 0, 20)
  477. BuyPetGo.Font = Enum.Font.Fantasy
  478. BuyPetGo.TextColor3 = Color3.new(1, 1, 1)
  479. BuyPetGo.Text = "Buy Eggs"
  480. BuyPetGo.TextSize = 17
  481. BuyPetGo.TextWrapped = true
  482.  
  483. BuyPetTitle3.Name = "BuyPetTitle3"
  484. BuyPetTitle3.Parent = BuyScreenFrame
  485. BuyPetTitle3.BackgroundColor3 = Color3.new(0, 0, 0)
  486. BuyPetTitle3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  487. BuyPetTitle3.Position = UDim2.new(0, 5, 0, 195)
  488. BuyPetTitle3.Size = UDim2.new(0, 130, 0, 20)
  489. BuyPetTitle3.Font = Enum.Font.Fantasy
  490. BuyPetTitle3.TextColor3 = Color3.new(1, 1, 1)
  491. BuyPetTitle3.Text = "In Tier type 1-16"
  492. BuyPetTitle3.TextSize = 17
  493. BuyPetTitle3.TextWrapped = true
  494.  
  495. BuyHatTitle2.Name = "BuyHatTitle2"
  496. BuyHatTitle2.Parent = BuyScreenFrame
  497. BuyHatTitle2.BackgroundTransparency = 1
  498. BuyHatTitle2.BorderSizePixel = 0
  499. BuyHatTitle2.Position = UDim2.new(0, 5, 0, 225)
  500. BuyHatTitle2.Size = UDim2.new(0, 130, 0, 20)
  501. BuyHatTitle2.Font = Enum.Font.Fantasy
  502. BuyHatTitle2.TextColor3 = Color3.new(0, 0, 0)
  503. BuyHatTitle2.Text = "BUY HATS"
  504. BuyHatTitle2.TextSize = 17
  505. BuyHatTitle2.TextWrapped = true
  506.  
  507. BuyHatAmount1.Name = "BuyHatAmount1"
  508. BuyHatAmount1.Parent = BuyScreenFrame
  509. BuyHatAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  510. BuyHatAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  511. BuyHatAmount1.Position = UDim2.new(0, 6, 0, 245)
  512. BuyHatAmount1.Size = UDim2.new(0, 89, 0, 20)
  513. BuyHatAmount1.Font = Enum.Font.Fantasy
  514. BuyHatAmount1.TextColor3 = Color3.new(1, 1, 1)
  515. BuyHatAmount1.Text = "Quantity"
  516. BuyHatAmount1.TextSize = 17
  517. BuyHatAmount1.TextWrapped = true
  518.  
  519. BuyHatAmount2.Name = "BuyHatAmount2"
  520. BuyHatAmount2.Parent = BuyScreenFrame
  521. BuyHatAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  522. BuyHatAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  523. BuyHatAmount2.Position = UDim2.new(0, 95, 0, 244)
  524. BuyHatAmount2.Size = UDim2.new(0, 40, 0, 21)
  525. BuyHatAmount2.Font = Enum.Font.Fantasy
  526. BuyHatAmount2.TextColor3 = Color3.new(1, 1, 1)
  527. BuyHatAmount2.Text = "1"
  528. BuyHatAmount2.TextSize = 17
  529. BuyHatAmount2.TextWrapped = true
  530.  
  531. BuyHatTier1.Name = "BuyHatTier1"
  532. BuyHatTier1.Parent = BuyScreenFrame
  533. BuyHatTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  534. BuyHatTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  535. BuyHatTier1.Position = UDim2.new(0, 6, 0, 265)
  536. BuyHatTier1.Size = UDim2.new(0, 60, 0, 20)
  537. BuyHatTier1.Font = Enum.Font.Fantasy
  538. BuyHatTier1.TextColor3 = Color3.new(1, 1, 1)
  539. BuyHatTier1.Text = "Tier"
  540. BuyHatTier1.TextSize = 17
  541. BuyHatTier1.TextWrapped = true
  542.  
  543. BuyHatTier2.Name = "BuyHatTier2"
  544. BuyHatTier2.Parent = BuyScreenFrame
  545. BuyHatTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  546. BuyHatTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  547. BuyHatTier2.Position = UDim2.new(0, 66, 0, 265)
  548. BuyHatTier2.Size = UDim2.new(0, 69, 0, 20)
  549. BuyHatTier2.Font = Enum.Font.Fantasy
  550. BuyHatTier2.TextColor3 = Color3.new(1, 1, 1)
  551. BuyHatTier2.Text = "Golden"
  552. BuyHatTier2.TextSize = 17
  553. BuyHatTier2.TextWrapped = true
  554.  
  555. BuyHatGo.Name = "BuyHatGo"
  556. BuyHatGo.Parent = BuyScreenFrame
  557. BuyHatGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  558. BuyHatGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  559. BuyHatGo.Position = UDim2.new(0, 5, 0, 285)
  560. BuyHatGo.Size = UDim2.new(0, 130, 0, 20)
  561. BuyHatGo.Font = Enum.Font.Fantasy
  562. BuyHatGo.TextColor3 = Color3.new(1, 1, 1)
  563. BuyHatGo.Text = "Buy Hats"
  564. BuyHatGo.TextSize = 17
  565. BuyHatGo.TextWrapped = true
  566.  
  567. BuyHatTitle1.Name = "BuyHatTitle1"
  568. BuyHatTitle1.Parent = BuyScreenFrame
  569. BuyHatTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  570. BuyHatTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  571. BuyHatTitle1.Position = UDim2.new(0, 5, 0, 310)
  572. BuyHatTitle1.Size = UDim2.new(0, 130, 0, 35)
  573. BuyHatTitle1.Font = Enum.Font.Fantasy
  574. BuyHatTitle1.TextColor3 = Color3.new(1, 1, 1)
  575. BuyHatTitle1.Text = "In Tier type 1-4 or Golden"
  576. BuyHatTitle1.TextSize = 17
  577. BuyHatTitle1.TextWrapped = true
  578.  
  579. FarmFrame.Name = "FarmFrame"
  580. FarmFrame.Parent = TopFrame
  581. FarmFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  582. FarmFrame.BackgroundTransparency = 0
  583. FarmFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  584. FarmFrame.Position = UDim2.new(0, 0, 0, 30)
  585. FarmFrame.Size = UDim2.new(0, 140, 0, 351)
  586. FarmFrame.Visible = false
  587.  
  588. Locations2.Name = "Locations2"
  589. Locations2.Parent = FarmFrame
  590. Locations2.BackgroundColor3 = Color3.new(0, 0, 0)
  591. Locations2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  592. Locations2.Position = UDim2.new(0, 5, 0, 5)
  593. Locations2.Size = UDim2.new(0, 130, 0, 25)
  594. Locations2.Font = Enum.Font.Fantasy
  595. Locations2.TextColor3 = Color3.new(1, 1, 1)
  596. Locations2.Text = "LOCATIONS"
  597. Locations2.TextSize = 17
  598. Locations2.TextWrapped = true
  599.  
  600. AllHealthLabel.Name = "AllHealthLabel"
  601. AllHealthLabel.Parent = FarmFrame
  602. AllHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  603. AllHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  604. AllHealthLabel.Position = UDim2.new(0, 5, 0, 50)
  605. AllHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  606. AllHealthLabel.Font = Enum.Font.Fantasy
  607. AllHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  608. AllHealthLabel.Text = "Coin/Chest Health"
  609. AllHealthLabel.TextSize = 17
  610. AllHealthLabel.TextWrapped = true
  611.  
  612. AllHealthMinLabel.Name = "AllHealthMinLabel"
  613. AllHealthMinLabel.Parent = FarmFrame
  614. AllHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  615. AllHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  616. AllHealthMinLabel.Position = UDim2.new(0, 5, 0, 71)
  617. AllHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  618. AllHealthMinLabel.Font = Enum.Font.Fantasy
  619. AllHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  620. AllHealthMinLabel.Text = "Min"
  621. AllHealthMinLabel.TextSize = 17
  622. AllHealthMinLabel.TextWrapped = true
  623.  
  624. AllHealthMin.Name = "AllHealthMin"
  625. AllHealthMin.Parent = FarmFrame
  626. AllHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  627. AllHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  628. AllHealthMin.Position = UDim2.new(0, 46, 0, 71)
  629. AllHealthMin.Size = UDim2.new(0, 89, 0, 20)
  630. AllHealthMin.Font = Enum.Font.Fantasy
  631. AllHealthMin.TextColor3 = Color3.new(1, 1, 1)
  632. AllHealthMin.Text = "1"
  633. AllHealthMin.TextSize = 17
  634. AllHealthMin.TextWrapped = true
  635.  
  636. AllHealthMaxLabel.Name = "AllHealthMaxLabel"
  637. AllHealthMaxLabel.Parent = FarmFrame
  638. AllHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  639. AllHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  640. AllHealthMaxLabel.Position = UDim2.new(0, 5, 0, 92)
  641. AllHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  642. AllHealthMaxLabel.Font = Enum.Font.Fantasy
  643. AllHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  644. AllHealthMaxLabel.Text = "Max"
  645. AllHealthMaxLabel.TextSize = 17
  646. AllHealthMaxLabel.TextWrapped = true
  647.  
  648. AllHealthMax.Name = "AllHealthMax"
  649. AllHealthMax.Parent = FarmFrame
  650. AllHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  651. AllHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  652. AllHealthMax.Position = UDim2.new(0, 46, 0, 92)
  653. AllHealthMax.Size = UDim2.new(0, 89, 0, 20)
  654. AllHealthMax.Font = Enum.Font.Fantasy
  655. AllHealthMax.TextColor3 = Color3.new(1, 1, 1)
  656. AllHealthMax.Text = "10e6"
  657. AllHealthMax.TextSize = 17
  658. AllHealthMax.TextWrapped = true
  659.  
  660. StartFarming.Name = "StartFarming"
  661. StartFarming.Parent = FarmFrame
  662. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  663. StartFarming.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  664. StartFarming.Position = UDim2.new(0, 5, 0, 117)
  665. StartFarming.Size = UDim2.new(0, 130, 0, 25)
  666. StartFarming.Font = Enum.Font.Fantasy
  667. StartFarming.TextColor3 = Color3.new(1, 1, 1)
  668. StartFarming.Text = "Mine ALL: OFF"
  669. StartFarming.TextSize = 17
  670. StartFarming.TextWrapped = true
  671.  
  672. EarthHealthLabel.Name = "EarthHealthLabel"
  673. EarthHealthLabel.Parent = FarmFrame
  674. EarthHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  675. EarthHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  676. EarthHealthLabel.Position = UDim2.new(0, 5, 0, 152)
  677. EarthHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  678. EarthHealthLabel.Font = Enum.Font.Fantasy
  679. EarthHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  680. EarthHealthLabel.Text = "Coin/Chest Health"
  681. EarthHealthLabel.TextSize = 17
  682. EarthHealthLabel.TextWrapped = true
  683.  
  684. EarthHealthMinLabel.Name = "EarthHealthMinLabel"
  685. EarthHealthMinLabel.Parent = FarmFrame
  686. EarthHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  687. EarthHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  688. EarthHealthMinLabel.Position = UDim2.new(0, 5, 0, 173)
  689. EarthHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  690. EarthHealthMinLabel.Font = Enum.Font.Fantasy
  691. EarthHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  692. EarthHealthMinLabel.Text = "Min"
  693. EarthHealthMinLabel.TextSize = 17
  694. EarthHealthMinLabel.TextWrapped = true
  695.  
  696. EarthHealthMin.Name = "EarthHealthMin"
  697. EarthHealthMin.Parent = FarmFrame
  698. EarthHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  699. EarthHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  700. EarthHealthMin.Position = UDim2.new(0, 46, 0, 173)
  701. EarthHealthMin.Size = UDim2.new(0, 89, 0, 20)
  702. EarthHealthMin.Font = Enum.Font.Fantasy
  703. EarthHealthMin.TextColor3 = Color3.new(1, 1, 1)
  704. EarthHealthMin.Text = "1"
  705. EarthHealthMin.TextSize = 17
  706. EarthHealthMin.TextWrapped = true
  707.  
  708. EarthHealthMaxLabel.Name = "EarthHealthMaxLabel"
  709. EarthHealthMaxLabel.Parent = FarmFrame
  710. EarthHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  711. EarthHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  712. EarthHealthMaxLabel.Position = UDim2.new(0, 5, 0, 194)
  713. EarthHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  714. EarthHealthMaxLabel.Font = Enum.Font.Fantasy
  715. EarthHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  716. EarthHealthMaxLabel.Text = "Max"
  717. EarthHealthMaxLabel.TextSize = 17
  718. EarthHealthMaxLabel.TextWrapped = true
  719.  
  720. EarthHealthMax.Name = "EarthHealthMax"
  721. EarthHealthMax.Parent = FarmFrame
  722. EarthHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  723. EarthHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  724. EarthHealthMax.Position = UDim2.new(0, 46, 0, 194)
  725. EarthHealthMax.Size = UDim2.new(0, 89, 0, 20)
  726. EarthHealthMax.Font = Enum.Font.Fantasy
  727. EarthHealthMax.TextColor3 = Color3.new(1, 1, 1)
  728. EarthHealthMax.Text = "20e06"
  729. EarthHealthMax.TextSize = 17
  730. EarthHealthMax.TextWrapped = true
  731.  
  732. StartFarmingEarth.Name = "StartFarmingEarth"
  733. StartFarmingEarth.Parent = FarmFrame
  734. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  735. StartFarmingEarth.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  736. StartFarmingEarth.Position = UDim2.new(0, 5, 0, 219)
  737. StartFarmingEarth.Size = UDim2.new(0, 130, 0, 25)
  738. StartFarmingEarth.Font = Enum.Font.Fantasy
  739. StartFarmingEarth.TextColor3 = Color3.new(1, 1, 1)
  740. StartFarmingEarth.Text = "Mine Earth: OFF"
  741. StartFarmingEarth.TextSize = 17
  742. StartFarmingEarth.TextWrapped = true
  743.  
  744. MoonHealthLabel.Name = "MoonHealthLabel"
  745. MoonHealthLabel.Parent = FarmFrame
  746. MoonHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  747. MoonHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  748. MoonHealthLabel.Position = UDim2.new(0, 5, 0, 254)
  749. MoonHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  750. MoonHealthLabel.Font = Enum.Font.Fantasy
  751. MoonHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  752. MoonHealthLabel.Text = "Coin/Chest Health"
  753. MoonHealthLabel.TextSize = 17
  754. MoonHealthLabel.TextWrapped = true
  755.  
  756. MoonHealthMinLabel.Name = "MoonHealthMinLabel"
  757. MoonHealthMinLabel.Parent = FarmFrame
  758. MoonHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  759. MoonHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  760. MoonHealthMinLabel.Position = UDim2.new(0, 5, 0, 275)
  761. MoonHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  762. MoonHealthMinLabel.Font = Enum.Font.Fantasy
  763. MoonHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  764. MoonHealthMinLabel.Text = "Min"
  765. MoonHealthMinLabel.TextSize = 17
  766. MoonHealthMinLabel.TextWrapped = true
  767.  
  768. MoonHealthMin.Name = "MoonHealthMin"
  769. MoonHealthMin.Parent = FarmFrame
  770. MoonHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  771. MoonHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  772. MoonHealthMin.Position = UDim2.new(0, 46, 0, 275)
  773. MoonHealthMin.Size = UDim2.new(0, 89, 0, 20)
  774. MoonHealthMin.Font = Enum.Font.Fantasy
  775. MoonHealthMin.TextColor3 = Color3.new(1, 1, 1)
  776. MoonHealthMin.Text = "10e04"
  777. MoonHealthMin.TextSize = 17
  778. MoonHealthMin.TextWrapped = true
  779.  
  780. MoonHealthMaxLabel.Name = "MoonHealthMaxLabel"
  781. MoonHealthMaxLabel.Parent = FarmFrame
  782. MoonHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  783. MoonHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  784. MoonHealthMaxLabel.Position = UDim2.new(0, 5, 0, 296)
  785. MoonHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  786. MoonHealthMaxLabel.Font = Enum.Font.Fantasy
  787. MoonHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  788. MoonHealthMaxLabel.Text = "Max"
  789. MoonHealthMaxLabel.TextSize = 17
  790. MoonHealthMaxLabel.TextWrapped = true
  791.  
  792. MoonHealthMax.Name = "MoonHealthMax"
  793. MoonHealthMax.Parent = FarmFrame
  794. MoonHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  795. MoonHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  796. MoonHealthMax.Position = UDim2.new(0, 46, 0, 296)
  797. MoonHealthMax.Size = UDim2.new(0, 89, 0, 20)
  798. MoonHealthMax.Font = Enum.Font.Fantasy
  799. MoonHealthMax.TextColor3 = Color3.new(1, 1, 1)
  800. MoonHealthMax.Text = "60e06"
  801. MoonHealthMax.TextSize = 17
  802. MoonHealthMax.TextWrapped = true
  803.  
  804. StartFarmingMoon.Name = "StartFarmingMoon"
  805. StartFarmingMoon.Parent = FarmFrame
  806. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  807. StartFarmingMoon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  808. StartFarmingMoon.Position = UDim2.new(0, 5, 0, 321)
  809. StartFarmingMoon.Size = UDim2.new(0, 130, 0, 25)
  810. StartFarmingMoon.Font = Enum.Font.Fantasy
  811. StartFarmingMoon.TextColor3 = Color3.new(1, 1, 1)
  812. StartFarmingMoon.Text = "Mine Moon: OFF"
  813. StartFarmingMoon.TextSize = 17
  814. StartFarmingMoon.TextWrapped = true
  815.  
  816. -- Close GUI --
  817. ClosePS.MouseButton1Down:connect(function()
  818. MainGUI:destroy()
  819. end)
  820.  
  821. BuyScreen.MouseButton1Click:connect(function()
  822. MainFrame.Visible = false
  823. BuyScreenFrame.Visible = true
  824. end)
  825.  
  826. Locations.MouseButton1Click:connect(function()
  827. MainFrame.Visible = true
  828. BuyScreenFrame.Visible = false
  829. end)
  830.  
  831. FarmCoins.MouseButton1Click:connect(function()
  832. MainFrame.Visible = false
  833. FarmFrame.Visible = true
  834. end)
  835.  
  836. Locations2.MouseButton1Click:connect(function()
  837. MainFrame.Visible = true
  838. FarmFrame.Visible = false
  839. end)
  840.  
  841. TeleportScreen.MouseButton1Click:connect(function()
  842. game.Players.LocalPlayer.PlayerGui.Teleport.Enabled = true
  843. end)
  844.  
  845. -- Farm --
  846.  
  847. StartFarming.MouseButton1Click:connect(function()
  848. if not FarmStart then
  849. FarmArea = "all"
  850. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  851. StartFarming.BackgroundColor3 = Color3.new(0, 0.3, 0)
  852. StartFarming.Text = "Mine ALL: ON"
  853. PetTable()
  854. FarmStart = true
  855. else
  856. FarmStart = false
  857. FarmArea = "none"
  858. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  859. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  860. StartFarming.Text = "Mine ALL: OFF"
  861. end
  862. end)
  863.  
  864. StartFarmingEarth.MouseButton1Click:connect(function()
  865. if not FarmStart then
  866. FarmArea = "earth"
  867. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  868. StartFarmingEarth.BackgroundColor3 = Color3.new(0, 0.3, 0)
  869. StartFarmingEarth.Text = "Mine Earth: ON"
  870. PetTable()
  871. FarmStart = true
  872. else
  873. FarmStart = false
  874. FarmArea = "none"
  875. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  876. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  877. StartFarmingEarth.Text = "Mine Earth: OFF"
  878. end
  879. end)
  880.  
  881. StartFarmingMoon.MouseButton1Click:connect(function()
  882. if not FarmStart then
  883. FarmArea = "moon"
  884. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  885. StartFarmingMoon.BackgroundColor3 = Color3.new(0, 0.3, 0)
  886. StartFarmingMoon.Text = "Mine Moon: ON"
  887. PetTable()
  888. FarmStart = true
  889. else
  890. FarmStart = false
  891. FarmArea = "none"
  892. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  893. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  894. StartFarmingMoon.Text = "Mine Moon: OFF"
  895. end
  896. end)
  897.  
  898. function Mine(Coin)
  899. while FarmStart and (Coin:FindFirstChild("Health") ~= nil) and (Coin:FindFirstChild("Health").Value > 0) do
  900. wait(0.1)
  901. for PetNumber,_ in pairs(petTable) do
  902. workspace["__REMOTES"]["Game"]["Coins"]:FireServer("Mine",Coin.Name,petTable[PetNumber]["LEVEL"],petTable[PetNumber]["ID"])
  903. end
  904. end
  905. end
  906.  
  907. spawn(function()
  908. while true do
  909. while FarmStart do
  910. for _,Coin in next, workspace["__THINGS"].Coins:GetChildren() do
  911. if (done ~= Coin) then
  912. if (FarmArea == "all") then
  913. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  914. if Coin.Health.Value > tonumber(AllHealthMin.Text) and Coin.Health.Value < tonumber(AllHealthMax.Text) then
  915. Mine(Coin)
  916. end
  917. end
  918. elseif (FarmArea == "earth") then
  919. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  920. if Coin.Position.Y < 100 then
  921. if Coin.Health.Value > tonumber(EarthHealthMin.Text) and Coin.Health.Value < tonumber(EarthHealthMax.Text) then
  922. Mine(Coin)
  923. end
  924. end
  925. end
  926. elseif (FarmArea == "moon") then
  927. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  928. if Coin.Position.Y > 100 then
  929. if Coin.Health.Value > tonumber(MoonHealthMin.Text) and Coin.Health.Value < tonumber(MoonHealthMax.Text) then
  930. Mine(Coin)
  931. end
  932. end
  933. end
  934. else
  935. end
  936. end
  937. end
  938. wait()
  939. end
  940. wait()
  941. end
  942. end)
  943.  
  944. WalkSpeed.MouseButton1Click:connect(function()
  945. if WalkNumber == "1" then
  946. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0.5)
  947. WalkSpeed.Text = "Walk:2"
  948. WalkNumber = "2"
  949. Walk = 30
  950. elseif WalkNumber == "2" then
  951. WalkSpeed.BackgroundColor3 = Color3.new(0.5, 0, 0)
  952. WalkSpeed.Text = "Walk:3"
  953. WalkNumber = "3"
  954. Walk = 80
  955. elseif WalkNumber == "3" then
  956. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  957. WalkSpeed.Text = "Walk:1"
  958. WalkNumber = "1"
  959. Walk = 16
  960. else
  961. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  962. WalkSpeed.Text = "Walk:1"
  963. WalkNumber = "1"
  964. Walk = 16
  965. end
  966. player = game.Players.LocalPlayer
  967. player.Character.Humanoid.WalkSpeed = Walk
  968. end)
  969.  
  970. JumpPower.MouseButton1Click:connect(function()
  971. if JumpNumber == "1" then
  972. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0.5)
  973. JumpPower.Text = "Jump:2"
  974. JumpNumber = "2"
  975. Jump = 150
  976. elseif JumpNumber == "2" then
  977. JumpPower.BackgroundColor3 = Color3.new(0.5, 0, 0)
  978. JumpPower.Text = "Jump:3"
  979. JumpNumber = "3"
  980. Jump = 400
  981. elseif JumpNumber == "3" then
  982. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  983. JumpPower.Text = "Jump:1"
  984. JumpNumber = "1"
  985. Jump = 50
  986. else
  987. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  988. JumpPower.Text = "Jump:1"
  989. JumpNumber = "1"
  990. Jump = 50
  991. end
  992. player = game.Players.LocalPlayer
  993. player.Character.Humanoid.JumpPower = Jump
  994. end)
  995.  
  996. -- Buy Eggs and Hats --
  997.  
  998. BuyPetGo.MouseButton1Click:connect(function()
  999. for i = 1, tonumber(BuyPetAmount2.Text) do
  1000. if tonumber(BuyPetAmount2.Text) == 0 then break end
  1001. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Eggs", "Tier " ..BuyPetTier2.Text)
  1002. wait()
  1003. end
  1004. end)
  1005.  
  1006. BuyHatGo.MouseButton1Click:connect(function()
  1007. for i = 1, tonumber(BuyHatAmount2.Text) do
  1008. if tonumber(BuyHatAmount2.Text) == 0 then break end
  1009. if BuyHatTier2.Text:lower() == "golden" then
  1010. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Golden")
  1011. else
  1012. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Tier " ..BuyHatTier2.Text)
  1013. end
  1014. wait()
  1015. end
  1016. end)
  1017.  
  1018. -- TP to locations --
  1019. Spawn.MouseButton1Click:connect(function()
  1020. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(526, -36.292, 909)
  1021. end)
  1022.  
  1023. Shop.MouseButton1Click:connect(function()
  1024. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(647.35, -33.6, 890.23)
  1025. end)
  1026.  
  1027. Area2.MouseButton1Click:connect(function()
  1028. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13, -37, 885)
  1029. end)
  1030.  
  1031. Area3.MouseButton1Click:connect(function()
  1032. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-364, -37, 885)
  1033. end)
  1034.  
  1035. Area4.MouseButton1Click:connect(function()
  1036. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-760, -37, 885)
  1037. end)
  1038.  
  1039. Area5.MouseButton1Click:connect(function()
  1040. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1160, -37, 885)
  1041. end)
  1042.  
  1043. Area6.MouseButton1Click:connect(function()
  1044. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1500, -37, 885)
  1045. end)
  1046.  
  1047. Rocket.MouseButton1Click:connect(function()
  1048. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1828, -37, 897)
  1049. end)
  1050.  
  1051. Area8.MouseButton1Click:connect(function()
  1052. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(616, 146, -1720)
  1053. end)
  1054.  
  1055. Area9.MouseButton1Click:connect(function()
  1056. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(527, 145, -1762)
  1057. end)
  1058.  
  1059. Area10.MouseButton1Click:connect(function()
  1060. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.8, 145, -1718)
  1061. end)
  1062.  
  1063. CandyLand.MouseButton1Click:connect(function()
  1064. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13.7, 145, -1449.8)
  1065. end)
  1066.  
  1067. CyborgLand.MouseButton1Click:connect(function()
  1068. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-283.5, 145, -1704.4)
  1069. end)
  1070. FarmStart = false
  1071. FarmArea = "none"
  1072. WalkNumber = "1"
  1073. JumpNumber = "1"
  1074.  
  1075. local petTable = {}
  1076. local Try = 0
  1077. local Amount = 0
  1078.  
  1079. function PetTable()
  1080. local Stats = workspace["__REMOTES"]["Core"]["Get Other Stats"]:InvokeServer()
  1081. local Times = #Stats[game.Players.LocalPlayer.Name]["Save"]["Pets"]
  1082. local Name = game:GetService("Players").LocalPlayer.Name
  1083. petTable = {}
  1084. Try = 0
  1085. Amount = 0
  1086. for i=1,Times do
  1087. if(Stats[Name]["Save"]["Pets"][Times].e == true) then
  1088. Amount = Amount + 1
  1089. petTable[Amount] = {
  1090. ["ID"] = tonumber(Stats[Name]["Save"]["Pets"][Times].id),
  1091. ["LEVEL"] = tonumber(Stats[Name]["Save"]["Pets"][Times].l),
  1092. }
  1093. end
  1094. Times = Times - 1
  1095. end
  1096. end
  1097.  
  1098. local MainGUI = Instance.new("ScreenGui")
  1099. local TopFrame = Instance.new("Frame")
  1100. local PSHeader = Instance.new("TextLabel")
  1101. local ClosePS = Instance.new("TextButton")
  1102. local StatsFrame = Instance.new("Frame")
  1103. local FarmCoins = Instance.new("TextButton")
  1104. local FarmFrame = Instance.new("Frame")
  1105. local PowerTextInfo1 = Instance.new("TextLabel")
  1106. local PowerText1 = Instance.new("TextLabel")
  1107. local FarmPower = Instance.new("TextBox")
  1108. local StartFarming = Instance.new("TextButton")
  1109. local StartFarmingEarth = Instance.new("TextButton")
  1110. local StartFarmingMoon = Instance.new("TextButton")
  1111. local WalkSpeed = Instance.new("TextButton")
  1112. local JumpPower = Instance.new("TextButton")
  1113. local BuyScreen = Instance.new("TextButton")
  1114. local BuyScreenFrame = Instance.new("Frame")
  1115. local BuyPetTitle1 = Instance.new("TextLabel")
  1116. local BuyPetTitle2 = Instance.new("TextLabel")
  1117. local BuyPetTitle3 = Instance.new("TextLabel")
  1118. local BuyPetAmount1 = Instance.new("TextLabel")
  1119. local BuyPetAmount2 = Instance.new("TextBox")
  1120. local BuyPetAmount3 = Instance.new("TextBox")
  1121. local BuyPetTier1 = Instance.new("TextLabel")
  1122. local BuyPetTier2 = Instance.new("TextBox")
  1123. local BuyPetGo = Instance.new("TextButton")
  1124. local BuyHatTitle1 = Instance.new("TextLabel")
  1125. local BuyHatTitle2 = Instance.new("TextLabel")
  1126. local BuyHatAmount1 = Instance.new("TextLabel")
  1127. local BuyHatAmount2 = Instance.new("TextBox")
  1128. local BuyHatTier1 = Instance.new("TextLabel")
  1129. local BuyHatTier2 = Instance.new("TextBox")
  1130. local BuyHatGo = Instance.new("TextButton")
  1131. local Locations = Instance.new("TextButton")
  1132. local Locations2 = Instance.new("TextButton")
  1133. local MainFrame = Instance.new("Frame")
  1134. local Stats = Instance.new("TextButton")
  1135. local Spawn = Instance.new("TextButton")
  1136. local Shop = Instance.new("TextButton")
  1137. local Area2 = Instance.new("TextButton")
  1138. local Area3 = Instance.new("TextButton")
  1139. local Area4 = Instance.new("TextButton")
  1140. local Area5 = Instance.new("TextButton")
  1141. local Area6 = Instance.new("TextButton")
  1142. local Area7 = Instance.new("TextButton")
  1143. local Area8 = Instance.new("TextButton")
  1144. local Area9 = Instance.new("TextButton")
  1145. local Area10 = Instance.new("TextButton")
  1146. local Area11 = Instance.new("TextButton")
  1147. local Area12 = Instance.new("TextButton")
  1148. local Rocket = Instance.new("TextButton")
  1149. local CandyLand = Instance.new("TextButton")
  1150. local CyborgLand = Instance.new("TextButton")
  1151. local AreaDivider = Instance.new("TextLabel")
  1152. local AllHealthLabel = Instance.new("TextLabel")
  1153. local AllHealthMinLabel = Instance.new("TextLabel")
  1154. local AllHealthMaxLabel = Instance.new("TextLabel")
  1155. local AllHealthMin = Instance.new("TextBox")
  1156. local AllHealthMax = Instance.new("TextBox")
  1157. local EarthHealthLabel = Instance.new("TextLabel")
  1158. local EarthHealthMinLabel = Instance.new("TextLabel")
  1159. local EarthHealthMaxLabel = Instance.new("TextLabel")
  1160. local EarthHealthMin = Instance.new("TextBox")
  1161. local EarthHealthMax = Instance.new("TextBox")
  1162. local MoonHealthLabel = Instance.new("TextLabel")
  1163. local MoonHealthMinLabel = Instance.new("TextLabel")
  1164. local MoonHealthMaxLabel = Instance.new("TextLabel")
  1165. local MoonHealthMin = Instance.new("TextBox")
  1166. local MoonHealthMax = Instance.new("TextBox")
  1167. local TeleportScreen = Instance.new("TextButton")
  1168.  
  1169. MainGUI.Name = "MainGUI"
  1170. MainGUI.Parent = game.CoreGui
  1171. local MainCORE = game.CoreGui["MainGUI"]
  1172.  
  1173. TopFrame.Name = "TopFrame"
  1174. TopFrame.Parent = MainGUI
  1175. TopFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  1176. TopFrame.BackgroundTransparency = 0
  1177. TopFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1178. TopFrame.Active = true
  1179. TopFrame.Selectable = true
  1180. TopFrame.Draggable = true
  1181. TopFrame.Visible = true
  1182. TopFrame.Position = UDim2.new(1, -145, 0.5, -100)
  1183. TopFrame.Size = UDim2.new(0, 140, 0, 30)
  1184.  
  1185. PSHeader.Name = "PSHeader"
  1186. PSHeader.Parent = TopFrame
  1187. PSHeader.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  1188. PSHeader.BackgroundTransparency = 1
  1189. PSHeader.BorderSizePixel = 0
  1190. PSHeader.BorderColor3 = Color3.new(0, 0, 0)
  1191. PSHeader.Position = UDim2.new(0, 5, 0, 5)
  1192. PSHeader.Size = UDim2.new(0, 105, 0, 20)
  1193. PSHeader.Font = Enum.Font.Fantasy
  1194. PSHeader.Text = "Pet Simulator"
  1195. PSHeader.TextColor3 = Color3.new(0, 0, 0)
  1196. PSHeader.TextScaled = true
  1197. PSHeader.TextSize = 17
  1198.  
  1199. ClosePS.Name = "ClosePS"
  1200. ClosePS.Parent = TopFrame
  1201. ClosePS.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  1202. ClosePS.BorderColor3 = Color3.new(0, 0, 0)
  1203. ClosePS.Position = UDim2.new(0, 115, 0, 5)
  1204. ClosePS.Size = UDim2.new(0, 20, 0, 20)
  1205. ClosePS.Font = Enum.Font.Fantasy
  1206. ClosePS.Text = "X"
  1207. ClosePS.TextColor3 = Color3.new(1, 0, 0)
  1208. ClosePS.TextScaled = true
  1209. ClosePS.TextSize = 17
  1210.  
  1211. MainFrame.Name = "MainFrame"
  1212. MainFrame.Parent = TopFrame
  1213. MainFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  1214. MainFrame.BackgroundTransparency = 0
  1215. MainFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1216. MainFrame.Position = UDim2.new(0, 0, 0, 30)
  1217. MainFrame.Size = UDim2.new(0, 140, 0, 433)
  1218. MainFrame.Visible = true
  1219.  
  1220. BuyScreen.Name = "BuyScreen"
  1221. BuyScreen.Parent = MainFrame
  1222. BuyScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  1223. BuyScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1224. BuyScreen.Position = UDim2.new(0, 5, 0, 5)
  1225. BuyScreen.Size = UDim2.new(0, 60, 0, 25)
  1226. BuyScreen.Font = Enum.Font.Fantasy
  1227. BuyScreen.TextColor3 = Color3.new(1, 1, 1)
  1228. BuyScreen.Text = "SHOP"
  1229. BuyScreen.TextSize = 17
  1230. BuyScreen.TextWrapped = true
  1231.  
  1232. FarmCoins.Name = "FarmCoins"
  1233. FarmCoins.Parent = MainFrame
  1234. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  1235. FarmCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1236. FarmCoins.Position = UDim2.new(0, 75, 0, 5)
  1237. FarmCoins.Size = UDim2.new(0, 60, 0, 25)
  1238. FarmCoins.Font = Enum.Font.Fantasy
  1239. FarmCoins.TextColor3 = Color3.new(1, 1, 1)
  1240. FarmCoins.Text = "FARM"
  1241. FarmCoins.TextSize = 17
  1242. FarmCoins.TextWrapped = true
  1243.  
  1244. WalkSpeed.Name = "WalkSpeed"
  1245. WalkSpeed.Parent = MainFrame
  1246. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  1247. WalkSpeed.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1248. WalkSpeed.Position = UDim2.new(0, 5, 0, 40)
  1249. WalkSpeed.Size = UDim2.new(0, 60, 0, 25)
  1250. WalkSpeed.Font = Enum.Font.Fantasy
  1251. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  1252. WalkSpeed.Text = "Walk:1"
  1253. WalkSpeed.TextSize = 17
  1254. WalkSpeed.TextWrapped = true
  1255.  
  1256. JumpPower.Name = "JumpPower"
  1257. JumpPower.Parent = MainFrame
  1258. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  1259. JumpPower.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1260. JumpPower.Position = UDim2.new(0, 75, 0, 40)
  1261. JumpPower.Size = UDim2.new(0, 60, 0, 25)
  1262. JumpPower.Font = Enum.Font.Fantasy
  1263. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  1264. JumpPower.Text = "Jump:1"
  1265. JumpPower.TextSize = 17
  1266. JumpPower.TextWrapped = true
  1267.  
  1268. TeleportScreen.Name = "TeleportScreen"
  1269. TeleportScreen.Parent = MainFrame
  1270. TeleportScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  1271. TeleportScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1272. TeleportScreen.Position = UDim2.new(0, 5, 0, 75)
  1273. TeleportScreen.Size = UDim2.new(0, 130, 0, 20)
  1274. TeleportScreen.Font = Enum.Font.Fantasy
  1275. TeleportScreen.TextColor3 = Color3.new(1, 1, 1)
  1276. TeleportScreen.Text = "GAME TELEPORT"
  1277. TeleportScreen.TextSize = 17
  1278. TeleportScreen.TextWrapped = true
  1279.  
  1280. Spawn.Name = "Spawn"
  1281. Spawn.Parent = MainFrame
  1282. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  1283. Spawn.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1284. Spawn.Position = UDim2.new(0, 5, 0, 100)
  1285. Spawn.Size = UDim2.new(0, 130, 0, 20)
  1286. Spawn.Font = Enum.Font.Fantasy
  1287. Spawn.TextColor3 = Color3.new(1, 1, 1)
  1288. Spawn.Text = "Spawn Area"
  1289. Spawn.TextSize = 17
  1290. Spawn.TextWrapped = true
  1291.  
  1292. Shop.Name = "Shop"
  1293. Shop.Parent = MainFrame
  1294. Shop.BackgroundColor3 = Color3.new(0, 0, 0)
  1295. Shop.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1296. Shop.Position = UDim2.new(0, 5, 0, 125)
  1297. Shop.Size = UDim2.new(0, 130, 0, 20)
  1298. Shop.Font = Enum.Font.Fantasy
  1299. Shop.TextColor3 = Color3.new(1, 1, 1)
  1300. Shop.Text = "Egg Shop"
  1301. Shop.TextSize = 17
  1302. Shop.TextWrapped = true
  1303.  
  1304. Area2.Name = "Area2"
  1305. Area2.Parent = MainFrame
  1306. Area2.BackgroundColor3 = Color3.new(0, 0, 0)
  1307. Area2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1308. Area2.Position = UDim2.new(0, 5, 0, 150)
  1309. Area2.Size = UDim2.new(0, 130, 0, 20)
  1310. Area2.Font = Enum.Font.Fantasy
  1311. Area2.TextColor3 = Color3.new(1, 1, 1)
  1312. Area2.Text = "25K Area"
  1313. Area2.TextSize = 17
  1314. Area2.TextWrapped = true
  1315.  
  1316. Area3.Name = "Area3"
  1317. Area3.Parent = MainFrame
  1318. Area3.BackgroundColor3 = Color3.new(0, 0, 0)
  1319. Area3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1320. Area3.Position = UDim2.new(0, 5, 0, 175)
  1321. Area3.Size = UDim2.new(0, 130, 0, 20)
  1322. Area3.Font = Enum.Font.Fantasy
  1323. Area3.TextColor3 = Color3.new(1, 1, 1)
  1324. Area3.Text = "400K Area"
  1325. Area3.TextSize = 17
  1326. Area3.TextWrapped = true
  1327.  
  1328. Area4.Name = "Area4"
  1329. Area4.Parent = MainFrame
  1330. Area4.BackgroundColor3 = Color3.new(0, 0, 0)
  1331. Area4.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1332. Area4.Position = UDim2.new(0, 5, 0, 200)
  1333. Area4.Size = UDim2.new(0, 130, 0, 20)
  1334. Area4.Font = Enum.Font.Fantasy
  1335. Area4.TextColor3 = Color3.new(1, 1, 1)
  1336. Area4.Text = "2.5M Area"
  1337. Area4.TextSize = 17
  1338. Area4.TextWrapped = true
  1339.  
  1340. Area5.Name = "Area5"
  1341. Area5.Parent = MainFrame
  1342. Area5.BackgroundColor3 = Color3.new(0, 0, 0)
  1343. Area5.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1344. Area5.Position = UDim2.new(0, 5, 0, 225)
  1345. Area5.Size = UDim2.new(0, 130, 0, 20)
  1346. Area5.Font = Enum.Font.Fantasy
  1347. Area5.TextColor3 = Color3.new(1, 1, 1)
  1348. Area5.Text = "20M Area"
  1349. Area5.TextSize = 17
  1350. Area5.TextWrapped = true
  1351.  
  1352. Area6.Name = "Area6"
  1353. Area6.Parent = MainFrame
  1354. Area6.BackgroundColor3 = Color3.new(0, 0, 0)
  1355. Area6.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1356. Area6.Position = UDim2.new(0, 5, 0, 250)
  1357. Area6.Size = UDim2.new(0, 130, 0, 20)
  1358. Area6.Font = Enum.Font.Fantasy
  1359. Area6.TextColor3 = Color3.new(1, 1, 1)
  1360. Area6.Text = "500M Area"
  1361. Area6.TextSize = 17
  1362. Area6.TextWrapped = true
  1363.  
  1364. Rocket.Name = "Rocket"
  1365. Rocket.Parent = MainFrame
  1366. Rocket.BackgroundColor3 = Color3.new(0, 0, 0)
  1367. Rocket.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1368. Rocket.Position = UDim2.new(0, 5, 0, 275)
  1369. Rocket.Size = UDim2.new(0, 130, 0, 20)
  1370. Rocket.Font = Enum.Font.Fantasy
  1371. Rocket.TextColor3 = Color3.new(1, 1, 1)
  1372. Rocket.Text = "Rocket Area"
  1373. Rocket.TextSize = 17
  1374. Rocket.TextWrapped = true
  1375.  
  1376. AreaDivider.Name = "AreaDivider"
  1377. AreaDivider.Parent = MainFrame
  1378. AreaDivider.BackgroundColor3 = Color3.new(0, 0, 0)
  1379. AreaDivider.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1380. AreaDivider.Position = UDim2.new(0, 0, 0, 300)
  1381. AreaDivider.Size = UDim2.new(0, 140, 0, 3)
  1382. AreaDivider.Font = Enum.Font.Fantasy
  1383. AreaDivider.Text = ""
  1384. AreaDivider.TextSize = 17
  1385.  
  1386. Area9.Name = "Area9"
  1387. Area9.Parent = MainFrame
  1388. Area9.BackgroundColor3 = Color3.new(0, 0, 0)
  1389. Area9.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1390. Area9.Position = UDim2.new(0, 5, 0, 308)
  1391. Area9.Size = UDim2.new(0, 130, 0, 20)
  1392. Area9.Font = Enum.Font.Fantasy
  1393. Area9.TextColor3 = Color3.new(1, 1, 1)
  1394. Area9.Text = "Moon Spawn Point"
  1395. Area9.TextSize = 17
  1396. Area9.TextWrapped = true
  1397.  
  1398. Area8.Name = "Area8"
  1399. Area8.Parent = MainFrame
  1400. Area8.BackgroundColor3 = Color3.new(0, 0, 0)
  1401. Area8.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1402. Area8.Position = UDim2.new(0, 5, 0, 333)
  1403. Area8.Size = UDim2.new(0, 130, 0, 20)
  1404. Area8.Font = Enum.Font.Fantasy
  1405. Area8.TextColor3 = Color3.new(1, 1, 1)
  1406. Area8.Text = "Moon Egg Shop"
  1407. Area8.TextSize = 17
  1408. Area8.TextWrapped = true
  1409.  
  1410. Area10.Name = "Area10"
  1411. Area10.Parent = MainFrame
  1412. Area10.BackgroundColor3 = Color3.new(0, 0, 0)
  1413. Area10.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1414. Area10.Position = UDim2.new(0, 5, 0, 358)
  1415. Area10.Size = UDim2.new(0, 130, 0, 20)
  1416. Area10.Font = Enum.Font.Fantasy
  1417. Area10.TextColor3 = Color3.new(1, 1, 1)
  1418. Area10.Text = "Moon Area 2"
  1419. Area10.TextSize = 17
  1420. Area10.TextWrapped = true
  1421.  
  1422. CandyLand.Name = "CandyLand"
  1423. CandyLand.Parent = MainFrame
  1424. CandyLand.BackgroundColor3 = Color3.new(0, 0, 0)
  1425. CandyLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1426. CandyLand.Position = UDim2.new(0, 5, 0, 383)
  1427. CandyLand.Size = UDim2.new(0, 130, 0, 20)
  1428. CandyLand.Font = Enum.Font.Fantasy
  1429. CandyLand.TextColor3 = Color3.new(1, 1, 1)
  1430. CandyLand.Text = "Candy Land"
  1431. CandyLand.TextSize = 17
  1432. CandyLand.TextWrapped = true
  1433.  
  1434. CyborgLand.Name = "CyborgLand"
  1435. CyborgLand.Parent = MainFrame
  1436. CyborgLand.BackgroundColor3 = Color3.new(0, 0, 0)
  1437. CyborgLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1438. CyborgLand.Position = UDim2.new(0, 5, 0, 408)
  1439. CyborgLand.Size = UDim2.new(0, 130, 0, 20)
  1440. CyborgLand.Font = Enum.Font.Fantasy
  1441. CyborgLand.TextColor3 = Color3.new(1, 1, 1)
  1442. CyborgLand.Text = "Cyborg Land"
  1443. CyborgLand.TextSize = 17
  1444. CyborgLand.TextWrapped = true
  1445.  
  1446. BuyScreenFrame.Name = "BuyScreenFrame"
  1447. BuyScreenFrame.Parent = TopFrame
  1448. BuyScreenFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  1449. BuyScreenFrame.BackgroundTransparency = 0
  1450. BuyScreenFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1451. BuyScreenFrame.Position = UDim2.new(0, 0, 0, 30)
  1452. BuyScreenFrame.Size = UDim2.new(0, 140, 0, 350)
  1453. BuyScreenFrame.Visible = false
  1454.  
  1455. Locations.Name = "Locations"
  1456. Locations.Parent = BuyScreenFrame
  1457. Locations.BackgroundColor3 = Color3.new(0, 0, 0)
  1458. Locations.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1459. Locations.Position = UDim2.new(0, 5, 0, 5)
  1460. Locations.Size = UDim2.new(0, 130, 0, 25)
  1461. Locations.Font = Enum.Font.Fantasy
  1462. Locations.TextColor3 = Color3.new(1, 1, 1)
  1463. Locations.Text = "LOCATIONS"
  1464. Locations.TextSize = 17
  1465. Locations.TextWrapped = true
  1466.  
  1467. BuyPetTitle1.Name = "BuyPetTitle1"
  1468. BuyPetTitle1.Parent = BuyScreenFrame
  1469. BuyPetTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  1470. BuyPetTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1471. BuyPetTitle1.Position = UDim2.new(0, 5, 0, 50)
  1472. BuyPetTitle1.Size = UDim2.new(0, 130, 0, 55)
  1473. BuyPetTitle1.Font = Enum.Font.Fantasy
  1474. BuyPetTitle1.TextColor3 = Color3.new(1, 1, 1)
  1475. BuyPetTitle1.Text = "You must have the money to buy what you want"
  1476. BuyPetTitle1.TextSize = 17
  1477. BuyPetTitle1.TextWrapped = true
  1478.  
  1479. BuyPetTitle2.Name = "BuyPetTitle2"
  1480. BuyPetTitle2.Parent = BuyScreenFrame
  1481. BuyPetTitle2.BackgroundTransparency = 1
  1482. BuyPetTitle2.BorderSizePixel = 0
  1483. BuyPetTitle2.Position = UDim2.new(0, 5, 0, 110)
  1484. BuyPetTitle2.Size = UDim2.new(0, 130, 0, 20)
  1485. BuyPetTitle2.Font = Enum.Font.Fantasy
  1486. BuyPetTitle2.TextColor3 = Color3.new(0, 0, 0)
  1487. BuyPetTitle2.Text = "BUY PETS"
  1488. BuyPetTitle2.TextSize = 17
  1489. BuyPetTitle2.TextWrapped = true
  1490.  
  1491. BuyPetAmount1.Name = "BuyPetAmount1"
  1492. BuyPetAmount1.Parent = BuyScreenFrame
  1493. BuyPetAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  1494. BuyPetAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1495. BuyPetAmount1.Position = UDim2.new(0, 6, 0, 129)
  1496. BuyPetAmount1.Size = UDim2.new(0, 89, 0, 21)
  1497. BuyPetAmount1.Font = Enum.Font.Fantasy
  1498. BuyPetAmount1.TextColor3 = Color3.new(1, 1, 1)
  1499. BuyPetAmount1.Text = "Quantity"
  1500. BuyPetAmount1.TextSize = 17
  1501. BuyPetAmount1.TextWrapped = true
  1502.  
  1503. BuyPetAmount2.Name = "BuyPetAmount2"
  1504. BuyPetAmount2.Parent = BuyScreenFrame
  1505. BuyPetAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1506. BuyPetAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1507. BuyPetAmount2.Position = UDim2.new(0, 95, 0, 130)
  1508. BuyPetAmount2.Size = UDim2.new(0, 40, 0, 20)
  1509. BuyPetAmount2.Font = Enum.Font.Fantasy
  1510. BuyPetAmount2.TextColor3 = Color3.new(1, 1, 1)
  1511. BuyPetAmount2.Text = "1"
  1512. BuyPetAmount2.TextSize = 17
  1513. BuyPetAmount2.TextWrapped = true
  1514.  
  1515. BuyPetTier1.Name = "BuyPetTier1"
  1516. BuyPetTier1.Parent = BuyScreenFrame
  1517. BuyPetTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  1518. BuyPetTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1519. BuyPetTier1.Position = UDim2.new(0, 6, 0, 150)
  1520. BuyPetTier1.Size = UDim2.new(0, 89, 0, 20)
  1521. BuyPetTier1.Font = Enum.Font.Fantasy
  1522. BuyPetTier1.TextColor3 = Color3.new(1, 1, 1)
  1523. BuyPetTier1.Text = "Tier"
  1524. BuyPetTier1.TextSize = 17
  1525. BuyPetTier1.TextWrapped = true
  1526.  
  1527. BuyPetTier2.Name = "BuyPetTier2"
  1528. BuyPetTier2.Parent = BuyScreenFrame
  1529. BuyPetTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1530. BuyPetTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1531. BuyPetTier2.Position = UDim2.new(0, 95, 0, 150)
  1532. BuyPetTier2.Size = UDim2.new(0, 40, 0, 20)
  1533. BuyPetTier2.Font = Enum.Font.Fantasy
  1534. BuyPetTier2.TextColor3 = Color3.new(1, 1, 1)
  1535. BuyPetTier2.Text = "16"
  1536. BuyPetTier2.TextSize = 17
  1537. BuyPetTier2.TextWrapped = true
  1538.  
  1539. BuyPetGo.Name = "BuyPetGo"
  1540. BuyPetGo.Parent = BuyScreenFrame
  1541. BuyPetGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1542. BuyPetGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1543. BuyPetGo.Position = UDim2.new(0, 5, 0, 170)
  1544. BuyPetGo.Size = UDim2.new(0, 130, 0, 20)
  1545. BuyPetGo.Font = Enum.Font.Fantasy
  1546. BuyPetGo.TextColor3 = Color3.new(1, 1, 1)
  1547. BuyPetGo.Text = "Buy Eggs"
  1548. BuyPetGo.TextSize = 17
  1549. BuyPetGo.TextWrapped = true
  1550.  
  1551. BuyPetTitle3.Name = "BuyPetTitle3"
  1552. BuyPetTitle3.Parent = BuyScreenFrame
  1553. BuyPetTitle3.BackgroundColor3 = Color3.new(0, 0, 0)
  1554. BuyPetTitle3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1555. BuyPetTitle3.Position = UDim2.new(0, 5, 0, 195)
  1556. BuyPetTitle3.Size = UDim2.new(0, 130, 0, 20)
  1557. BuyPetTitle3.Font = Enum.Font.Fantasy
  1558. BuyPetTitle3.TextColor3 = Color3.new(1, 1, 1)
  1559. BuyPetTitle3.Text = "In Tier type 1-16"
  1560. BuyPetTitle3.TextSize = 17
  1561. BuyPetTitle3.TextWrapped = true
  1562.  
  1563. BuyHatTitle2.Name = "BuyHatTitle2"
  1564. BuyHatTitle2.Parent = BuyScreenFrame
  1565. BuyHatTitle2.BackgroundTransparency = 1
  1566. BuyHatTitle2.BorderSizePixel = 0
  1567. BuyHatTitle2.Position = UDim2.new(0, 5, 0, 225)
  1568. BuyHatTitle2.Size = UDim2.new(0, 130, 0, 20)
  1569. BuyHatTitle2.Font = Enum.Font.Fantasy
  1570. BuyHatTitle2.TextColor3 = Color3.new(0, 0, 0)
  1571. BuyHatTitle2.Text = "BUY HATS"
  1572. BuyHatTitle2.TextSize = 17
  1573. BuyHatTitle2.TextWrapped = true
  1574.  
  1575. BuyHatAmount1.Name = "BuyHatAmount1"
  1576. BuyHatAmount1.Parent = BuyScreenFrame
  1577. BuyHatAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  1578. BuyHatAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1579. BuyHatAmount1.Position = UDim2.new(0, 6, 0, 245)
  1580. BuyHatAmount1.Size = UDim2.new(0, 89, 0, 20)
  1581. BuyHatAmount1.Font = Enum.Font.Fantasy
  1582. BuyHatAmount1.TextColor3 = Color3.new(1, 1, 1)
  1583. BuyHatAmount1.Text = "Quantity"
  1584. BuyHatAmount1.TextSize = 17
  1585. BuyHatAmount1.TextWrapped = true
  1586.  
  1587. BuyHatAmount2.Name = "BuyHatAmount2"
  1588. BuyHatAmount2.Parent = BuyScreenFrame
  1589. BuyHatAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1590. BuyHatAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1591. BuyHatAmount2.Position = UDim2.new(0, 95, 0, 244)
  1592. BuyHatAmount2.Size = UDim2.new(0, 40, 0, 21)
  1593. BuyHatAmount2.Font = Enum.Font.Fantasy
  1594. BuyHatAmount2.TextColor3 = Color3.new(1, 1, 1)
  1595. BuyHatAmount2.Text = "1"
  1596. BuyHatAmount2.TextSize = 17
  1597. BuyHatAmount2.TextWrapped = true
  1598.  
  1599. BuyHatTier1.Name = "BuyHatTier1"
  1600. BuyHatTier1.Parent = BuyScreenFrame
  1601. BuyHatTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  1602. BuyHatTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1603. BuyHatTier1.Position = UDim2.new(0, 6, 0, 265)
  1604. BuyHatTier1.Size = UDim2.new(0, 60, 0, 20)
  1605. BuyHatTier1.Font = Enum.Font.Fantasy
  1606. BuyHatTier1.TextColor3 = Color3.new(1, 1, 1)
  1607. BuyHatTier1.Text = "Tier"
  1608. BuyHatTier1.TextSize = 17
  1609. BuyHatTier1.TextWrapped = true
  1610.  
  1611. BuyHatTier2.Name = "BuyHatTier2"
  1612. BuyHatTier2.Parent = BuyScreenFrame
  1613. BuyHatTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1614. BuyHatTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1615. BuyHatTier2.Position = UDim2.new(0, 66, 0, 265)
  1616. BuyHatTier2.Size = UDim2.new(0, 69, 0, 20)
  1617. BuyHatTier2.Font = Enum.Font.Fantasy
  1618. BuyHatTier2.TextColor3 = Color3.new(1, 1, 1)
  1619. BuyHatTier2.Text = "Golden"
  1620. BuyHatTier2.TextSize = 17
  1621. BuyHatTier2.TextWrapped = true
  1622.  
  1623. BuyHatGo.Name = "BuyHatGo"
  1624. BuyHatGo.Parent = BuyScreenFrame
  1625. BuyHatGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1626. BuyHatGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1627. BuyHatGo.Position = UDim2.new(0, 5, 0, 285)
  1628. BuyHatGo.Size = UDim2.new(0, 130, 0, 20)
  1629. BuyHatGo.Font = Enum.Font.Fantasy
  1630. BuyHatGo.TextColor3 = Color3.new(1, 1, 1)
  1631. BuyHatGo.Text = "Buy Hats"
  1632. BuyHatGo.TextSize = 17
  1633. BuyHatGo.TextWrapped = true
  1634.  
  1635. BuyHatTitle1.Name = "BuyHatTitle1"
  1636. BuyHatTitle1.Parent = BuyScreenFrame
  1637. BuyHatTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  1638. BuyHatTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1639. BuyHatTitle1.Position = UDim2.new(0, 5, 0, 310)
  1640. BuyHatTitle1.Size = UDim2.new(0, 130, 0, 35)
  1641. BuyHatTitle1.Font = Enum.Font.Fantasy
  1642. BuyHatTitle1.TextColor3 = Color3.new(1, 1, 1)
  1643. BuyHatTitle1.Text = "In Tier type 1-4 or Golden"
  1644. BuyHatTitle1.TextSize = 17
  1645. BuyHatTitle1.TextWrapped = true
  1646.  
  1647. FarmFrame.Name = "FarmFrame"
  1648. FarmFrame.Parent = TopFrame
  1649. FarmFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  1650. FarmFrame.BackgroundTransparency = 0
  1651. FarmFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1652. FarmFrame.Position = UDim2.new(0, 0, 0, 30)
  1653. FarmFrame.Size = UDim2.new(0, 140, 0, 351)
  1654. FarmFrame.Visible = false
  1655.  
  1656. Locations2.Name = "Locations2"
  1657. Locations2.Parent = FarmFrame
  1658. Locations2.BackgroundColor3 = Color3.new(0, 0, 0)
  1659. Locations2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1660. Locations2.Position = UDim2.new(0, 5, 0, 5)
  1661. Locations2.Size = UDim2.new(0, 130, 0, 25)
  1662. Locations2.Font = Enum.Font.Fantasy
  1663. Locations2.TextColor3 = Color3.new(1, 1, 1)
  1664. Locations2.Text = "LOCATIONS"
  1665. Locations2.TextSize = 17
  1666. Locations2.TextWrapped = true
  1667.  
  1668. AllHealthLabel.Name = "AllHealthLabel"
  1669. AllHealthLabel.Parent = FarmFrame
  1670. AllHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1671. AllHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1672. AllHealthLabel.Position = UDim2.new(0, 5, 0, 50)
  1673. AllHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  1674. AllHealthLabel.Font = Enum.Font.Fantasy
  1675. AllHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  1676. AllHealthLabel.Text = "Coin/Chest Health"
  1677. AllHealthLabel.TextSize = 17
  1678. AllHealthLabel.TextWrapped = true
  1679.  
  1680. AllHealthMinLabel.Name = "AllHealthMinLabel"
  1681. AllHealthMinLabel.Parent = FarmFrame
  1682. AllHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1683. AllHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1684. AllHealthMinLabel.Position = UDim2.new(0, 5, 0, 71)
  1685. AllHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  1686. AllHealthMinLabel.Font = Enum.Font.Fantasy
  1687. AllHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  1688. AllHealthMinLabel.Text = "Min"
  1689. AllHealthMinLabel.TextSize = 17
  1690. AllHealthMinLabel.TextWrapped = true
  1691.  
  1692. AllHealthMin.Name = "AllHealthMin"
  1693. AllHealthMin.Parent = FarmFrame
  1694. AllHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1695. AllHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1696. AllHealthMin.Position = UDim2.new(0, 46, 0, 71)
  1697. AllHealthMin.Size = UDim2.new(0, 89, 0, 20)
  1698. AllHealthMin.Font = Enum.Font.Fantasy
  1699. AllHealthMin.TextColor3 = Color3.new(1, 1, 1)
  1700. AllHealthMin.Text = "1"
  1701. AllHealthMin.TextSize = 17
  1702. AllHealthMin.TextWrapped = true
  1703.  
  1704. AllHealthMaxLabel.Name = "AllHealthMaxLabel"
  1705. AllHealthMaxLabel.Parent = FarmFrame
  1706. AllHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1707. AllHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1708. AllHealthMaxLabel.Position = UDim2.new(0, 5, 0, 92)
  1709. AllHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  1710. AllHealthMaxLabel.Font = Enum.Font.Fantasy
  1711. AllHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  1712. AllHealthMaxLabel.Text = "Max"
  1713. AllHealthMaxLabel.TextSize = 17
  1714. AllHealthMaxLabel.TextWrapped = true
  1715.  
  1716. AllHealthMax.Name = "AllHealthMax"
  1717. AllHealthMax.Parent = FarmFrame
  1718. AllHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1719. AllHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1720. AllHealthMax.Position = UDim2.new(0, 46, 0, 92)
  1721. AllHealthMax.Size = UDim2.new(0, 89, 0, 20)
  1722. AllHealthMax.Font = Enum.Font.Fantasy
  1723. AllHealthMax.TextColor3 = Color3.new(1, 1, 1)
  1724. AllHealthMax.Text = "10e6"
  1725. AllHealthMax.TextSize = 17
  1726. AllHealthMax.TextWrapped = true
  1727.  
  1728. StartFarming.Name = "StartFarming"
  1729. StartFarming.Parent = FarmFrame
  1730. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1731. StartFarming.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1732. StartFarming.Position = UDim2.new(0, 5, 0, 117)
  1733. StartFarming.Size = UDim2.new(0, 130, 0, 25)
  1734. StartFarming.Font = Enum.Font.Fantasy
  1735. StartFarming.TextColor3 = Color3.new(1, 1, 1)
  1736. StartFarming.Text = "Mine ALL: OFF"
  1737. StartFarming.TextSize = 17
  1738. StartFarming.TextWrapped = true
  1739.  
  1740. EarthHealthLabel.Name = "EarthHealthLabel"
  1741. EarthHealthLabel.Parent = FarmFrame
  1742. EarthHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1743. EarthHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1744. EarthHealthLabel.Position = UDim2.new(0, 5, 0, 152)
  1745. EarthHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  1746. EarthHealthLabel.Font = Enum.Font.Fantasy
  1747. EarthHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  1748. EarthHealthLabel.Text = "Coin/Chest Health"
  1749. EarthHealthLabel.TextSize = 17
  1750. EarthHealthLabel.TextWrapped = true
  1751.  
  1752. EarthHealthMinLabel.Name = "EarthHealthMinLabel"
  1753. EarthHealthMinLabel.Parent = FarmFrame
  1754. EarthHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1755. EarthHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1756. EarthHealthMinLabel.Position = UDim2.new(0, 5, 0, 173)
  1757. EarthHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  1758. EarthHealthMinLabel.Font = Enum.Font.Fantasy
  1759. EarthHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  1760. EarthHealthMinLabel.Text = "Min"
  1761. EarthHealthMinLabel.TextSize = 17
  1762. EarthHealthMinLabel.TextWrapped = true
  1763.  
  1764. EarthHealthMin.Name = "EarthHealthMin"
  1765. EarthHealthMin.Parent = FarmFrame
  1766. EarthHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1767. EarthHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1768. EarthHealthMin.Position = UDim2.new(0, 46, 0, 173)
  1769. EarthHealthMin.Size = UDim2.new(0, 89, 0, 20)
  1770. EarthHealthMin.Font = Enum.Font.Fantasy
  1771. EarthHealthMin.TextColor3 = Color3.new(1, 1, 1)
  1772. EarthHealthMin.Text = "1"
  1773. EarthHealthMin.TextSize = 17
  1774. EarthHealthMin.TextWrapped = true
  1775.  
  1776. EarthHealthMaxLabel.Name = "EarthHealthMaxLabel"
  1777. EarthHealthMaxLabel.Parent = FarmFrame
  1778. EarthHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1779. EarthHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1780. EarthHealthMaxLabel.Position = UDim2.new(0, 5, 0, 194)
  1781. EarthHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  1782. EarthHealthMaxLabel.Font = Enum.Font.Fantasy
  1783. EarthHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  1784. EarthHealthMaxLabel.Text = "Max"
  1785. EarthHealthMaxLabel.TextSize = 17
  1786. EarthHealthMaxLabel.TextWrapped = true
  1787.  
  1788. EarthHealthMax.Name = "EarthHealthMax"
  1789. EarthHealthMax.Parent = FarmFrame
  1790. EarthHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1791. EarthHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1792. EarthHealthMax.Position = UDim2.new(0, 46, 0, 194)
  1793. EarthHealthMax.Size = UDim2.new(0, 89, 0, 20)
  1794. EarthHealthMax.Font = Enum.Font.Fantasy
  1795. EarthHealthMax.TextColor3 = Color3.new(1, 1, 1)
  1796. EarthHealthMax.Text = "20e06"
  1797. EarthHealthMax.TextSize = 17
  1798. EarthHealthMax.TextWrapped = true
  1799.  
  1800. StartFarmingEarth.Name = "StartFarmingEarth"
  1801. StartFarmingEarth.Parent = FarmFrame
  1802. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1803. StartFarmingEarth.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1804. StartFarmingEarth.Position = UDim2.new(0, 5, 0, 219)
  1805. StartFarmingEarth.Size = UDim2.new(0, 130, 0, 25)
  1806. StartFarmingEarth.Font = Enum.Font.Fantasy
  1807. StartFarmingEarth.TextColor3 = Color3.new(1, 1, 1)
  1808. StartFarmingEarth.Text = "Mine Earth: OFF"
  1809. StartFarmingEarth.TextSize = 17
  1810. StartFarmingEarth.TextWrapped = true
  1811.  
  1812. MoonHealthLabel.Name = "MoonHealthLabel"
  1813. MoonHealthLabel.Parent = FarmFrame
  1814. MoonHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1815. MoonHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1816. MoonHealthLabel.Position = UDim2.new(0, 5, 0, 254)
  1817. MoonHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  1818. MoonHealthLabel.Font = Enum.Font.Fantasy
  1819. MoonHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  1820. MoonHealthLabel.Text = "Coin/Chest Health"
  1821. MoonHealthLabel.TextSize = 17
  1822. MoonHealthLabel.TextWrapped = true
  1823.  
  1824. MoonHealthMinLabel.Name = "MoonHealthMinLabel"
  1825. MoonHealthMinLabel.Parent = FarmFrame
  1826. MoonHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1827. MoonHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1828. MoonHealthMinLabel.Position = UDim2.new(0, 5, 0, 275)
  1829. MoonHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  1830. MoonHealthMinLabel.Font = Enum.Font.Fantasy
  1831. MoonHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  1832. MoonHealthMinLabel.Text = "Min"
  1833. MoonHealthMinLabel.TextSize = 17
  1834. MoonHealthMinLabel.TextWrapped = true
  1835.  
  1836. MoonHealthMin.Name = "MoonHealthMin"
  1837. MoonHealthMin.Parent = FarmFrame
  1838. MoonHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1839. MoonHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1840. MoonHealthMin.Position = UDim2.new(0, 46, 0, 275)
  1841. MoonHealthMin.Size = UDim2.new(0, 89, 0, 20)
  1842. MoonHealthMin.Font = Enum.Font.Fantasy
  1843. MoonHealthMin.TextColor3 = Color3.new(1, 1, 1)
  1844. MoonHealthMin.Text = "10e04"
  1845. MoonHealthMin.TextSize = 17
  1846. MoonHealthMin.TextWrapped = true
  1847.  
  1848. MoonHealthMaxLabel.Name = "MoonHealthMaxLabel"
  1849. MoonHealthMaxLabel.Parent = FarmFrame
  1850. MoonHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1851. MoonHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1852. MoonHealthMaxLabel.Position = UDim2.new(0, 5, 0, 296)
  1853. MoonHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  1854. MoonHealthMaxLabel.Font = Enum.Font.Fantasy
  1855. MoonHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  1856. MoonHealthMaxLabel.Text = "Max"
  1857. MoonHealthMaxLabel.TextSize = 17
  1858. MoonHealthMaxLabel.TextWrapped = true
  1859.  
  1860. MoonHealthMax.Name = "MoonHealthMax"
  1861. MoonHealthMax.Parent = FarmFrame
  1862. MoonHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1863. MoonHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1864. MoonHealthMax.Position = UDim2.new(0, 46, 0, 296)
  1865. MoonHealthMax.Size = UDim2.new(0, 89, 0, 20)
  1866. MoonHealthMax.Font = Enum.Font.Fantasy
  1867. MoonHealthMax.TextColor3 = Color3.new(1, 1, 1)
  1868. MoonHealthMax.Text = "60e06"
  1869. MoonHealthMax.TextSize = 17
  1870. MoonHealthMax.TextWrapped = true
  1871.  
  1872. StartFarmingMoon.Name = "StartFarmingMoon"
  1873. StartFarmingMoon.Parent = FarmFrame
  1874. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1875. StartFarmingMoon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1876. StartFarmingMoon.Position = UDim2.new(0, 5, 0, 321)
  1877. StartFarmingMoon.Size = UDim2.new(0, 130, 0, 25)
  1878. StartFarmingMoon.Font = Enum.Font.Fantasy
  1879. StartFarmingMoon.TextColor3 = Color3.new(1, 1, 1)
  1880. StartFarmingMoon.Text = "Mine Moon: OFF"
  1881. StartFarmingMoon.TextSize = 17
  1882. StartFarmingMoon.TextWrapped = true
  1883.  
  1884. -- Close GUI --
  1885. ClosePS.MouseButton1Down:connect(function()
  1886. MainGUI:destroy()
  1887. end)
  1888.  
  1889. BuyScreen.MouseButton1Click:connect(function()
  1890. MainFrame.Visible = false
  1891. BuyScreenFrame.Visible = true
  1892. end)
  1893.  
  1894. Locations.MouseButton1Click:connect(function()
  1895. MainFrame.Visible = true
  1896. BuyScreenFrame.Visible = false
  1897. end)
  1898.  
  1899. FarmCoins.MouseButton1Click:connect(function()
  1900. MainFrame.Visible = false
  1901. FarmFrame.Visible = true
  1902. end)
  1903.  
  1904. Locations2.MouseButton1Click:connect(function()
  1905. MainFrame.Visible = true
  1906. FarmFrame.Visible = false
  1907. end)
  1908.  
  1909. TeleportScreen.MouseButton1Click:connect(function()
  1910. game.Players.LocalPlayer.PlayerGui.Teleport.Enabled = true
  1911. end)
  1912.  
  1913. -- Farm --
  1914.  
  1915. StartFarming.MouseButton1Click:connect(function()
  1916. if not FarmStart then
  1917. FarmArea = "all"
  1918. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1919. StartFarming.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1920. StartFarming.Text = "Mine ALL: ON"
  1921. PetTable()
  1922. FarmStart = true
  1923. else
  1924. FarmStart = false
  1925. FarmArea = "none"
  1926. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  1927. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1928. StartFarming.Text = "Mine ALL: OFF"
  1929. end
  1930. end)
  1931.  
  1932. StartFarmingEarth.MouseButton1Click:connect(function()
  1933. if not FarmStart then
  1934. FarmArea = "earth"
  1935. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1936. StartFarmingEarth.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1937. StartFarmingEarth.Text = "Mine Earth: ON"
  1938. PetTable()
  1939. FarmStart = true
  1940. else
  1941. FarmStart = false
  1942. FarmArea = "none"
  1943. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  1944. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1945. StartFarmingEarth.Text = "Mine Earth: OFF"
  1946. end
  1947. end)
  1948.  
  1949. StartFarmingMoon.MouseButton1Click:connect(function()
  1950. if not FarmStart then
  1951. FarmArea = "moon"
  1952. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1953. StartFarmingMoon.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1954. StartFarmingMoon.Text = "Mine Moon: ON"
  1955. PetTable()
  1956. FarmStart = true
  1957. else
  1958. FarmStart = false
  1959. FarmArea = "none"
  1960. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  1961. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1962. StartFarmingMoon.Text = "Mine Moon: OFF"
  1963. end
  1964. end)
  1965.  
  1966. function Mine(Coin)
  1967. while FarmStart and (Coin:FindFirstChild("Health") ~= nil) and (Coin:FindFirstChild("Health").Value > 0) do
  1968. wait(0.1)
  1969. for PetNumber,_ in pairs(petTable) do
  1970. workspace["__REMOTES"]["Game"]["Coins"]:FireServer("Mine",Coin.Name,petTable[PetNumber]["LEVEL"],petTable[PetNumber]["ID"])
  1971. end
  1972. end
  1973. end
  1974.  
  1975. spawn(function()
  1976. while true do
  1977. while FarmStart do
  1978. for _,Coin in next, workspace["__THINGS"].Coins:GetChildren() do
  1979. if (done ~= Coin) then
  1980. if (FarmArea == "all") then
  1981. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  1982. if Coin.Health.Value > tonumber(AllHealthMin.Text) and Coin.Health.Value < tonumber(AllHealthMax.Text) then
  1983. Mine(Coin)
  1984. end
  1985. end
  1986. elseif (FarmArea == "earth") then
  1987. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  1988. if Coin.Position.Y < 100 then
  1989. if Coin.Health.Value > tonumber(EarthHealthMin.Text) and Coin.Health.Value < tonumber(EarthHealthMax.Text) then
  1990. Mine(Coin)
  1991. end
  1992. end
  1993. end
  1994. elseif (FarmArea == "moon") then
  1995. if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  1996. if Coin.Position.Y > 100 then
  1997. if Coin.Health.Value > tonumber(MoonHealthMin.Text) and Coin.Health.Value < tonumber(MoonHealthMax.Text) then
  1998. Mine(Coin)
  1999. end
  2000. end
  2001. end
  2002. else
  2003. end
  2004. end
  2005. end
  2006. wait()
  2007. end
  2008. wait()
  2009. end
  2010. end)
  2011.  
  2012. WalkSpeed.MouseButton1Click:connect(function()
  2013. if WalkNumber == "1" then
  2014. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0.5)
  2015. WalkSpeed.Text = "Walk:2"
  2016. WalkNumber = "2"
  2017. Walk = 30
  2018. elseif WalkNumber == "2" then
  2019. WalkSpeed.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2020. WalkSpeed.Text = "Walk:3"
  2021. WalkNumber = "3"
  2022. Walk = 80
  2023. elseif WalkNumber == "3" then
  2024. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  2025. WalkSpeed.Text = "Walk:1"
  2026. WalkNumber = "1"
  2027. Walk = 16
  2028. else
  2029. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  2030. WalkSpeed.Text = "Walk:1"
  2031. WalkNumber = "1"
  2032. Walk = 16
  2033. end
  2034. player = game.Players.LocalPlayer
  2035. player.Character.Humanoid.WalkSpeed = Walk
  2036. end)
  2037.  
  2038. JumpPower.MouseButton1Click:connect(function()
  2039. if JumpNumber == "1" then
  2040. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0.5)
  2041. JumpPower.Text = "Jump:2"
  2042. JumpNumber = "2"
  2043. Jump = 150
  2044. elseif JumpNumber == "2" then
  2045. JumpPower.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2046. JumpPower.Text = "Jump:3"
  2047. JumpNumber = "3"
  2048. Jump = 400
  2049. elseif JumpNumber == "3" then
  2050. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  2051. JumpPower.Text = "Jump:1"
  2052. JumpNumber = "1"
  2053. Jump = 50
  2054. else
  2055. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  2056. JumpPower.Text = "Jump:1"
  2057. JumpNumber = "1"
  2058. Jump = 50
  2059. end
  2060. player = game.Players.LocalPlayer
  2061. player.Character.Humanoid.JumpPower = Jump
  2062. end)
  2063.  
  2064. -- Buy Eggs and Hats --
  2065.  
  2066. BuyPetGo.MouseButton1Click:connect(function()
  2067. for i = 1, tonumber(BuyPetAmount2.Text) do
  2068. if tonumber(BuyPetAmount2.Text) == 0 then break end
  2069. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Eggs", "Tier " ..BuyPetTier2.Text)
  2070. wait()
  2071. end
  2072. end)
  2073.  
  2074. BuyHatGo.MouseButton1Click:connect(function()
  2075. for i = 1, tonumber(BuyHatAmount2.Text) do
  2076. if tonumber(BuyHatAmount2.Text) == 0 then break end
  2077. if BuyHatTier2.Text:lower() == "golden" then
  2078. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Golden")
  2079. else
  2080. game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Tier " ..BuyHatTier2.Text)
  2081. end
  2082. wait()
  2083. end
  2084. end)
  2085.  
  2086. -- TP to locations --
  2087. Spawn.MouseButton1Click:connect(function()
  2088. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(526, -36.292, 909)
  2089. end)
  2090.  
  2091. Shop.MouseButton1Click:connect(function()
  2092. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(647.35, -33.6, 890.23)
  2093. end)
  2094.  
  2095. Area2.MouseButton1Click:connect(function()
  2096. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13, -37, 885)
  2097. end)
  2098.  
  2099. Area3.MouseButton1Click:connect(function()
  2100. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-364, -37, 885)
  2101. end)
  2102.  
  2103. Area4.MouseButton1Click:connect(function()
  2104. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-760, -37, 885)
  2105. end)
  2106.  
  2107. Area5.MouseButton1Click:connect(function()
  2108. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1160, -37, 885)
  2109. end)
  2110.  
  2111. Area6.MouseButton1Click:connect(function()
  2112. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1500, -37, 885)
  2113. end)
  2114.  
  2115. Rocket.MouseButton1Click:connect(function()
  2116. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1828, -37, 897)
  2117. end)
  2118.  
  2119. Area8.MouseButton1Click:connect(function()
  2120. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(616, 146, -1720)
  2121. end)
  2122.  
  2123. Area9.MouseButton1Click:connect(function()
  2124. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(527, 145, -1762)
  2125. end)
  2126.  
  2127. Area10.MouseButton1Click:connect(function()
  2128. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.8, 145, -1718)
  2129. end)
  2130.  
  2131. CandyLand.MouseButton1Click:connect(function()
  2132. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13.7, 145, -1449.8)
  2133. end)
  2134.  
  2135. CyborgLand.MouseButton1Click:connect(function()
  2136. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-283.5, 145, -1704.4)
  2137. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement