electrify

Script - Pet Simulator(full script) PT-BR

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