KrystekYY

Untitled

Apr 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 130.34 KB | None | 0 0
  1. print("Bee Swarm Simulator Gui Created by LuckyMMB @ V3rmillion.net")
  2. print("Discord https://discord.gg/GKzJnUC")
  3. print("V2.0d 11th February 2019")
  4. print("\nEnabling the Avoid Vicious Bee button when doing an Auto Farm will tp you to a safe\nfield if a vicious bee is detected nearby while farming. When it leaves the field\nyou will tp back and continue farming.")
  5. print("\nHunt Vicious Bee will put you in God Mode when the bee is detected and tp spam the bees\nlocation so your bees can attack it. When the bee has been defeated you will tp back to\nyour original location and God Mode will be disabled.")
  6. print("\nFarm Sprout mode will put you in God Mode when the Sprout spawns and tp you to it so\nyour bees can farm it. Token pickup is also enabled. When the sprout has been farmed you will\nstay in that location for 20 seconds to pick up all the goodies then God Mode will be disabled.")
  7. print("\nIn God Mode you cannot be hurt but cannot use any tools. Turning God Mode Off will put\nyou back to normal so you can use your tools and farm properly again.\nTIP: When you enter God Mode your tool will be dropped. Someone else can then pick up\nthat tool and use it until they leave the game. Useful for friends with low power tools.\nWARNING:Leaving God Mode is glitchy at best. If it doesn't work you will have to rejoin.")
  8. print("\nPress the j key when fireflys are in a field to farm Moon Tokens. You will tp to each\nfirefly and then pick up the moon token when dropped. If you dont get one press the key\nagain to make sure all the fireflys were touched. Keep doing this until the Fireflys leave.")
  9. print("\nPress the h key to toggle Token Auto Gathering to pick up tokens near you.")
  10. print("\nPress the y key to tp back to your hive and make honey from your gathered pollen.")
  11.  
  12. local plr = game:GetService("Players").LocalPlayer
  13. local mouse = game.Players.LocalPlayer:GetMouse()
  14. local UIS = game:GetService'UserInputService'
  15.  
  16. sproutstarted = false
  17. sproutsafety = false
  18. pausehumcheck = false
  19. SproutFarmActive = false
  20. FieldBoostActive = false
  21. FreeAntPassDispenserActive = false
  22. TreatActive = true
  23. WealthClockActive = true
  24. infjumpactive = false
  25. antchallengeescape = false
  26. AutoDigActive = false
  27. PollenFarmActive = false
  28. Field1AFActive = false
  29. Field2AFActive = false
  30. Field3AFActive = false
  31. Field4AFActive = false
  32. Field5AFActive = false
  33. Field6AFActive = false
  34. Field7AFActive = false
  35. Field8AFActive = false
  36. Field9AFActive = false
  37. Field10AFActive = false
  38. Field11AFActive = false
  39. Field12AFActive = false
  40. Field13AFActive = false
  41. Field14AFActive = false
  42. Field15AFActive = false
  43. godmodeactivated = true
  44. resethive = false
  45. HuntViciousActive = false
  46. AvoidViciousActive = false
  47. viciousbeenear = false
  48. viciousbeedetected = false
  49. viciousdistance1 = ""
  50. switchlocationmsg = false
  51. tokenfarmactive = false
  52. tokenfarmactive2 = false
  53. GodModeActive = false
  54. moontokenfarmactive = false
  55. farmzoneswitchback = false
  56. switchingzone = false
  57. FarmTempOFF = false
  58. AvoidTempOFF = false
  59.  
  60. -- Anti Idle
  61. local VirtualUser=game:service'VirtualUser'
  62. game:service'Players'.LocalPlayer.Idled:connect(function()
  63. VirtualUser:CaptureController()
  64. VirtualUser:ClickButton2(Vector2.new())
  65. end)
  66.  
  67. -- Objects
  68. local MainGUI = Instance.new("ScreenGui")
  69. local MainFrame = Instance.new("Frame")
  70. local Close = Instance.new("TextButton")
  71. local WayPoints = Instance.new("TextButton")
  72. local WayPointsFrame = Instance.new("Frame")
  73. local ShowLocation = Instance.new("TextLabel")
  74. local SetLocation = Instance.new("TextButton")
  75. local TPLocation = Instance.new("TextButton")
  76. local ReturnToHive = Instance.new("TextButton")
  77. local BlackBear = Instance.new("TextButton")
  78. local BrownBear = Instance.new("TextButton")
  79. local SunBear = Instance.new("TextButton")
  80. local PandaBear = Instance.new("TextButton")
  81. local PolarBear = Instance.new("TextButton")
  82. local ScienceBear = Instance.new("TextButton")
  83. local MotherBear = Instance.new("TextButton")
  84. local GiftedBuckoBee = Instance.new("TextButton")
  85. local GiftedRileyBee = Instance.new("TextButton")
  86. local StickBug = Instance.new("TextButton")
  87. local TunnelBear = Instance.new("TextButton")
  88. local TravelingBear = Instance.new("TextButton")
  89. local RedBoost = Instance.new("TextButton")
  90. local BlueBoost = Instance.new("TextButton")
  91. local MountainBoost = Instance.new("TextButton")
  92. local RedCannon = Instance.new("TextButton")
  93. local BlueCannon = Instance.new("TextButton")
  94. local YellowCannon = Instance.new("TextButton")
  95. local BeeShop = Instance.new("TextButton")
  96. local TPShop = Instance.new("TextButton")
  97. local TPShop2 = Instance.new("TextButton")
  98. local MountainTopShop = Instance.new("TextButton")
  99. local TentShop = Instance.new("TextButton")
  100. local RedClubhouse = Instance.new("TextButton")
  101. local BlueClubhouse = Instance.new("TextButton")
  102. local TicketShop = Instance.new("TextButton")
  103. local ClubHoney = Instance.new("TextButton")
  104. local RoyalJellyShop = Instance.new("TextButton")
  105. local TicketRoyalJelly = Instance.new("TextButton")
  106. local Honeystorm = Instance.new("TextButton")
  107. local HoneyConvertor = Instance.new("TextButton")
  108. local StrawBerryField = Instance.new("TextButton")
  109. local PumpkinField = Instance.new("TextButton")
  110. local SunflowerField = Instance.new("TextButton")
  111. local CloverField = Instance.new("TextButton")
  112. local SpiderField = Instance.new("TextButton")
  113. local MushRoomField = Instance.new("TextButton")
  114. local BamBooField = Instance.new("TextButton")
  115. local DandelionField = Instance.new("TextButton")
  116. local PineappleField = Instance.new("TextButton")
  117. local BlueField = Instance.new("TextButton")
  118. local RoseField = Instance.new("TextButton")
  119. local CactusField = Instance.new("TextButton")
  120. local PineTreeField = Instance.new("TextButton")
  121. local MountainTopField = Instance.new("TextButton")
  122. local StumpField = Instance.new("TextButton")
  123. local KingbeetlesLair = Instance.new("TextButton")
  124. local AntChallenge = Instance.new("TextButton")
  125. local Onett = Instance.new("TextButton")
  126. local TreatDispenser = Instance.new("TextButton")
  127. local TicketDispenser = Instance.new("TextButton")
  128. local WealthClock = Instance.new("TextButton")
  129. local StarHut = Instance.new("TextButton")
  130. local GumdropDispenser = Instance.new("TextButton")
  131. local GlueDispenser = Instance.new("TextButton")
  132. local HoneyBee = Instance.new("TextButton")
  133. local Blender = Instance.new("TextButton")
  134. local BlueberryDispenser = Instance.new("TextButton")
  135. local StrawberryDispenser = Instance.new("TextButton")
  136. local TreatShop = Instance.new("TextButton")
  137. local SproutDispenser = Instance.new("TextButton")
  138. local AvoidViciousBee = Instance.new("TextButton")
  139. local Field1AF = Instance.new("TextButton")
  140. local Field2AF = Instance.new("TextButton")
  141. local Field3AF = Instance.new("TextButton")
  142. local Field4AF = Instance.new("TextButton")
  143. local Field5AF = Instance.new("TextButton")
  144. local Field6AF = Instance.new("TextButton")
  145. local Field7AF = Instance.new("TextButton")
  146. local Field8AF = Instance.new("TextButton")
  147. local Field9AF = Instance.new("TextButton")
  148. local Field10AF = Instance.new("TextButton")
  149. local Field11AF = Instance.new("TextButton")
  150. local Field12AF = Instance.new("TextButton")
  151. local Field13AF = Instance.new("TextButton")
  152. local Field14AF = Instance.new("TextButton")
  153. local Field15AF = Instance.new("TextButton")
  154. local TimeLabel = Instance.new("TextLabel")
  155. local Players = Instance.new("TextButton")
  156. local PlayerFrame = Instance.new("Frame")
  157. local PlayerList = Instance.new("Frame")
  158. local PlayerListBox = Instance.new("Frame")
  159. local PlyrSel = Instance.new("TextLabel")
  160. local Player1 = Instance.new("TextButton")
  161. local Player2 = Instance.new("TextButton")
  162. local Player3 = Instance.new("TextButton")
  163. local Player4 = Instance.new("TextButton")
  164. local Player5 = Instance.new("TextButton")
  165. local TpPlayer = Instance.new("TextButton")
  166. local FindTreasures = Instance.new("TextButton")
  167. local FindTreasuresText1 = Instance.new("TextLabel")
  168. local ExtrasScreen = Instance.new("TextButton")
  169. local ExtrasFrame = Instance.new("Frame")
  170. local ViciousBeeFrame = Instance.new("Frame")
  171. local InfoScreen = Instance.new("TextButton")
  172. local InfoFrame = Instance.new("Frame")
  173. local TPTool = Instance.new("TextButton")
  174. local ReJoinServer = Instance.new("TextButton")
  175. local NoClip = Instance.new("TextButton")
  176. local InfoText1 = Instance.new("TextLabel")
  177. local God = Instance.new("TextButton")
  178. local HuntViciousBee = Instance.new("TextButton")
  179. local ViciousBeeDetect = Instance.new("TextLabel")
  180. local FireflyDetect = Instance.new("TextLabel")
  181. local SproutDetect = Instance.new("TextLabel")
  182. local PollenFarm = Instance.new("TextButton")
  183. local FarmFrame = Instance.new("Frame")
  184. local StartFarm = Instance.new("TextButton")
  185. local AutoDig = Instance.new("TextButton")
  186. local TokenToggleLabel = Instance.new("TextLabel")
  187. local TokenToggle = Instance.new("TextBox")
  188. local FireflyToggleLabel = Instance.new("TextLabel")
  189. local FireflyToggle = Instance.new("TextBox")
  190. local HoneyToggleLabel = Instance.new("TextLabel")
  191. local HoneyToggle = Instance.new("TextBox")
  192. local InfJumpToggle = Instance.new("TextButton")
  193. local WealthClockToggle = Instance.new("TextButton")
  194. local FieldBoostToggle = Instance.new("TextButton")
  195. local TreatToggle = Instance.new("TextButton")
  196. local FreeAntPassDispenserToggle = Instance.new("TextButton")
  197. local SproutFarmToggle = Instance.new("TextButton")
  198.  
  199.  
  200. -- Properties
  201.  
  202. MainGUI.Name = "MainGUI"
  203. MainGUI.Parent = game.CoreGui
  204. local MainCORE = game.CoreGui["MainGUI"]
  205.  
  206. MainFrame.Name = "MainFrame"
  207. MainFrame.Parent = MainGUI
  208. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  209. MainFrame.BackgroundTransparency = 0.3
  210. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  211. MainFrame.Position = UDim2.new(0.5, -319, 0, -1)
  212. MainFrame.Size = UDim2.new(0, 638, 0, 30)
  213.  
  214. Close.Name = "Close"
  215. Close.Parent = MainFrame
  216. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  217. Close.BorderColor3 = Color3.new(0, 1, 0)
  218. Close.Position = UDim2.new(0, 5, 0, 5)
  219. Close.Size = UDim2.new(0, 20, 0, 20)
  220. Close.Font = Enum.Font.Fantasy
  221. Close.Text = "X"
  222. Close.TextColor3 = Color3.new(1, 0, 0)
  223. Close.TextSize = 17
  224. Close.TextScaled = true
  225. Close.TextWrapped = true
  226.  
  227. WayPoints.Name = "WayPoints"
  228. WayPoints.Parent = MainFrame
  229. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  230. WayPoints.BorderColor3 = Color3.new(0, 1, 0)
  231. WayPoints.Position = UDim2.new(0, 30, 0, 5)
  232. WayPoints.Size = UDim2.new(0, 83, 0, 20)
  233. WayPoints.Font = Enum.Font.Fantasy
  234. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  235. WayPoints.Text = "WayPoints"
  236. WayPoints.TextSize = 17
  237. WayPoints.TextWrapped = true
  238.  
  239. WayPointsFrame.Name = "WayPointsFrame"
  240. WayPointsFrame.Parent = MainFrame
  241. WayPointsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  242. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  243. WayPointsFrame.BackgroundTransparency = 0.3
  244. WayPointsFrame.Position = UDim2.new(0, 0, 0, 34)
  245. WayPointsFrame.Size = UDim2.new(0, 600, 0, 530)
  246. WayPointsFrame.Visible = false
  247.  
  248. ShowLocation.Name = "ShowLocation"
  249. ShowLocation.Parent = WayPointsFrame
  250. ShowLocation.BackgroundColor3 = Color3.new(1, 1, 1)
  251. ShowLocation.TextColor3 = Color3.new(0, 0, 0)
  252. ShowLocation.BorderColor3 = Color3.new(0, 0, 0)
  253. ShowLocation.Position = UDim2.new(0, 190, 0, 5)
  254. ShowLocation.Size = UDim2.new(0, 180, 0, 20)
  255. ShowLocation.Font = Enum.Font.Fantasy
  256. ShowLocation.Text = "Current Location"
  257. ShowLocation.TextWrapped = true
  258. ShowLocation.TextSize = 15
  259.  
  260. SetLocation.Name = "SetLocation"
  261. SetLocation.Parent = WayPointsFrame
  262. SetLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  263. SetLocation.TextColor3 = Color3.new(1, 1, 1)
  264. SetLocation.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  265. SetLocation.Position = UDim2.new(0, 375, 0, 5)
  266. SetLocation.Size = UDim2.new(0, 150, 0, 20)
  267. SetLocation.Font = Enum.Font.Fantasy
  268. SetLocation.Text = "Set Location"
  269. SetLocation.TextWrapped = true
  270. SetLocation.TextSize = 16
  271.  
  272. TPLocation.Name = "TPLocation"
  273. TPLocation.Parent = WayPointsFrame
  274. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  275. TPLocation.TextColor3 = Color3.new(1, 1, 1)
  276. TPLocation.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  277. TPLocation.Position = UDim2.new(0, 530, 0, 5)
  278. TPLocation.Size = UDim2.new(0, 65, 0, 20)
  279. TPLocation.Font = Enum.Font.Fantasy
  280. TPLocation.Text = "Move to"
  281. TPLocation.TextWrapped = true
  282. TPLocation.TextSize = 16
  283.  
  284. ReturnToHive.Name = "ReturnToHive"
  285. ReturnToHive.Parent = WayPointsFrame
  286. ReturnToHive.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  287. ReturnToHive.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  288. ReturnToHive.Position = UDim2.new(0, 5, 0, 5)
  289. ReturnToHive.Size = UDim2.new(0, 180, 0, 20)
  290. ReturnToHive.TextColor3 = Color3.new(1, 1, 1)
  291. ReturnToHive.Font = Enum.Font.Fantasy
  292. ReturnToHive.Text = "Return To Hive"
  293. ReturnToHive.TextSize = 16
  294.  
  295. BlackBear.Name = "BlackBear"
  296. BlackBear.Parent = WayPointsFrame
  297. BlackBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  298. BlackBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  299. BlackBear.Position = UDim2.new(0, 5, 0, 30)
  300. BlackBear.Size = UDim2.new(0, 180, 0, 20)
  301. BlackBear.TextColor3 = Color3.new(1, 1, 1)
  302. BlackBear.Font = Enum.Font.Fantasy
  303. BlackBear.Text = "Black Bear"
  304. BlackBear.TextSize = 16
  305.  
  306. BrownBear.Name = "BrownBear"
  307. BrownBear.Parent = WayPointsFrame
  308. BrownBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  309. BrownBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  310. BrownBear.Position = UDim2.new(0, 5, 0, 55)
  311. BrownBear.Size = UDim2.new(0, 180, 0, 20)
  312. BrownBear.TextColor3 = Color3.new(1, 1, 1)
  313. BrownBear.Font = Enum.Font.Fantasy
  314. BrownBear.Text = "Brown Bear"
  315. BrownBear.TextSize = 16
  316.  
  317. PandaBear.Name = "PandaBear"
  318. PandaBear.Parent = WayPointsFrame
  319. PandaBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  320. PandaBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  321. PandaBear.Position = UDim2.new(0, 5, 0, 80)
  322. PandaBear.Size = UDim2.new(0, 180, 0, 20)
  323. PandaBear.TextColor3 = Color3.new(1, 1, 1)
  324. PandaBear.Font = Enum.Font.Fantasy
  325. PandaBear.Text = "Panda Bear"
  326. PandaBear.TextSize = 16
  327.  
  328. PolarBear.Name = "PolarBear"
  329. PolarBear.Parent = WayPointsFrame
  330. PolarBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  331. PolarBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  332. PolarBear.Position = UDim2.new(0, 5, 0, 105)
  333. PolarBear.Size = UDim2.new(0, 180, 0, 20)
  334. PolarBear.TextColor3 = Color3.new(1, 1, 1)
  335. PolarBear.Font = Enum.Font.Fantasy
  336. PolarBear.Text = "Polar Bear"
  337. PolarBear.TextSize = 16
  338.  
  339. ScienceBear.Name = "ScienceBear"
  340. ScienceBear.Parent = WayPointsFrame
  341. ScienceBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  342. ScienceBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  343. ScienceBear.Position = UDim2.new(0, 5, 0, 130)
  344. ScienceBear.Size = UDim2.new(0, 180, 0, 20)
  345. ScienceBear.TextColor3 = Color3.new(1, 1, 1)
  346. ScienceBear.Font = Enum.Font.Fantasy
  347. ScienceBear.Text = "Science Bear"
  348. ScienceBear.TextSize = 16
  349.  
  350. TravelingBear.Name = "TravelingBear"
  351. TravelingBear.Parent = WayPointsFrame
  352. TravelingBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  353. TravelingBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  354. TravelingBear.Position = UDim2.new(0, 5, 0, 155)
  355. TravelingBear.Size = UDim2.new(0, 180, 0, 20)
  356. TravelingBear.TextColor3 = Color3.new(1, 1, 1)
  357. TravelingBear.Font = Enum.Font.Fantasy
  358. TravelingBear.Text = "Traveling Bear"
  359. TravelingBear.TextSize = 16
  360.  
  361. MotherBear.Name = "MotherBear"
  362. MotherBear.Parent = WayPointsFrame
  363. MotherBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  364. MotherBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  365. MotherBear.Position = UDim2.new(0, 5, 0, 180)
  366. MotherBear.Size = UDim2.new(0, 180, 0, 20)
  367. MotherBear.TextColor3 = Color3.new(1, 1, 1)
  368. MotherBear.Font = Enum.Font.Fantasy
  369. MotherBear.Text = "Mother Bear"
  370. MotherBear.TextSize = 16
  371.  
  372. TunnelBear.Name = "TunnelBear"
  373. TunnelBear.Parent = WayPointsFrame
  374. TunnelBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  375. TunnelBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  376. TunnelBear.Position = UDim2.new(0, 5, 0, 205)
  377. TunnelBear.Size = UDim2.new(0, 180, 0, 20)
  378. TunnelBear.TextColor3 = Color3.new(1, 1, 1)
  379. TunnelBear.Font = Enum.Font.Fantasy
  380. TunnelBear.Text = "Tunnel Bear"
  381. TunnelBear.TextSize = 16
  382.  
  383. SunBear.Name = "SunBear"
  384. SunBear.Parent = WayPointsFrame
  385. SunBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  386. SunBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  387. SunBear.Position = UDim2.new(0, 5, 0, 230)
  388. SunBear.Size = UDim2.new(0, 180, 0, 20)
  389. SunBear.TextColor3 = Color3.new(1, 1, 1)
  390. SunBear.Font = Enum.Font.Fantasy
  391. SunBear.Text = "Sun Bear"
  392. SunBear.TextSize = 16
  393.  
  394. Onett.Name = "Onett"
  395. Onett.Parent = WayPointsFrame
  396. Onett.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  397. Onett.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  398. Onett.Position = UDim2.new(0, 5, 0, 255)
  399. Onett.Size = UDim2.new(0, 180, 0, 20)
  400. Onett.TextColor3 = Color3.new(1, 1, 1)
  401. Onett.Font = Enum.Font.Fantasy
  402. Onett.Text = "Onett"
  403. Onett.TextSize = 16
  404.  
  405. RedBoost.Name = "RedBoost"
  406. RedBoost.Parent = WayPointsFrame
  407. RedBoost.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  408. RedBoost.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  409. RedBoost.Position = UDim2.new(0, 5, 0, 280)
  410. RedBoost.Size = UDim2.new(0, 180, 0, 20)
  411. RedBoost.TextColor3 = Color3.new(1, 1, 1)
  412. RedBoost.Font = Enum.Font.Fantasy
  413. RedBoost.Text = "Red Field Booster"
  414. RedBoost.TextSize = 16
  415.  
  416. BlueBoost.Name = "BlueBoost"
  417. BlueBoost.Parent = WayPointsFrame
  418. BlueBoost.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  419. BlueBoost.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  420. BlueBoost.Position = UDim2.new(0, 5, 0, 305)
  421. BlueBoost.Size = UDim2.new(0, 180, 0, 20)
  422. BlueBoost.TextColor3 = Color3.new(1, 1, 1)
  423. BlueBoost.Font = Enum.Font.Fantasy
  424. BlueBoost.Text = "Blue Field Booster"
  425. BlueBoost.TextSize = 16
  426.  
  427. MountainBoost.Name = "MountainBoost"
  428. MountainBoost.Parent = WayPointsFrame
  429. MountainBoost.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  430. MountainBoost.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  431. MountainBoost.Position = UDim2.new(0, 5, 0, 330)
  432. MountainBoost.Size = UDim2.new(0, 180, 0, 20)
  433. MountainBoost.TextColor3 = Color3.new(1, 1, 1)
  434. MountainBoost.Font = Enum.Font.Fantasy
  435. MountainBoost.Text = "MountainTop Booster"
  436. MountainBoost.TextSize = 16
  437.  
  438. RedCannon.Name = "RedCannon"
  439. RedCannon.Parent = WayPointsFrame
  440. RedCannon.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  441. RedCannon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  442. RedCannon.Position = UDim2.new(0, 5, 0, 355)
  443. RedCannon.Size = UDim2.new(0, 180, 0, 20)
  444. RedCannon.TextColor3 = Color3.new(1, 1, 1)
  445. RedCannon.Font = Enum.Font.Fantasy
  446. RedCannon.Text = "Red Cannon (22)"
  447. RedCannon.TextSize = 16
  448.  
  449. BlueCannon.Name = "BlueCannon"
  450. BlueCannon.Parent = WayPointsFrame
  451. BlueCannon.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  452. BlueCannon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  453. BlueCannon.Position = UDim2.new(0, 5, 0, 380)
  454. BlueCannon.Size = UDim2.new(0, 180, 0, 20)
  455. BlueCannon.TextColor3 = Color3.new(1, 1, 1)
  456. BlueCannon.Font = Enum.Font.Fantasy
  457. BlueCannon.Text = "Blue Cannon (16)"
  458. BlueCannon.TextSize = 16
  459.  
  460. YellowCannon.Name = "YellowCannon"
  461. YellowCannon.Parent = WayPointsFrame
  462. YellowCannon.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  463. YellowCannon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  464. YellowCannon.Position = UDim2.new(0, 5, 0, 405)
  465. YellowCannon.Size = UDim2.new(0, 180, 0, 20)
  466. YellowCannon.TextColor3 = Color3.new(1, 1, 1)
  467. YellowCannon.Font = Enum.Font.Fantasy
  468. YellowCannon.Text = "Yellow Cannon (12)"
  469. YellowCannon.TextSize = 16
  470.  
  471. HoneyBee.Name = "HoneyBee"
  472. HoneyBee.Parent = WayPointsFrame
  473. HoneyBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  474. HoneyBee.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  475. HoneyBee.Position = UDim2.new(0, 5, 0, 430)
  476. HoneyBee.Size = UDim2.new(0, 180, 0, 20)
  477. HoneyBee.TextColor3 = Color3.new(1, 1, 1)
  478. HoneyBee.Font = Enum.Font.Fantasy
  479. HoneyBee.Text = "Honey Bee Quest"
  480. HoneyBee.TextSize = 16
  481.  
  482. AntChallenge.Name = "AntChallenge"
  483. AntChallenge.Parent = WayPointsFrame
  484. AntChallenge.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  485. AntChallenge.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  486. AntChallenge.Position = UDim2.new(0, 5, 0, 455)
  487. AntChallenge.Size = UDim2.new(0, 180, 0, 20)
  488. AntChallenge.TextColor3 = Color3.new(1, 1, 1)
  489. AntChallenge.Font = Enum.Font.Fantasy
  490. AntChallenge.Text = "Ant Challenge"
  491. AntChallenge.TextSize = 16
  492.  
  493. KingbeetlesLair.Name = "KingbeetlesLair"
  494. KingbeetlesLair.Parent = WayPointsFrame
  495. KingbeetlesLair.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  496. KingbeetlesLair.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  497. KingbeetlesLair.Position = UDim2.new(0, 5, 0, 480)
  498. KingbeetlesLair.Size = UDim2.new(0, 180, 0, 20)
  499. KingbeetlesLair.TextColor3 = Color3.new(1, 1, 1)
  500. KingbeetlesLair.Font = Enum.Font.Fantasy
  501. KingbeetlesLair.Text = "King Beetles Lair"
  502. KingbeetlesLair.TextSize = 16
  503.  
  504. HoneyConvertor.Name = "HoneyConvertor"
  505. HoneyConvertor.Parent = WayPointsFrame
  506. HoneyConvertor.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  507. HoneyConvertor.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  508. HoneyConvertor.Position = UDim2.new(0, 5, 0, 505)
  509. HoneyConvertor.Size = UDim2.new(0, 180, 0, 20)
  510. HoneyConvertor.TextColor3 = Color3.new(1, 1, 1)
  511. HoneyConvertor.Font = Enum.Font.Fantasy
  512. HoneyConvertor.Text = "Instant Honey Converter"
  513. HoneyConvertor.TextSize = 16
  514.  
  515. Blender.Name = "Blender"
  516. Blender.Parent = WayPointsFrame
  517. Blender.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  518. Blender.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  519. Blender.Position = UDim2.new(0, 5, 0, 530)
  520. Blender.Size = UDim2.new(0, 180, 0, 20)
  521. Blender.TextColor3 = Color3.new(1, 1, 1)
  522. Blender.Font = Enum.Font.Fantasy
  523. Blender.Text = "Blender"
  524. Blender.TextSize = 16
  525.  
  526. GiftedBuckoBee.Name = "GiftedBuckoBee"
  527. GiftedBuckoBee.Parent = WayPointsFrame
  528. GiftedBuckoBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  529. GiftedBuckoBee.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  530. GiftedBuckoBee.Position = UDim2.new(0, 5, 0, 555)
  531. GiftedBuckoBee.Size = UDim2.new(0, 180, 0, 20)
  532. GiftedBuckoBee.TextColor3 = Color3.new(1, 1, 1)
  533. GiftedBuckoBee.Font = Enum.Font.Fantasy
  534. GiftedBuckoBee.Text = "Gifted Bucko Bee"
  535. GiftedBuckoBee.TextSize = 16
  536.  
  537. GiftedRileyBee.Name = "GiftedRileyBee"
  538. GiftedRileyBee.Parent = WayPointsFrame
  539. GiftedRileyBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  540. GiftedRileyBee.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  541. GiftedRileyBee.Position = UDim2.new(0, 5, 0, 580)
  542. GiftedRileyBee.Size = UDim2.new(0, 180, 0, 20)
  543. GiftedRileyBee.TextColor3 = Color3.new(1, 1, 1)
  544. GiftedRileyBee.Font = Enum.Font.Fantasy
  545. GiftedRileyBee.Text = "Gifted Riley Bee"
  546. GiftedRileyBee.TextSize = 16
  547.  
  548. StickBug.Name = "StickBug"
  549. StickBug.Parent = WayPointsFrame
  550. StickBug.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  551. StickBug.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  552. StickBug.Position = UDim2.new(0, 5, 0, 605)
  553. StickBug.Size = UDim2.new(0, 180, 0, 20)
  554. StickBug.TextColor3 = Color3.new(1, 1, 1)
  555. StickBug.Font = Enum.Font.Fantasy
  556. StickBug.Text = "Stick Bug"
  557. StickBug.TextSize = 16
  558.  
  559. BeeShop.Name = "BeeShop"
  560. BeeShop.Parent = WayPointsFrame
  561. BeeShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  562. BeeShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  563. BeeShop.Position = UDim2.new(0, 190, 0, 30)
  564. BeeShop.Size = UDim2.new(0, 180, 0, 20)
  565. BeeShop.TextColor3 = Color3.new(1, 1, 1)
  566. BeeShop.Font = Enum.Font.Fantasy
  567. BeeShop.Text = "Bees Shop"
  568. BeeShop.TextSize = 16
  569.  
  570. TPShop.Name = "TPShop"
  571. TPShop.Parent = WayPointsFrame
  572. TPShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  573. TPShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  574. TPShop.Position = UDim2.new(0, 190, 0, 55)
  575. TPShop.Size = UDim2.new(0, 180, 0, 20)
  576. TPShop.TextColor3 = Color3.new(1, 1, 1)
  577. TPShop.Font = Enum.Font.Fantasy
  578. TPShop.Text = "Basic Tools Shop"
  579. TPShop.TextSize = 16
  580.  
  581. TPShop2.Name = "TPShop2"
  582. TPShop2.Parent = WayPointsFrame
  583. TPShop2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  584. TPShop2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  585. TPShop2.Position = UDim2.new(0, 190, 0, 80)
  586. TPShop2.Size = UDim2.new(0, 180, 0, 20)
  587. TPShop2.TextColor3 = Color3.new(1, 1, 1)
  588. TPShop2.Font = Enum.Font.Fantasy
  589. TPShop2.Text = "Advanced Tools Shop"
  590. TPShop2.TextSize = 16
  591.  
  592. MountainTopShop.Name = "MountainTopShop"
  593. MountainTopShop.Parent = WayPointsFrame
  594. MountainTopShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  595. MountainTopShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  596. MountainTopShop.Position = UDim2.new(0, 190, 0, 105)
  597. MountainTopShop.Size = UDim2.new(0, 180, 0, 20)
  598. MountainTopShop.TextColor3 = Color3.new(1, 1, 1)
  599. MountainTopShop.Font = Enum.Font.Fantasy
  600. MountainTopShop.Text = "Mountain Top Shop"
  601. MountainTopShop.TextSize = 16
  602.  
  603. TentShop.Name = "TentShop"
  604. TentShop.Parent = WayPointsFrame
  605. TentShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  606. TentShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  607. TentShop.Position = UDim2.new(0, 190, 0, 130)
  608. TentShop.Size = UDim2.new(0, 180, 0, 20)
  609. TentShop.TextColor3 = Color3.new(1, 1, 1)
  610. TentShop.Font = Enum.Font.Fantasy
  611. TentShop.Text = "Ticket Tent Shop"
  612. TentShop.TextSize = 16
  613.  
  614. TreatShop.Name = "TreatShop"
  615. TreatShop.Parent = WayPointsFrame
  616. TreatShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  617. TreatShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  618. TreatShop.Position = UDim2.new(0, 190, 0, 155)
  619. TreatShop.Size = UDim2.new(0, 180, 0, 20)
  620. TreatShop.TextColor3 = Color3.new(1, 1, 1)
  621. TreatShop.Font = Enum.Font.Fantasy
  622. TreatShop.Text = "Treat Shop"
  623. TreatShop.TextSize = 16
  624.  
  625. RedClubhouse.Name = "RedClubhouse"
  626. RedClubhouse.Parent = WayPointsFrame
  627. RedClubhouse.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  628. RedClubhouse.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  629. RedClubhouse.Position = UDim2.new(0, 190, 0, 180)
  630. RedClubhouse.Size = UDim2.new(0, 180, 0, 20)
  631. RedClubhouse.TextColor3 = Color3.new(1, 1, 1)
  632. RedClubhouse.Font = Enum.Font.Fantasy
  633. RedClubhouse.Text = "Red Clubhouse"
  634. RedClubhouse.TextSize = 16
  635.  
  636. BlueClubhouse.Name = "BlueClubhouse"
  637. BlueClubhouse.Parent = WayPointsFrame
  638. BlueClubhouse.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  639. BlueClubhouse.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  640. BlueClubhouse.Position = UDim2.new(0, 190, 0, 205)
  641. BlueClubhouse.Size = UDim2.new(0, 180, 0, 20)
  642. BlueClubhouse.TextColor3 = Color3.new(1, 1, 1)
  643. BlueClubhouse.Font = Enum.Font.Fantasy
  644. BlueClubhouse.Text = "Blue Clubhouse"
  645. BlueClubhouse.TextSize = 16
  646.  
  647. TicketShop.Name = "TicketShop"
  648. TicketShop.Parent = WayPointsFrame
  649. TicketShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  650. TicketShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  651. TicketShop.Position = UDim2.new(0, 190, 0, 230)
  652. TicketShop.Size = UDim2.new(0, 180, 0, 20)
  653. TicketShop.TextColor3 = Color3.new(1, 1, 1)
  654. TicketShop.Font = Enum.Font.Fantasy
  655. TicketShop.Text = "Ticket Dispenser"
  656. TicketShop.TextSize = 16
  657.  
  658. ClubHoney.Name = "ClubHoney"
  659. ClubHoney.Parent = WayPointsFrame
  660. ClubHoney.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  661. ClubHoney.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  662. ClubHoney.Position = UDim2.new(0, 190, 0, 255)
  663. ClubHoney.Size = UDim2.new(0, 180, 0, 20)
  664. ClubHoney.TextColor3 = Color3.new(1, 1, 1)
  665. ClubHoney.Font = Enum.Font.Fantasy
  666. ClubHoney.Text = "Club Honey Dispenser"
  667. ClubHoney.TextSize = 16
  668.  
  669. RoyalJellyShop.Name = "RoyalJellyShop"
  670. RoyalJellyShop.Parent = WayPointsFrame
  671. RoyalJellyShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  672. RoyalJellyShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  673. RoyalJellyShop.Position = UDim2.new(0, 190, 0, 280)
  674. RoyalJellyShop.Size = UDim2.new(0, 180, 0, 20)
  675. RoyalJellyShop.TextColor3 = Color3.new(1, 1, 1)
  676. RoyalJellyShop.Font = Enum.Font.Fantasy
  677. RoyalJellyShop.Text = "Royal Jelly Dispenser"
  678. RoyalJellyShop.TextSize = 16
  679.  
  680. TicketRoyalJelly.Name = "TicketRoyalJelly"
  681. TicketRoyalJelly.Parent = WayPointsFrame
  682. TicketRoyalJelly.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  683. TicketRoyalJelly.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  684. TicketRoyalJelly.Position = UDim2.new(0, 190, 0, 305)
  685. TicketRoyalJelly.Size = UDim2.new(0, 180, 0, 20)
  686. TicketRoyalJelly.TextColor3 = Color3.new(1, 1, 1)
  687. TicketRoyalJelly.Font = Enum.Font.Fantasy
  688. TicketRoyalJelly.Text = "Ticket Royal Jelly Dispenser"
  689. TicketRoyalJelly.TextSize = 16
  690.  
  691. GumdropDispenser.Name = "GumdropDispenser"
  692. GumdropDispenser.Parent = WayPointsFrame
  693. GumdropDispenser.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  694. GumdropDispenser.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  695. GumdropDispenser.Position = UDim2.new(0, 190, 0, 330)
  696. GumdropDispenser.Size = UDim2.new(0, 180, 0, 20)
  697. GumdropDispenser.TextColor3 = Color3.new(1, 1, 1)
  698. GumdropDispenser.Font = Enum.Font.Fantasy
  699. GumdropDispenser.Text = "Gumdrop Dispenser"
  700. GumdropDispenser.TextSize = 16
  701.  
  702. BlueberryDispenser.Name = "BlueberryDispenser"
  703. BlueberryDispenser.Parent = WayPointsFrame
  704. BlueberryDispenser.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  705. BlueberryDispenser.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  706. BlueberryDispenser.Position = UDim2.new(0, 190, 0, 355)
  707. BlueberryDispenser.Size = UDim2.new(0, 180, 0, 20)
  708. BlueberryDispenser.TextColor3 = Color3.new(1, 1, 1)
  709. BlueberryDispenser.Font = Enum.Font.Fantasy
  710. BlueberryDispenser.Text = "Blueberry Dispenser"
  711. BlueberryDispenser.TextSize = 16
  712.  
  713. StrawberryDispenser.Name = "StrawberryDispenser"
  714. StrawberryDispenser.Parent = WayPointsFrame
  715. StrawberryDispenser.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  716. StrawberryDispenser.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  717. StrawberryDispenser.Position = UDim2.new(0, 190, 0, 380)
  718. StrawberryDispenser.Size = UDim2.new(0, 180, 0, 20)
  719. StrawberryDispenser.TextColor3 = Color3.new(1, 1, 1)
  720. StrawberryDispenser.Font = Enum.Font.Fantasy
  721. StrawberryDispenser.Text = "Strawberry Dispenser"
  722. StrawberryDispenser.TextSize = 16
  723.  
  724. TreatDispenser.Name = "TreatDispenser"
  725. TreatDispenser.Parent = WayPointsFrame
  726. TreatDispenser.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  727. TreatDispenser.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  728. TreatDispenser.Position = UDim2.new(0, 190, 0, 405)
  729. TreatDispenser.Size = UDim2.new(0, 180, 0, 20)
  730. TreatDispenser.TextColor3 = Color3.new(1, 1, 1)
  731. TreatDispenser.Font = Enum.Font.Fantasy
  732. TreatDispenser.Text = "Treat Dispenser"
  733. TreatDispenser.TextSize = 16
  734.  
  735. StarHut.Name = "StarHut"
  736. StarHut.Parent = WayPointsFrame
  737. StarHut.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  738. StarHut.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  739. StarHut.Position = UDim2.new(0, 190, 0, 430)
  740. StarHut.Size = UDim2.new(0, 180, 0, 20)
  741. StarHut.TextColor3 = Color3.new(1, 1, 1)
  742. StarHut.Font = Enum.Font.Fantasy
  743. StarHut.Text = "Star Hall"
  744. StarHut.TextSize = 16
  745.  
  746. WealthClock.Name = "WealthClock"
  747. WealthClock.Parent = WayPointsFrame
  748. WealthClock.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  749. WealthClock.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  750. WealthClock.Position = UDim2.new(0, 190, 0, 455)
  751. WealthClock.Size = UDim2.new(0, 180, 0, 20)
  752. WealthClock.TextColor3 = Color3.new(1, 1, 1)
  753. WealthClock.Font = Enum.Font.Fantasy
  754. WealthClock.Text = "Wealth Clock"
  755. WealthClock.TextSize = 16
  756.  
  757. Honeystorm.Name = "Honeystorm"
  758. Honeystorm.Parent = WayPointsFrame
  759. Honeystorm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  760. Honeystorm.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  761. Honeystorm.Position = UDim2.new(0, 190, 0, 480)
  762. Honeystorm.Size = UDim2.new(0, 180, 0, 20)
  763. Honeystorm.TextColor3 = Color3.new(1, 1, 1)
  764. Honeystorm.Font = Enum.Font.Fantasy
  765. Honeystorm.Text = "Summon a Honeystorm"
  766. Honeystorm.TextSize = 16
  767.  
  768. SproutDispenser.Name = "SproutDispenser"
  769. SproutDispenser.Parent = WayPointsFrame
  770. SproutDispenser.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  771. SproutDispenser.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  772. SproutDispenser.Position = UDim2.new(0, 190, 0, 505)
  773. SproutDispenser.Size = UDim2.new(0, 180, 0, 20)
  774. SproutDispenser.TextColor3 = Color3.new(1, 1, 1)
  775. SproutDispenser.Font = Enum.Font.Fantasy
  776. SproutDispenser.Text = "Summon a Sprout"
  777. SproutDispenser.TextSize = 16
  778.  
  779. GlueDispenser.Name = "GlueDispenser"
  780. GlueDispenser.Parent = WayPointsFrame
  781. GlueDispenser.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  782. GlueDispenser.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  783. GlueDispenser.Position = UDim2.new(0, 190, 0, 530)
  784. GlueDispenser.Size = UDim2.new(0, 180, 0, 20)
  785. GlueDispenser.TextColor3 = Color3.new(1, 1, 1)
  786. GlueDispenser.Font = Enum.Font.Fantasy
  787. GlueDispenser.Text = "Glue Dispenser"
  788. GlueDispenser.TextSize = 16
  789.  
  790. SunflowerField.Name = "SunflowerField"
  791. SunflowerField.Parent = WayPointsFrame
  792. SunflowerField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  793. SunflowerField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  794. SunflowerField.Position = UDim2.new(0, 375, 0, 30)
  795. SunflowerField.Size = UDim2.new(0, 180, 0, 20)
  796. SunflowerField.TextColor3 = Color3.new(1, 1, 1)
  797. SunflowerField.Font = Enum.Font.Fantasy
  798. SunflowerField.Text = "Sunflower Field"
  799. SunflowerField.TextSize = 16
  800.  
  801. MushRoomField.Name = "MushRoomField"
  802. MushRoomField.Parent = WayPointsFrame
  803. MushRoomField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  804. MushRoomField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  805. MushRoomField.Position = UDim2.new(0, 375, 0, 55)
  806. MushRoomField.Size = UDim2.new(0, 180, 0, 20)
  807. MushRoomField.TextColor3 = Color3.new(1, 1, 1)
  808. MushRoomField.Font = Enum.Font.Fantasy
  809. MushRoomField.Text = "MushRoom Field"
  810. MushRoomField.TextSize = 16
  811.  
  812. DandelionField.Name = "DandelionField"
  813. DandelionField.Parent = WayPointsFrame
  814. DandelionField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  815. DandelionField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  816. DandelionField.Position = UDim2.new(0, 375, 0, 80)
  817. DandelionField.Size = UDim2.new(0, 180, 0, 20)
  818. DandelionField.TextColor3 = Color3.new(1, 1, 1)
  819. DandelionField.Font = Enum.Font.Fantasy
  820. DandelionField.Text = "Dandelion Field"
  821. DandelionField.TextSize = 16
  822.  
  823. BlueField.Name = "BlueField"
  824. BlueField.Parent = WayPointsFrame
  825. BlueField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  826. BlueField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  827. BlueField.Position = UDim2.new(0, 375, 0, 105)
  828. BlueField.Size = UDim2.new(0, 180, 0, 20)
  829. BlueField.TextColor3 = Color3.new(1, 1, 1)
  830. BlueField.Font = Enum.Font.Fantasy
  831. BlueField.Text = "Blue Flower Field"
  832. BlueField.TextSize = 16
  833.  
  834. CloverField.Name = "CloverField"
  835. CloverField.Parent = WayPointsFrame
  836. CloverField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  837. CloverField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  838. CloverField.Position = UDim2.new(0, 375, 0, 130)
  839. CloverField.Size = UDim2.new(0, 180, 0, 20)
  840. CloverField.TextColor3 = Color3.new(1, 1, 1)
  841. CloverField.Font = Enum.Font.Fantasy
  842. CloverField.Text = "Clover Field"
  843. CloverField.TextSize = 16
  844.  
  845. StrawBerryField.Name = "StrawBerryField"
  846. StrawBerryField.Parent = WayPointsFrame
  847. StrawBerryField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  848. StrawBerryField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  849. StrawBerryField.Position = UDim2.new(0, 375, 0, 155)
  850. StrawBerryField.Size = UDim2.new(0, 180, 0, 20)
  851. StrawBerryField.TextColor3 = Color3.new(1, 1, 1)
  852. StrawBerryField.Font = Enum.Font.Fantasy
  853. StrawBerryField.Text = "StrawBerry Field"
  854. StrawBerryField.TextSize = 16
  855.  
  856. SpiderField.Name = "SpiderField"
  857. SpiderField.Parent = WayPointsFrame
  858. SpiderField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  859. SpiderField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  860. SpiderField.Position = UDim2.new(0, 375, 0, 180)
  861. SpiderField.Size = UDim2.new(0, 180, 0, 20)
  862. SpiderField.TextColor3 = Color3.new(1, 1, 1)
  863. SpiderField.Font = Enum.Font.Fantasy
  864. SpiderField.Text = "Spider Field"
  865. SpiderField.TextSize = 16
  866.  
  867. BamBooField.Name = "BamBooField"
  868. BamBooField.Parent = WayPointsFrame
  869. BamBooField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  870. BamBooField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  871. BamBooField.Position = UDim2.new(0, 375, 0, 205)
  872. BamBooField.Size = UDim2.new(0, 180, 0, 20)
  873. BamBooField.TextColor3 = Color3.new(1, 1, 1)
  874. BamBooField.Font = Enum.Font.Fantasy
  875. BamBooField.Text = "BamBoo Field"
  876. BamBooField.TextSize = 16
  877.  
  878. RoseField.Name = "RoseField"
  879. RoseField.Parent = WayPointsFrame
  880. RoseField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  881. RoseField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  882. RoseField.Position = UDim2.new(0, 375, 0, 230)
  883. RoseField.Size = UDim2.new(0, 180, 0, 20)
  884. RoseField.TextColor3 = Color3.new(1, 1, 1)
  885. RoseField.Font = Enum.Font.Fantasy
  886. RoseField.Text = "Rose Field"
  887. RoseField.TextSize = 16
  888.  
  889. PineTreeField.Name = "PineTreeField"
  890. PineTreeField.Parent = WayPointsFrame
  891. PineTreeField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  892. PineTreeField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  893. PineTreeField.Position = UDim2.new(0, 375, 0, 255)
  894. PineTreeField.Size = UDim2.new(0, 180, 0, 20)
  895. PineTreeField.TextColor3 = Color3.new(1, 1, 1)
  896. PineTreeField.Font = Enum.Font.Fantasy
  897. PineTreeField.Text = "Pine Tree Forest"
  898. PineTreeField.TextSize = 16
  899.  
  900. CactusField.Name = "CactusField"
  901. CactusField.Parent = WayPointsFrame
  902. CactusField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  903. CactusField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  904. CactusField.Position = UDim2.new(0, 375, 0, 280)
  905. CactusField.Size = UDim2.new(0, 180, 0, 20)
  906. CactusField.TextColor3 = Color3.new(1, 1, 1)
  907. CactusField.Font = Enum.Font.Fantasy
  908. CactusField.Text = "Cactus Field"
  909. CactusField.TextSize = 16
  910.  
  911. PumpkinField.Name = "PumpkinField"
  912. PumpkinField.Parent = WayPointsFrame
  913. PumpkinField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  914. PumpkinField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  915. PumpkinField.Position = UDim2.new(0, 375, 0, 305)
  916. PumpkinField.Size = UDim2.new(0, 180, 0, 20)
  917. PumpkinField.TextColor3 = Color3.new(1, 1, 1)
  918. PumpkinField.Font = Enum.Font.Fantasy
  919. PumpkinField.Text = "Pumpkin Patch"
  920. PumpkinField.TextSize = 16
  921.  
  922. PineappleField.Name = "PineappleField"
  923. PineappleField.Parent = WayPointsFrame
  924. PineappleField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  925. PineappleField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  926. PineappleField.Position = UDim2.new(0, 375, 0, 330)
  927. PineappleField.Size = UDim2.new(0, 180, 0, 20)
  928. PineappleField.TextColor3 = Color3.new(1, 1, 1)
  929. PineappleField.Font = Enum.Font.Fantasy
  930. PineappleField.Text = "Pineapple Patch"
  931. PineappleField.TextSize = 16
  932.  
  933. MountainTopField.Name = "MountainTopField"
  934. MountainTopField.Parent = WayPointsFrame
  935. MountainTopField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  936. MountainTopField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  937. MountainTopField.Position = UDim2.new(0, 375, 0, 355)
  938. MountainTopField.Size = UDim2.new(0, 180, 0, 20)
  939. MountainTopField.TextColor3 = Color3.new(1, 1, 1)
  940. MountainTopField.Font = Enum.Font.Fantasy
  941. MountainTopField.Text = "Mountain Top Field"
  942. MountainTopField.TextSize = 16
  943.  
  944. StumpField.Name = "StumpField"
  945. StumpField.Parent = WayPointsFrame
  946. StumpField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  947. StumpField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  948. StumpField.Position = UDim2.new(0, 375, 0, 380)
  949. StumpField.Size = UDim2.new(0, 180, 0, 20)
  950. StumpField.TextColor3 = Color3.new(1, 1, 1)
  951. StumpField.Font = Enum.Font.Fantasy
  952. StumpField.Text = "Stump Field"
  953. StumpField.TextSize = 16
  954.  
  955. Field1AF.Name = "Field1AF"
  956. Field1AF.Parent = WayPointsFrame
  957. Field1AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  958. Field1AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  959. Field1AF.Position = UDim2.new(0, 555, 0, 30)
  960. Field1AF.Size = UDim2.new(0, 40, 0, 20)
  961. Field1AF.TextColor3 = Color3.new(1, 1, 1)
  962. Field1AF.Font = Enum.Font.Fantasy
  963. Field1AF.Text = "Farm"
  964. Field1AF.TextSize = 16
  965.  
  966. Field2AF.Name = "Field2AF"
  967. Field2AF.Parent = WayPointsFrame
  968. Field2AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  969. Field2AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  970. Field2AF.Position = UDim2.new(0, 555, 0, 55)
  971. Field2AF.Size = UDim2.new(0, 40, 0, 20)
  972. Field2AF.TextColor3 = Color3.new(1, 1, 1)
  973. Field2AF.Font = Enum.Font.Fantasy
  974. Field2AF.Text = "Farm"
  975. Field2AF.TextSize = 16
  976.  
  977. Field3AF.Name = "Field3AF"
  978. Field3AF.Parent = WayPointsFrame
  979. Field3AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  980. Field3AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  981. Field3AF.Position = UDim2.new(0, 555, 0, 80)
  982. Field3AF.Size = UDim2.new(0, 40, 0, 20)
  983. Field3AF.TextColor3 = Color3.new(1, 1, 1)
  984. Field3AF.Font = Enum.Font.Fantasy
  985. Field3AF.Text = "Farm"
  986. Field3AF.TextSize = 16
  987.  
  988. Field4AF.Name = "Field4AF"
  989. Field4AF.Parent = WayPointsFrame
  990. Field4AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  991. Field4AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  992. Field4AF.Position = UDim2.new(0, 555, 0, 105)
  993. Field4AF.Size = UDim2.new(0, 40, 0, 20)
  994. Field4AF.TextColor3 = Color3.new(1, 1, 1)
  995. Field4AF.Font = Enum.Font.Fantasy
  996. Field4AF.Text = "Farm"
  997. Field4AF.TextSize = 16
  998.  
  999. Field5AF.Name = "Field5AF"
  1000. Field5AF.Parent = WayPointsFrame
  1001. Field5AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1002. Field5AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1003. Field5AF.Position = UDim2.new(0, 555, 0, 130)
  1004. Field5AF.Size = UDim2.new(0, 40, 0, 20)
  1005. Field5AF.TextColor3 = Color3.new(1, 1, 1)
  1006. Field5AF.Font = Enum.Font.Fantasy
  1007. Field5AF.Text = "Farm"
  1008. Field5AF.TextSize = 16
  1009.  
  1010. Field6AF.Name = "Field6AF"
  1011. Field6AF.Parent = WayPointsFrame
  1012. Field6AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1013. Field6AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1014. Field6AF.Position = UDim2.new(0, 555, 0, 155)
  1015. Field6AF.Size = UDim2.new(0, 40, 0, 20)
  1016. Field6AF.TextColor3 = Color3.new(1, 1, 1)
  1017. Field6AF.Font = Enum.Font.Fantasy
  1018. Field6AF.Text = "Farm"
  1019. Field6AF.TextSize = 16
  1020.  
  1021. Field7AF.Name = "Field7AF"
  1022. Field7AF.Parent = WayPointsFrame
  1023. Field7AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1024. Field7AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1025. Field7AF.Position = UDim2.new(0, 555, 0, 180)
  1026. Field7AF.Size = UDim2.new(0, 40, 0, 20)
  1027. Field7AF.TextColor3 = Color3.new(1, 1, 1)
  1028. Field7AF.Font = Enum.Font.Fantasy
  1029. Field7AF.Text = "Farm"
  1030. Field7AF.TextSize = 16
  1031.  
  1032. Field8AF.Name = "Field8AF"
  1033. Field8AF.Parent = WayPointsFrame
  1034. Field8AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1035. Field8AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1036. Field8AF.Position = UDim2.new(0, 555, 0, 205)
  1037. Field8AF.Size = UDim2.new(0, 40, 0, 20)
  1038. Field8AF.TextColor3 = Color3.new(1, 1, 1)
  1039. Field8AF.Font = Enum.Font.Fantasy
  1040. Field8AF.Text = "Farm"
  1041. Field8AF.TextSize = 16
  1042.  
  1043. Field9AF.Name = "Field9AF"
  1044. Field9AF.Parent = WayPointsFrame
  1045. Field9AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1046. Field9AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1047. Field9AF.Position = UDim2.new(0, 555, 0, 230)
  1048. Field9AF.Size = UDim2.new(0, 40, 0, 20)
  1049. Field9AF.TextColor3 = Color3.new(1, 1, 1)
  1050. Field9AF.Font = Enum.Font.Fantasy
  1051. Field9AF.Text = "Farm"
  1052. Field9AF.TextSize = 16
  1053.  
  1054. Field10AF.Name = "Field10AF"
  1055. Field10AF.Parent = WayPointsFrame
  1056. Field10AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1057. Field10AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1058. Field10AF.Position = UDim2.new(0, 555, 0, 255)
  1059. Field10AF.Size = UDim2.new(0, 40, 0, 20)
  1060. Field10AF.TextColor3 = Color3.new(1, 1, 1)
  1061. Field10AF.Font = Enum.Font.Fantasy
  1062. Field10AF.Text = "Farm"
  1063. Field10AF.TextSize = 16
  1064.  
  1065. Field11AF.Name = "Field11AF"
  1066. Field11AF.Parent = WayPointsFrame
  1067. Field11AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1068. Field11AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1069. Field11AF.Position = UDim2.new(0, 555, 0, 280)
  1070. Field11AF.Size = UDim2.new(0, 40, 0, 20)
  1071. Field11AF.TextColor3 = Color3.new(1, 1, 1)
  1072. Field11AF.Font = Enum.Font.Fantasy
  1073. Field11AF.Text = "Farm"
  1074. Field11AF.TextSize = 16
  1075.  
  1076. Field12AF.Name = "Field12AF"
  1077. Field12AF.Parent = WayPointsFrame
  1078. Field12AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1079. Field12AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1080. Field12AF.Position = UDim2.new(0, 555, 0, 305)
  1081. Field12AF.Size = UDim2.new(0, 40, 0, 20)
  1082. Field12AF.TextColor3 = Color3.new(1, 1, 1)
  1083. Field12AF.Font = Enum.Font.Fantasy
  1084. Field12AF.Text = "Farm"
  1085. Field12AF.TextSize = 16
  1086.  
  1087. Field13AF.Name = "Field13AF"
  1088. Field13AF.Parent = WayPointsFrame
  1089. Field13AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1090. Field13AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1091. Field13AF.Position = UDim2.new(0, 555, 0, 330)
  1092. Field13AF.Size = UDim2.new(0, 40, 0, 20)
  1093. Field13AF.TextColor3 = Color3.new(1, 1, 1)
  1094. Field13AF.Font = Enum.Font.Fantasy
  1095. Field13AF.Text = "Farm"
  1096. Field13AF.TextSize = 16
  1097.  
  1098. Field14AF.Name = "Field14AF"
  1099. Field14AF.Parent = WayPointsFrame
  1100. Field14AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1101. Field14AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1102. Field14AF.Position = UDim2.new(0, 555, 0, 355)
  1103. Field14AF.Size = UDim2.new(0, 40, 0, 20)
  1104. Field14AF.TextColor3 = Color3.new(1, 1, 1)
  1105. Field14AF.Font = Enum.Font.Fantasy
  1106. Field14AF.Text = "Farm"
  1107. Field14AF.TextSize = 16
  1108.  
  1109. Field15AF.Name = "Field15AF"
  1110. Field15AF.Parent = WayPointsFrame
  1111. Field15AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1112. Field15AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1113. Field15AF.Position = UDim2.new(0, 555, 0, 380)
  1114. Field15AF.Size = UDim2.new(0, 40, 0, 20)
  1115. Field15AF.TextColor3 = Color3.new(1, 1, 1)
  1116. Field15AF.Font = Enum.Font.Fantasy
  1117. Field15AF.Text = "Farm"
  1118. Field15AF.TextSize = 16
  1119.  
  1120. Players.Name = "Players"
  1121. Players.Parent = MainFrame
  1122. Players.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1123. Players.BorderColor3 = Color3.new(0, 1, 0)
  1124. Players.Position = UDim2.new(0, 118, 0, 5)
  1125. Players.Size = UDim2.new(0, 60, 0, 20)
  1126. Players.BackgroundTransparency = 0
  1127. Players.Font = Enum.Font.Fantasy
  1128. Players.TextColor3 = Color3.new(1, 1, 1)
  1129. Players.Text = "Players"
  1130. Players.TextSize = 17
  1131. Players.TextWrapped = true
  1132.  
  1133. PlayerFrame.Name = "PlayerFrame"
  1134. PlayerFrame.Parent = MainFrame
  1135. PlayerFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1136. PlayerFrame.BackgroundTransparency = 0.3
  1137. PlayerFrame.BorderColor3 = Color3.new(0, 0, 0)
  1138. PlayerFrame.Position = UDim2.new(0, 63, 0, 34)
  1139. PlayerFrame.Size = UDim2.new(0, 170, 0, 200)
  1140. PlayerFrame.Visible = false
  1141.  
  1142. PlyrSel.Name = "PlyrSel"
  1143. PlyrSel.Parent = PlayerFrame
  1144. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  1145. PlyrSel.BackgroundTransparency = 0.15
  1146. PlyrSel.BorderColor3 = Color3.new(0, 0, 0)
  1147. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  1148. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  1149. PlyrSel.Font = Enum.Font.SourceSans
  1150. PlyrSel.Text = "SELECT A PLAYER"
  1151. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  1152. PlyrSel.TextScaled = true
  1153. PlyrSel.TextSize = 17
  1154. PlyrSel.TextWrapped = true
  1155.  
  1156. Player1.Name = "Player1"
  1157. Player1.Parent = PlayerFrame
  1158. Player1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1159. Player1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1160. Player1.Position = UDim2.new(0, 5, 0, 35)
  1161. Player1.Size = UDim2.new(0, 160, 0, 20)
  1162. Player1.Font = Enum.Font.Fantasy
  1163. Player1.Text = ""
  1164. Player1.TextColor3 = Color3.new(1, 1, 1)
  1165. Player1.TextSize = 15
  1166. Player1.TextWrapped = true
  1167.  
  1168. Player2.Name = "Player2"
  1169. Player2.Parent = PlayerFrame
  1170. Player2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1171. Player2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1172. Player2.Position = UDim2.new(0, 5, 0, 60)
  1173. Player2.Size = UDim2.new(0, 160, 0, 20)
  1174. Player2.Font = Enum.Font.Fantasy
  1175. Player2.Text = ""
  1176. Player2.TextColor3 = Color3.new(1, 1, 1)
  1177. Player2.TextSize = 15
  1178. Player2.TextWrapped = true
  1179.  
  1180. Player3.Name = "Player3"
  1181. Player3.Parent = PlayerFrame
  1182. Player3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1183. Player3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1184. Player3.Position = UDim2.new(0, 5, 0, 85)
  1185. Player3.Size = UDim2.new(0, 160, 0, 20)
  1186. Player3.Font = Enum.Font.Fantasy
  1187. Player3.Text = ""
  1188. Player3.TextColor3 = Color3.new(1, 1, 1)
  1189. Player3.TextSize = 15
  1190. Player3.TextWrapped = true
  1191.  
  1192. Player4.Name = "Player4"
  1193. Player4.Parent = PlayerFrame
  1194. Player4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1195. Player4.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1196. Player4.Position = UDim2.new(0, 5, 0, 110)
  1197. Player4.Size = UDim2.new(0, 160, 0, 20)
  1198. Player4.Font = Enum.Font.Fantasy
  1199. Player4.Text = ""
  1200. Player4.TextColor3 = Color3.new(1, 1, 1)
  1201. Player4.TextSize = 15
  1202. Player4.TextWrapped = true
  1203.  
  1204. Player5.Name = "Player5"
  1205. Player5.Parent = PlayerFrame
  1206. Player5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1207. Player5.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1208. Player5.Position = UDim2.new(0, 5, 0, 135)
  1209. Player5.Size = UDim2.new(0, 160, 0, 20)
  1210. Player5.Font = Enum.Font.Fantasy
  1211. Player5.Text = ""
  1212. Player5.TextColor3 = Color3.new(1, 1, 1)
  1213. Player5.TextSize = 15
  1214. Player5.TextWrapped = true
  1215.  
  1216. TpPlayer.Name = "TpPlayer"
  1217. TpPlayer.Parent = PlayerFrame
  1218. TpPlayer.BackgroundColor3 = Color3.new(0.18, 0.18, 0.18)
  1219. TpPlayer.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1220. TpPlayer.Position = UDim2.new(0, 5, 0, 165)
  1221. TpPlayer.Size = UDim2.new(0, 160, 0, 30)
  1222. TpPlayer.Font = Enum.Font.Fantasy
  1223. TpPlayer.Text = "Teleport to Player"
  1224. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  1225. TpPlayer.TextWrapped = true
  1226. TpPlayer.TextSize = 17
  1227.  
  1228. PollenFarm.Name = "PollenFarm"
  1229. PollenFarm.Parent = MainFrame
  1230. PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1231. PollenFarm.BorderColor3 = Color3.new(0, 1, 0)
  1232. PollenFarm.Position = UDim2.new(0, 183, 0, 5)
  1233. PollenFarm.Size = UDim2.new(0, 90, 0, 20)
  1234. PollenFarm.Font = Enum.Font.Fantasy
  1235. PollenFarm.TextColor3 = Color3.new(1, 1, 1)
  1236. PollenFarm.Text = "Farm Pollen"
  1237. PollenFarm.TextSize = 17
  1238. PollenFarm.TextWrapped = true
  1239.  
  1240. FarmFrame.Name = "FarmFrame"
  1241. FarmFrame.Parent = MainFrame
  1242. FarmFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1243. FarmFrame.BorderColor3 = Color3.new(0, 0, 0)
  1244. FarmFrame.BackgroundTransparency = 0
  1245. FarmFrame.Position = UDim2.new(0, 138, 0, 34)
  1246. FarmFrame.Size = UDim2.new(0, 180, 0, 55)
  1247. FarmFrame.ZIndex = 7
  1248. FarmFrame.Visible = false
  1249.  
  1250. AvoidViciousBee.Name = "AvoidViciousBee"
  1251. AvoidViciousBee.Parent = FarmFrame
  1252. AvoidViciousBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1253. AvoidViciousBee.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1254. AvoidViciousBee.BackgroundTransparency = 0
  1255. AvoidViciousBee.Position = UDim2.new(0, 5, 0, 5)
  1256. AvoidViciousBee.Size = UDim2.new(0, 170, 0, 20)
  1257. AvoidViciousBee.Font = Enum.Font.Fantasy
  1258. AvoidViciousBee.TextColor3 = Color3.new(1, 1, 1)
  1259. AvoidViciousBee.Text = "Avoid Vicious Bee: OFF"
  1260. AvoidViciousBee.TextSize = 17
  1261. AvoidViciousBee.ZIndex = 7
  1262. AvoidViciousBee.TextWrapped = true
  1263.  
  1264. StartFarm.Name = "StartFarm"
  1265. StartFarm.Parent = FarmFrame
  1266. StartFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1267. StartFarm.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1268. StartFarm.BackgroundTransparency = 0
  1269. StartFarm.Position = UDim2.new(0, 5, 0, 30)
  1270. StartFarm.Size = UDim2.new(0, 170, 0, 20)
  1271. StartFarm.Font = Enum.Font.Fantasy
  1272. StartFarm.TextColor3 = Color3.new(1, 1, 1)
  1273. StartFarm.Text = "Pollen Farm: OFF"
  1274. StartFarm.TextSize = 17
  1275. StartFarm.ZIndex = 7
  1276. StartFarm.TextWrapped = true
  1277.  
  1278. AutoDig.Name = "AutoDig"
  1279. AutoDig.Parent = MainFrame
  1280. AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1281. AutoDig.BorderColor3 = Color3.new(0, 1, 0)
  1282. AutoDig.Position = UDim2.new(0, 278, 0, 5)
  1283. AutoDig.Size = UDim2.new(0, 70, 0, 20)
  1284. AutoDig.Font = Enum.Font.Fantasy
  1285. AutoDig.TextColor3 = Color3.new(1, 1, 1)
  1286. AutoDig.Text = "Auto Dig"
  1287. AutoDig.TextSize = 17
  1288. AutoDig.TextWrapped = true
  1289.  
  1290. God.Name = "God"
  1291. God.Parent = MainFrame
  1292. God.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1293. God.BorderColor3 = Color3.new(0, 1, 0)
  1294. God.Position = UDim2.new(0, 353, 0, 5)
  1295. God.Size = UDim2.new(0, 115, 0, 20)
  1296. God.Font = Enum.Font.Fantasy
  1297. God.TextColor3 = Color3.new(1, 1, 1)
  1298. God.Text = "God Mode: OFF"
  1299. God.TextSize = 17
  1300. God.TextWrapped = true
  1301.  
  1302. ExtrasScreen.Name = "ExtrasScreen"
  1303. ExtrasScreen.Parent = MainFrame
  1304. ExtrasScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1305. ExtrasScreen.BorderColor3 = Color3.new(0, 1, 0)
  1306. ExtrasScreen.Position = UDim2.new(0, 473, 0, 5)
  1307. ExtrasScreen.Size = UDim2.new(0, 50, 0, 20)
  1308. ExtrasScreen.Font = Enum.Font.Fantasy
  1309. ExtrasScreen.TextColor3 = Color3.new(1, 1, 1)
  1310. ExtrasScreen.Text = "Extras"
  1311. ExtrasScreen.TextSize = 17
  1312. ExtrasScreen.TextWrapped = true
  1313.  
  1314. ExtrasFrame.Name = "ExtrasFrame"
  1315. ExtrasFrame.Parent = MainFrame
  1316. ExtrasFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1317. ExtrasFrame.BorderColor3 = Color3.new(0, 0, 0)
  1318. ExtrasFrame.BackgroundTransparency = 0
  1319. ExtrasFrame.Position = UDim2.new(0, 413, 0, 34)
  1320. ExtrasFrame.Size = UDim2.new(0, 170, 0, 355)
  1321. ExtrasFrame.ZIndex = 7
  1322. ExtrasFrame.Visible = false
  1323.  
  1324. HuntViciousBee.Name = "HuntViciousBee"
  1325. HuntViciousBee.Parent = ExtrasFrame
  1326. HuntViciousBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1327. HuntViciousBee.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1328. HuntViciousBee.Position = UDim2.new(0, 5, 0, 5)
  1329. HuntViciousBee.Size = UDim2.new(0, 160, 0, 20)
  1330. HuntViciousBee.Font = Enum.Font.Fantasy
  1331. HuntViciousBee.TextColor3 = Color3.new(1, 1, 1)
  1332. HuntViciousBee.Text = "Hunt Vicious Bee: OFF"
  1333. HuntViciousBee.TextSize = 17
  1334. HuntViciousBee.ZIndex = 7
  1335. HuntViciousBee.TextWrapped = true
  1336.  
  1337. SproutFarmToggle.Name = "SproutFarmToggle"
  1338. SproutFarmToggle.Parent = ExtrasFrame
  1339. SproutFarmToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1340. SproutFarmToggle.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1341. SproutFarmToggle.Position = UDim2.new(0, 5, 0, 30)
  1342. SproutFarmToggle.Size = UDim2.new(0, 160, 0, 20)
  1343. SproutFarmToggle.Font = Enum.Font.Fantasy
  1344. SproutFarmToggle.TextColor3 = Color3.new(1, 1, 1)
  1345. SproutFarmToggle.Text = "Farm Sprout: OFF"
  1346. SproutFarmToggle.TextSize = 17
  1347. SproutFarmToggle.ZIndex = 7
  1348. SproutFarmToggle.TextWrapped = true
  1349.  
  1350. WealthClockToggle.Name = "WealthClockToggle"
  1351. WealthClockToggle.Parent = ExtrasFrame
  1352. WealthClockToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1353. WealthClockToggle.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1354. WealthClockToggle.Position = UDim2.new(0, 5, 0, 55)
  1355. WealthClockToggle.Size = UDim2.new(0, 160, 0, 20)
  1356. WealthClockToggle.TextColor3 = Color3.new(1, 1, 1)
  1357. WealthClockToggle.Font = Enum.Font.Fantasy
  1358. WealthClockToggle.Text = "Wealth Clock: OFF"
  1359. WealthClockToggle.ZIndex = 7
  1360. WealthClockToggle.TextSize = 16
  1361.  
  1362. FieldBoostToggle.Name = "FieldBoostToggle"
  1363. FieldBoostToggle.Parent = ExtrasFrame
  1364. FieldBoostToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1365. FieldBoostToggle.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1366. FieldBoostToggle.Position = UDim2.new(0, 5, 0, 80)
  1367. FieldBoostToggle.Size = UDim2.new(0, 160, 0, 20)
  1368. FieldBoostToggle.TextColor3 = Color3.new(1, 1, 1)
  1369. FieldBoostToggle.Font = Enum.Font.Fantasy
  1370. FieldBoostToggle.Text = "Auto Field Boost: OFF"
  1371. FieldBoostToggle.ZIndex = 7
  1372. FieldBoostToggle.TextSize = 16
  1373.  
  1374. TreatToggle.Name = "TreatToggle"
  1375. TreatToggle.Parent = ExtrasFrame
  1376. TreatToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1377. TreatToggle.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1378. TreatToggle.Position = UDim2.new(0, 5, 0, 105)
  1379. TreatToggle.Size = UDim2.new(0, 160, 0, 20)
  1380. TreatToggle.TextColor3 = Color3.new(1, 1, 1)
  1381. TreatToggle.Font = Enum.Font.Fantasy
  1382. TreatToggle.Text = "Auto Treats: OFF"
  1383. TreatToggle.ZIndex = 7
  1384. TreatToggle.TextSize = 16
  1385.  
  1386. NoClip.Name = "NoClip"
  1387. NoClip.Parent = ExtrasFrame
  1388. NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1389. NoClip.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1390. NoClip.Position = UDim2.new(0, 5, 0, 130)
  1391. NoClip.Size = UDim2.new(0, 160, 0, 20)
  1392. NoClip.Font = Enum.Font.Fantasy
  1393. NoClip.TextColor3 = Color3.new(1, 1, 1)
  1394. NoClip.Text = "NoClip Mode: OFF"
  1395. NoClip.TextSize = 17
  1396. NoClip.ZIndex = 7
  1397. NoClip.TextWrapped = true
  1398.  
  1399. FindTreasures.Name = "FindTreasures"
  1400. FindTreasures.Parent = ExtrasFrame
  1401. FindTreasures.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1402. FindTreasures.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1403. FindTreasures.Position = UDim2.new(0, 5, 0, 155)
  1404. FindTreasures.Size = UDim2.new(0, 160, 0, 20)
  1405. FindTreasures.BackgroundTransparency = 0
  1406. FindTreasures.Font = Enum.Font.Fantasy
  1407. FindTreasures.TextColor3 = Color3.new(1, 1, 1)
  1408. FindTreasures.Text = "Tp to all Treasures"
  1409. FindTreasures.TextSize = 17
  1410. FindTreasures.ZIndex = 7
  1411. FindTreasures.TextWrapped = true
  1412.  
  1413. FindTreasuresText1.Name = "FindTreasuresText1"
  1414. FindTreasuresText1.Parent = MainFrame
  1415. FindTreasuresText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1416. FindTreasuresText1.BorderColor3 = Color3.new(0, 0, 0)
  1417. FindTreasuresText1.BackgroundTransparency = 0.1
  1418. FindTreasuresText1.Position = UDim2.new(0, 221, 0, 130)
  1419. FindTreasuresText1.Size = UDim2.new(0, 190, 0, 84)
  1420. FindTreasuresText1.TextColor3 = Color3.new(1, 1, 1)
  1421. FindTreasuresText1.Font = Enum.Font.Fantasy
  1422. FindTreasuresText1.Text = "This will Teleport you to all the hidden treasures on the map. It will only work once\nas the treasures do not respawn."
  1423. FindTreasuresText1.TextSize = 16
  1424. FindTreasuresText1.TextWrapped = true
  1425. FindTreasuresText1.ZIndex = 7
  1426. FindTreasuresText1.Visible = false
  1427. FindTreasuresText1.TextYAlignment = Enum.TextYAlignment.Top
  1428.  
  1429. TPTool.Name = "TPTool"
  1430. TPTool.Parent = ExtrasFrame
  1431. TPTool.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1432. TPTool.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1433. TPTool.Position = UDim2.new(0, 5, 0, 180)
  1434. TPTool.Size = UDim2.new(0, 160, 0, 20)
  1435. TPTool.TextColor3 = Color3.new(1, 1, 1)
  1436. TPTool.Font = Enum.Font.Fantasy
  1437. TPTool.Text = "Add TPTool"
  1438. TPTool.ZIndex = 7
  1439. TPTool.TextSize = 16
  1440.  
  1441. FreeAntPassDispenserToggle.Name = "FreeAntPassDispenserToggle"
  1442. FreeAntPassDispenserToggle.Parent = ExtrasFrame
  1443. FreeAntPassDispenserToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1444. FreeAntPassDispenserToggle.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1445. FreeAntPassDispenserToggle.Position = UDim2.new(0, 5, 0, 205)
  1446. FreeAntPassDispenserToggle.Size = UDim2.new(0, 160, 0, 20)
  1447. FreeAntPassDispenserToggle.TextColor3 = Color3.new(1, 1, 1)
  1448. FreeAntPassDispenserToggle.Font = Enum.Font.Fantasy
  1449. FreeAntPassDispenserToggle.Text = "Auto Free Ant Dispenser: OFF"
  1450. FreeAntPassDispenserToggle.ZIndex = 7
  1451. FreeAntPassDispenserToggle.TextSize = 16
  1452.  
  1453. ReJoinServer.Name = "ReJoinServer"
  1454. ReJoinServer.Parent = ExtrasFrame
  1455. ReJoinServer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1456. ReJoinServer.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1457. ReJoinServer.Position = UDim2.new(0, 5, 0, 230)
  1458. ReJoinServer.Size = UDim2.new(0, 160, 0, 20)
  1459. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  1460. ReJoinServer.Font = Enum.Font.Fantasy
  1461. ReJoinServer.Text = "ReJoin a Server"
  1462. ReJoinServer.TextSize = 16
  1463. ReJoinServer.ZIndex = 7
  1464. ReJoinServer.TextWrapped = true
  1465.  
  1466. TokenToggleLabel.Name = "TokenToggleLabel"
  1467. TokenToggleLabel.Parent = ExtrasFrame
  1468. TokenToggleLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1469. TokenToggleLabel.BorderSizePixel = 0
  1470. TokenToggleLabel.Position = UDim2.new(0, 5, 0, 255)
  1471. TokenToggleLabel.Size = UDim2.new(0, 132, 0, 22)
  1472. TokenToggleLabel.TextColor3 = Color3.new(1, 1, 1)
  1473. TokenToggleLabel.Font = Enum.Font.Fantasy
  1474. TokenToggleLabel.Text = "Token Pickup kb"
  1475. TokenToggleLabel.TextSize = 16
  1476. TokenToggleLabel.ZIndex = 7
  1477. TokenToggleLabel.TextWrapped = true
  1478.  
  1479. TokenToggle.Name = "TokenToggle"
  1480. TokenToggle.Parent = ExtrasFrame
  1481. TokenToggle.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  1482. TokenToggle.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  1483. TokenToggle.Position = UDim2.new(0, 137, 0, 280)
  1484. TokenToggle.Size = UDim2.new(0, 28, 0, 20)
  1485. TokenToggle.TextColor3 = Color3.new(1, 1, 1)
  1486. TokenToggle.Font = Enum.Font.Fantasy
  1487. TokenToggle.Text = "h"
  1488. TokenToggle.TextSize = 16
  1489. TokenToggle.ZIndex = 7
  1490. TokenToggle.TextWrapped = true
  1491.  
  1492. FireflyToggleLabel.Name = "FireflyToggleLabel"
  1493. FireflyToggleLabel.Parent = ExtrasFrame
  1494. FireflyToggleLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1495. FireflyToggleLabel.BorderSizePixel = 0
  1496. FireflyToggleLabel.Position = UDim2.new(0, 5, 0, 280)
  1497. FireflyToggleLabel.Size = UDim2.new(0, 132, 0, 22)
  1498. FireflyToggleLabel.TextColor3 = Color3.new(1, 1, 1)
  1499. FireflyToggleLabel.Font = Enum.Font.Fantasy
  1500. FireflyToggleLabel.Text = "Firefly Touch kb"
  1501. FireflyToggleLabel.TextSize = 16
  1502. FireflyToggleLabel.ZIndex = 7
  1503. FireflyToggleLabel.TextWrapped = true
  1504.  
  1505. FireflyToggle.Name = "FireflyToggle"
  1506. FireflyToggle.Parent = ExtrasFrame
  1507. FireflyToggle.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  1508. FireflyToggle.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  1509. FireflyToggle.Position = UDim2.new(0, 137, 0, 305)
  1510. FireflyToggle.Size = UDim2.new(0, 28, 0, 20)
  1511. FireflyToggle.TextColor3 = Color3.new(1, 1, 1)
  1512. FireflyToggle.Font = Enum.Font.Fantasy
  1513. FireflyToggle.Text = "j"
  1514. FireflyToggle.TextSize = 16
  1515. FireflyToggle.ZIndex = 7
  1516. FireflyToggle.TextWrapped = true
  1517.  
  1518. HoneyToggleLabel.Name = "HoneyToggleLabel"
  1519. HoneyToggleLabel.Parent = ExtrasFrame
  1520. HoneyToggleLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1521. HoneyToggleLabel.BorderSizePixel = 0
  1522. HoneyToggleLabel.Position = UDim2.new(0, 5, 0, 305)
  1523. HoneyToggleLabel.Size = UDim2.new(0, 132, 0, 22)
  1524. HoneyToggleLabel.TextColor3 = Color3.new(1, 1, 1)
  1525. HoneyToggleLabel.Font = Enum.Font.Fantasy
  1526. HoneyToggleLabel.Text = "Make Honey kb"
  1527. HoneyToggleLabel.TextSize = 16
  1528. HoneyToggleLabel.ZIndex = 7
  1529. HoneyToggleLabel.TextWrapped = true
  1530.  
  1531. HoneyToggle.Name = "HoneyToggle"
  1532. HoneyToggle.Parent = ExtrasFrame
  1533. HoneyToggle.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  1534. HoneyToggle.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  1535. HoneyToggle.Position = UDim2.new(0, 137, 0, 330)
  1536. HoneyToggle.Size = UDim2.new(0, 28, 0, 20)
  1537. HoneyToggle.TextColor3 = Color3.new(1, 1, 1)
  1538. HoneyToggle.Font = Enum.Font.Fantasy
  1539. HoneyToggle.Text = "y"
  1540. HoneyToggle.TextSize = 16
  1541. HoneyToggle.ZIndex = 7
  1542. HoneyToggle.TextWrapped = true
  1543.  
  1544. InfoScreen.Name = "InfoScreen"
  1545. InfoScreen.Parent = MainFrame
  1546. InfoScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1547. InfoScreen.BorderColor3 = Color3.new(0, 1, 0)
  1548. InfoScreen.Position = UDim2.new(0, 528, 0, 5)
  1549. InfoScreen.Size = UDim2.new(0, 40, 0, 20)
  1550. InfoScreen.BackgroundTransparency = 0
  1551. InfoScreen.Font = Enum.Font.Fantasy
  1552. InfoScreen.TextColor3 = Color3.new(1, 1, 1)
  1553. InfoScreen.Text = "Info"
  1554. InfoScreen.TextSize = 17
  1555. InfoScreen.TextWrapped = true
  1556.  
  1557. InfoFrame.Name = "InfoFrame"
  1558. InfoFrame.Parent = MainFrame
  1559. InfoFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1560. InfoFrame.BorderColor3 = Color3.new(0, 0, 0)
  1561. InfoFrame.BackgroundTransparency = 0
  1562. InfoFrame.Position = UDim2.new(0, 437, 0, 34)
  1563. InfoFrame.Size = UDim2.new(0, 200, 0, 190)
  1564. InfoFrame.ZIndex = 7
  1565. InfoFrame.Visible = false
  1566.  
  1567. InfoText1.Name = "InfoText1"
  1568. InfoText1.Parent = InfoFrame
  1569. InfoText1.BackgroundColor3 = Color3.new(0, 0, 0)
  1570. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  1571. InfoText1.BackgroundTransparency = 1
  1572. InfoText1.Position = UDim2.new(0, 5, 0, 5)
  1573. InfoText1.Size = UDim2.new(0, 190, 0, 210)
  1574. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  1575. InfoText1.Font = Enum.Font.Fantasy
  1576. InfoText1.Text = "This Gui was created by LuckyMMB@V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\n\nCredits:\nsirelKilla @ v3rmillion for the pollen farming script\nTechnoDaft for adding Btools and Waypoints\nnewdarkt for adding the King Beetles Lair location"
  1577. InfoText1.ZIndex = 7
  1578. InfoText1.TextSize = 15
  1579. InfoText1.TextWrapped = true
  1580. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  1581.  
  1582. TimeLabel.Name = "TimeLabel"
  1583. TimeLabel.Parent = MainFrame
  1584. TimeLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1585. TimeLabel.BorderColor3 = Color3.new(0.15, 0.15, 0.15)
  1586. TimeLabel.Position = UDim2.new(0, 573, 0, 5)
  1587. TimeLabel.Size = UDim2.new(0, 60, 0, 20)
  1588. TimeLabel.BackgroundTransparency = 0
  1589. TimeLabel.Font = Enum.Font.Fantasy
  1590. TimeLabel.TextColor3 = Color3.new(1, 1, 1)
  1591. TimeLabel.Text = ""
  1592. TimeLabel.TextSize = 17
  1593. TimeLabel.TextWrapped = true
  1594.  
  1595. SproutDetect.Name = "SproutDetect"
  1596. SproutDetect.Parent = MainFrame
  1597. SproutDetect.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1598. SproutDetect.BorderColor3 = Color3.new(0.15, 0.15, 0.15)
  1599. SproutDetect.Position = UDim2.new(0, 180, 0, 33)
  1600. SproutDetect.Size = UDim2.new(0, 150, 0, 35)
  1601. SproutDetect.Font = Enum.Font.Fantasy
  1602. SproutDetect.TextColor3 = Color3.new(1, 1, 1)
  1603. SproutDetect.Text = "Sprout Detected\nDistance: "
  1604. SproutDetect.TextSize = 17
  1605. SproutDetect.TextWrapped = true
  1606. SproutDetect.ZIndex = 4
  1607. SproutDetect.Visible = false
  1608.  
  1609. FireflyDetect.Name = "FireflyDetect"
  1610. FireflyDetect.Parent = MainFrame
  1611. FireflyDetect.BackgroundColor3 = Color3.new(0, 0, 0.5)
  1612. FireflyDetect.BorderColor3 = Color3.new(0.15, 0.15, 0.15)
  1613. FireflyDetect.Position = UDim2.new(0, 334, 0, 33)
  1614. FireflyDetect.Size = UDim2.new(0, 150, 0, 35)
  1615. FireflyDetect.Font = Enum.Font.Fantasy
  1616. FireflyDetect.TextColor3 = Color3.new(1, 1, 1)
  1617. FireflyDetect.Text = "Firefly's Detected\nDistance: "
  1618. FireflyDetect.TextSize = 17
  1619. FireflyDetect.TextWrapped = true
  1620. FireflyDetect.ZIndex = 4
  1621. FireflyDetect.Visible = false
  1622.  
  1623. ViciousBeeDetect.Name = "ViciousBeeDetect"
  1624. ViciousBeeDetect.Parent = MainFrame
  1625. ViciousBeeDetect.BackgroundColor3 = Color3.new(0.5, 0, 0)
  1626. ViciousBeeDetect.BorderColor3 = Color3.new(0.15, 0.15, 0.15)
  1627. ViciousBeeDetect.Position = UDim2.new(0, 488, 0, 33)
  1628. ViciousBeeDetect.Size = UDim2.new(0, 150, 0, 35)
  1629. ViciousBeeDetect.Font = Enum.Font.Fantasy
  1630. ViciousBeeDetect.TextColor3 = Color3.new(1, 1, 1)
  1631. ViciousBeeDetect.Text = "Vicious Bee Detected\nDistance: "
  1632. ViciousBeeDetect.TextSize = 17
  1633. ViciousBeeDetect.TextWrapped = true
  1634. ViciousBeeDetect.ZIndex = 4
  1635. ViciousBeeDetect.Visible = false
  1636.  
  1637. -- notify --
  1638.  
  1639. function notify(msg)
  1640. game.StarterGui:SetCore('SendNotification', {
  1641. Title = 'Bee Swarm LuckyGUI';
  1642. Text = msg;
  1643. Duration = 5;
  1644. })
  1645. end
  1646.  
  1647. --- Close ---
  1648.  
  1649. Close.MouseButton1Down:connect(function()
  1650. MainGUI:Destroy()
  1651. end)
  1652.  
  1653. --- Menus ---
  1654.  
  1655. local Menus = {
  1656. [WayPoints] = WayPointsFrame;
  1657. [ExtrasScreen] = ExtrasFrame;
  1658. [InfoScreen] = InfoFrame;
  1659. [PollenFarm] = FarmFrame;
  1660. [Players] = PlayerFrame;
  1661. }
  1662. for button,frame in pairs(Menus) do
  1663. button.MouseButton1Click:connect(function()
  1664. if frame.Visible then
  1665. frame.Visible = false
  1666. return
  1667. end
  1668. for k,v in pairs(Menus) do
  1669. v.Visible = v == frame
  1670. end
  1671. end)
  1672. end
  1673.  
  1674. -- Time --
  1675.  
  1676. spawn(function()
  1677. while true do
  1678. if tostring(game.Lighting.TimeOfDay) == "13:39:00" or tostring(game.Lighting.TimeOfDay) == "13:51:36" then
  1679. TimeLabel.BackgroundColor3 = Color3.new(120/255, 1, 235/255)
  1680. TimeLabel.BorderColor3 = Color3.new(120/255, 1, 235/255)
  1681. TimeLabel.Text = "Day"
  1682. TimeLabel.TextColor3 = Color3.new(0, 0, 0)
  1683. else
  1684. TimeLabel.BackgroundColor3 = Color3.new(59/255, 41/255, 86/255)
  1685. TimeLabel.BorderColor3 = Color3.new(59/255, 41/255, 86/255)
  1686. TimeLabel.Text = "Night"
  1687. TimeLabel.TextColor3 = Color3.new(1, 1, 1)
  1688. end
  1689. wait(1)
  1690. end
  1691. end)
  1692.  
  1693. --- Snow Menus Show Hide ---
  1694.  
  1695. FindTreasures.MouseEnter:connect(function()
  1696. FindTreasuresText1.Visible = true
  1697. end)
  1698.  
  1699. FindTreasures.MouseLeave:connect(function()
  1700. FindTreasuresText1.Visible = false
  1701. end)
  1702.  
  1703. -- Check Health --
  1704.  
  1705. spawn(function()
  1706. while true do
  1707. if not pausehumcheck then
  1708. local PlrChar = game.Players.LocalPlayer.Character
  1709. local FindHum = PlrChar:FindFirstChildOfClass("Humanoid")
  1710. if FindHum then
  1711. plrHealth = string.format("%.0f", FindHum.Health)
  1712. end
  1713. end
  1714. wait(0.5)
  1715. end
  1716. end)
  1717.  
  1718. -- Round value to x decimal places --
  1719.  
  1720. function round(num, numDecimalPlaces)
  1721. local mult = 10^(numDecimalPlaces or 0)
  1722. return math.floor(num * mult + 0.5) / mult
  1723. end
  1724.  
  1725. -- Check for Sprout --
  1726.  
  1727. spawn(function()
  1728. while true do
  1729. sproutdistance1 = nil
  1730. sproutdetected = false
  1731. SproutDetect.Visible = false
  1732. repeat
  1733. for i,v in pairs(workspace.Particles:GetChildren()) do
  1734. for x in string.gmatch(v.Name, "Sprout") do
  1735. if not pausehumcheck and v.Name == "Sprout" then
  1736. sproutdetected = true
  1737. local player = game:GetService'Players'.LocalPlayer
  1738. local character = player.Character or player.CharacterAdded:wait()
  1739. local head = character:WaitForChild'Head'
  1740. local hum = player.Character.HumanoidRootPart
  1741. sproutdistance = (v.Position-hum.Position).magnitude
  1742. sproutdistance1 = round(sproutdistance, 2)
  1743. --print("Sprout Detected. Distance: " ..tostring(sproutdistance))--
  1744. SproutDetect.Text = "Sprout Detected\nDistance: " ..tostring(sproutdistance1).. ""
  1745. SproutDetect.Visible = true
  1746. end
  1747. end
  1748. end
  1749. wait(0.3)
  1750. until v == nil
  1751. wait(0.1)
  1752. end
  1753. end)
  1754.  
  1755. -- check for fireflys --
  1756.  
  1757. spawn(function()
  1758. while true do
  1759. fireflydistance1 = nil
  1760. fireflydetected = false
  1761. FireflyDetect.Visible = false
  1762. repeat
  1763. for i,v in pairs(workspace.NPCBees:GetChildren()) do
  1764. for x in string.gmatch(v.Name, "Firefly") do
  1765. if not pausehumcheck and v.Name == "Firefly" then
  1766. fireflydetected = true
  1767. local player = game:GetService'Players'.LocalPlayer
  1768. local character = player.Character or player.CharacterAdded:wait()
  1769. local head = character:WaitForChild'Head'
  1770. local hum = player.Character.HumanoidRootPart
  1771. firelfydistance = (v.Position-hum.Position).magnitude
  1772. fireflydistance1 = round(firelfydistance, 2)
  1773. --print("Fireflys Detected. Distance: " ..tostring(firelfydistance))--
  1774. FireflyDetect.Text = "Firefly Detected\nDistance: " ..tostring(fireflydistance1).. ""
  1775. FireflyDetect.Visible = true
  1776. end
  1777. end
  1778. end
  1779. wait(0.4)
  1780. until v == nil
  1781. wait(0.1)
  1782. end
  1783. end)
  1784.  
  1785. -- check for vicious bee --
  1786.  
  1787. spawn(function()
  1788. while true do
  1789. viciousdistance1 = nil
  1790. viciousbeedetected = false
  1791. ViciousBeeDetect.Visible = false
  1792. repeat
  1793. for i,v in pairs(workspace.Particles:GetChildren()) do
  1794. for x in string.gmatch(v.Name, "Vicious") do
  1795. if not pausehumcheck and v.Name == "Vicious" then
  1796. viciousbeedetected = true
  1797. local player = game:GetService'Players'.LocalPlayer
  1798. local character = player.Character or player.CharacterAdded:wait()
  1799. local head = character:WaitForChild'Head'
  1800. local hum = player.Character.HumanoidRootPart
  1801. viciousdistance = (v.Position-hum.Position).magnitude
  1802. viciousdistance1 = round(viciousdistance, 2)
  1803. --print("Vicious Bee Detected. Distance: " ..tostring(viciousdistance))--
  1804. ViciousBeeDetect.Text = "Vicious Bee Detected\nDistance: " ..tostring(viciousdistance1).. ""
  1805. ViciousBeeDetect.Visible = true
  1806. end
  1807. end
  1808. end
  1809. if viciousbeedetected and viciousdistance < 80 then
  1810. viciousbeenear = true
  1811. if viciousbeenear and not beenearmsg and not godmodeactivated then
  1812. print("WARNING!! Vicious Bee Near")
  1813. beenearmsg=true
  1814. end
  1815. else
  1816. viciousbeenear = false
  1817. beenearmsg = false
  1818. end
  1819. wait(0.5)
  1820. until v == nil
  1821. wait(0.1)
  1822. end
  1823. end)
  1824.  
  1825. spawn(function()
  1826. while true do
  1827. if PollenFarmActive then
  1828. if AvoidViciousActive and viciousbeenear then
  1829. if not farmzoneswitched then
  1830. if not switchlocationmsg then
  1831. print("Vicious Bee Near. Switching to Safe Farming Zone")
  1832. notify'Switching to safe Farming Zone'
  1833. switchlocationmsg = true
  1834. end
  1835. switchingzone = true
  1836. PollenFarmActive = false
  1837. wait(1)
  1838. if Field5AFActive then
  1839. originalzone = "Clover"
  1840. Field5AFActive = false
  1841. Field3AFActive = true
  1842. elseif Field7AFActive then
  1843. originalzone = "Spider"
  1844. Field7AFActive = false
  1845. Field3AFActive = true
  1846. elseif Field9AFActive then
  1847. originalzone = "Rose"
  1848. Field9AFActive = false
  1849. Field3AFActive = true
  1850. elseif Field11AFActive then
  1851. originalzone = "Cactus"
  1852. Field11AFActive = false
  1853. Field3AFActive = true
  1854. else
  1855. originalzone = "MountainTop"
  1856. Field3AFActive = true
  1857. end
  1858. farmzoneswitched = true
  1859. switchingzone = false
  1860. PollenFarmActive = true
  1861. end
  1862. end
  1863. end
  1864. wait(0.5)
  1865. end
  1866. end)
  1867.  
  1868. spawn(function()
  1869. while true do
  1870. wait(0.5)
  1871. if farmzoneswitchback then
  1872. if switchlocationmsg then
  1873. print("Vicious Bee has gone. Switching back to original location")
  1874. notify'Switching back to original location'
  1875. switchlocationmsg = false
  1876. end
  1877. switchingzone = true
  1878. PollenFarmActive = false
  1879. wait(1)
  1880. if originalzone == "Clover" then
  1881. Field3AFActive = false
  1882. Field5AFActive = true
  1883. elseif originalzone == "Spider" then
  1884. Field3AFActive = false
  1885. Field7AFActive = true
  1886. elseif originalzone == "Rose" then
  1887. Field3AFActive = false
  1888. Field9AFActive = true
  1889. elseif originalzone == "Cactus" then
  1890. Field3AFActive = false
  1891. Field11AFActive = true
  1892. elseif originalzone == "MountainTop" then
  1893. Field3AFActive = false
  1894. end
  1895. farmzoneswitched = false
  1896. farmzoneswitchback = false
  1897. switchingzone = false
  1898. PollenFarmActive = true
  1899. end
  1900. end
  1901. end)
  1902.  
  1903. -- Pollen Farming --
  1904.  
  1905. spawn (function()
  1906. while true do
  1907. wait(0.5)
  1908. if resethive then
  1909. print("Waiting 35 seconds before AutoFarm resumes")
  1910. wait(35)
  1911. resethive = false
  1912. PollenFarmActive = true
  1913. end
  1914. if PollenFarmActive then
  1915. local player = game:GetService("Players").LocalPlayer
  1916. while player == nil do wait(0.5) end
  1917. local root = player.Character.HumanoidRootPart
  1918. if farmzoneswitched and not viciousbeedetected then PollenFarmActive = false farmzoneswitchback = true end
  1919. player = game:GetService("Players").LocalPlayer
  1920. local currp
  1921. player.Character.Humanoid.Died:connect(function()
  1922. resethive = true
  1923. PollenFarmActive = false
  1924. print("Player: " ..tostring(player.Name).. " has died")
  1925. end)
  1926. local pollenLbl = player.Character:FindFirstChild("ProgressLabel",true)
  1927. if not pollenLbl then
  1928. print("Backpack not found")
  1929. end
  1930. local maxpollen = tonumber(pollenLbl.Text:match("%d+$"))
  1931. local pollenTool = player.Character:FindFirstChildOfClass("Tool") or player.Backpack:FindFirstChildOfClass("Tool")
  1932. if pollenTool==nil or pollenTool:FindFirstChild("ClickEvent")==nil then
  1933. print("Tool not found")
  1934. end
  1935. --print("Backpack size: " .. maxpollen)
  1936. if PollenFarmActive then
  1937. if Field1AFActive == true then
  1938. fieldpos = {Vector3.new(-204,3.4,142),Vector3.new(-210,3.4,174),Vector3.new(-210,3.4,200)}
  1939. print("Farming Sunflower Field")
  1940. elseif Field2AFActive == true then
  1941. fieldpos = {Vector3.new(-98, 3.4, 129),Vector3.new(-80, 3.35, 129)}
  1942. print("Farming Mushroom Field")
  1943. elseif Field3AFActive == true then
  1944. fieldpos = {Vector3.new(-70.35,3.4,219),Vector3.new(-35,3.4,219),Vector3.new(0,3.4,219)}
  1945. print("Farming Dandelion Field")
  1946. elseif Field4AFActive == true then
  1947. fieldpos = {Vector3.new(100,3.4,96),Vector3.new(140,3.4,96),Vector3.new(185,3.4,96)}
  1948. print("Farming Blue Flower Field")
  1949. elseif Field5AFActive == true then
  1950. fieldpos = {Vector3.new(179,32.9,216),Vector3.new(160,32.9,189),Vector3.new(138,32.9,167)}
  1951. print("Farming Clover Field")
  1952. elseif Field6AFActive == true then
  1953. fieldpos = {Vector3.new(-193,19.4,11),Vector3.new(-181,19.4,-10),Vector3.new(-162,19.4,-29)}
  1954. print("Farming StrawBerry Field")
  1955. elseif Field7AFActive == true then
  1956. fieldpos = {Vector3.new(-73,19.4,2),Vector3.new(-44,19.4,-21),Vector3.new(-16,19.4,7)}
  1957. print("Farming Spider Field")
  1958. elseif Field8AFActive == true then
  1959. fieldpos = {Vector3.new(92.9,20,-25.6),Vector3.new(132.9,20,-25.6),Vector3.new(172.9,20,-25.6)}
  1960. print("Farming BamBoo Field")
  1961. elseif Field9AFActive == true then
  1962. fieldpos = {Vector3.new(-300,20,129),Vector3.new(-322.835,20,129),Vector3.new(-350,20,129)}
  1963. print("Farming Rose Field")
  1964. elseif Field10AFActive == true then
  1965. fieldpos = {Vector3.new(-310.1,65.5,-128.1),Vector3.new(-310.1,65.5,-168.1),Vector3.new(-310.1,65.5,-208.1)}
  1966. print("Farming Pine Tree Forest")
  1967. elseif Field11AFActive == true then
  1968. fieldpos = {Vector3.new(-159.5,68,-101.5),Vector3.new(-194.5,68,-112.5),Vector3.new(-229.5,68,-101.5)}
  1969. print("Farming Cactus Field")
  1970. elseif Field12AFActive == true then
  1971. fieldpos = {Vector3.new(-169,67,-183.8),Vector3.new(-186.5,67,-186.8),Vector3.new(-222,67,-183.8)}
  1972. print("Farming Pumpkin Patch")
  1973. elseif Field13AFActive == true then
  1974. fieldpos = {Vector3.new(285.3,70.2,-200),Vector3.new(260.3,70.2,-220),Vector3.new(225.3,70.2,-200)}
  1975. print("Farming Pineapple Patch")
  1976. elseif Field14AFActive == true then
  1977. fieldpos = {Vector3.new(93.2, 175.35, -188.49),Vector3.new(93.2, 175.35, -141.98),Vector3.new(59.12, 175.35, -141.98),Vector3.new(59.12, 175.35, -188.49)}
  1978. print("Farming Mountain Top Field")
  1979. elseif Field15AFActive == true then
  1980. fieldpos = {Vector3.new(414.2, 95.8, -189.3),Vector3.new(413.9, 95.8, -166),Vector3.new(438.1, 95.8, -165.3),Vector3.new(438.2, 95.8, -190)}
  1981. print("Farming Stump Field")
  1982. else
  1983. if maxpollen < 9999 then
  1984. fieldpos = {Vector3.new(-220,3.3,220),Vector3.new(-220,4,180),Vector3.new(-220,4,140),Vector3.new(-220,4,100),Vector3.new(-190,4,126),Vector3.new(-190, 4, 166),Vector3.new(-190, 4, 206)}
  1985. print("Farming Sunflower Field")
  1986. else
  1987. fieldpos = {Vector3.new(93.2, 175.35, -188.49),Vector3.new(93.2, 175.35, -141.98),Vector3.new(59.12, 175.35, -141.98),Vector3.new(59.12, 175.35, -188.49)}
  1988. print("Farming Mountain Top Field")
  1989.  
  1990. end
  1991. end
  1992. end
  1993. --collect pollen
  1994. --print("Farming pollen")
  1995. local posIndex = 0
  1996. pollenTool.Parent = player.Character
  1997. workspace.Collectibles.ChildAdded:Connect(function(part)
  1998. if PollenFarmActive then
  1999. local root = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2000. if tostring(part) == tostring(game.Players.LocalPlayer.Name) or tostring(part) == "C" then
  2001. -- print("token position: " ..tostring(part.Position)) --
  2002. -- print("player position: " ..tostring(root.Position)) --
  2003. -- print("Distance: " ..tostring((part.Position - root.Position).magnitude)) --
  2004. if currp and (part.Position-root.Position).magnitude <= 60 then
  2005. root.CFrame = CFrame.new(part.Position.x, root.Position.y, part.Position.z)
  2006. wait(0.07)
  2007. root.CFrame = CFrame.new(currp)
  2008. wait(0.05)
  2009. end
  2010. end
  2011. end
  2012. end)
  2013. wait(0.1)
  2014. while PollenFarmActive and tonumber(player.CoreStats.Pollen.Value) < tonumber(maxpollen) do
  2015. wait(0.05)
  2016. posIndex=posIndex+1
  2017. if posIndex>#fieldpos then posIndex=1 end
  2018. for rot=1,4 do
  2019. local angle = CFrame.Angles(0,math.pi*.5*rot,0)
  2020. currp = fieldpos[posIndex]+angle.lookVector*10
  2021. local newrootpos = CFrame.new(currp)*angle
  2022. root.CFrame = newrootpos
  2023. for i=1,25 do
  2024. if farmzoneswitched and not viciousbeedetected then PollenFarmActive = false farmzoneswitchback = true end
  2025. if not PollenFarmActive then break end
  2026. wait(0.2)
  2027. pollenTool.ClickEvent:FireServer(currp)
  2028. end
  2029. player = game:GetService("Players").LocalPlayer
  2030. if tonumber(player.CoreStats.Pollen.Value+1) > tonumber(maxpollen) then
  2031. print("Total Honey: " ..tostring(player.CoreStats.Honey.Value).. ". Bag Full: " ..tostring(player.CoreStats.Pollen.Value))
  2032. break
  2033. end
  2034. end
  2035. end
  2036. -- turn pollen to honey --
  2037. currp = nil
  2038. --print("Teleporting back to Hive to make Honey")
  2039. wait(0.1)
  2040. game:GetService("Players").LocalPlayer.Character:MoveTo(game:GetService("Players").LocalPlayer.SpawnPos.Value.p)
  2041. if not switchingzone then
  2042. wait(1)
  2043. game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  2044. if PollenFarmActive then
  2045. repeat wait(0.5) until game:GetService("Players").LocalPlayer.CoreStats.Pollen.Value < 1
  2046. wait(8)
  2047. end
  2048. end
  2049. end
  2050. end
  2051. end)
  2052.  
  2053. -- Trigger Wealth Clock every 30 minutes --
  2054.  
  2055. WealthClockToggle.MouseButton1Click:connect(function()
  2056. if WealthClockActive ~= true then
  2057. WealthClockActive = true
  2058. notify'Wealth Clock Started'
  2059. print("Wealth Clock Started. The Wealth Clock will be triggered every 30 minutes.")
  2060. WealthClockToggle.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2061. WealthClockToggle.Text = "Wealth Clock: ON"
  2062. else
  2063. WealthClockActive = false
  2064. notify'Wealth Clock Stopped'
  2065. WealthClockToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2066. WealthClockToggle.Text = "Wealth Clock: OFF"
  2067. end
  2068. end)
  2069.  
  2070. spawn(function()
  2071. while true do
  2072. if WealthClockActive then
  2073. while WealthClockActive do
  2074. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Wealth Clock")
  2075. print("Wealth Clock activated")
  2076. wcwaittime = 1830
  2077. repeat
  2078. WealthClockToggle.Text = "Wealth Clock: " ..tostring(wcwaittime).. "sec"
  2079. wait(1)
  2080. wcwaittime = wcwaittime - 1
  2081. until wcwaittime == 0 or not WealthClockActive
  2082. end
  2083. end
  2084. wait(1)
  2085. end
  2086. end)
  2087.  
  2088. -- Trigger Field Boosts every 2 hours --
  2089.  
  2090. FieldBoostToggle.MouseButton1Click:connect(function()
  2091. if FieldBoostActive ~= true then
  2092. FieldBoostActive = true
  2093. notify'Auto Field Boost Started'
  2094. print("Auto Field Boost Started. Field Boosts will be triggered every 2 hours.")
  2095. FieldBoostToggle.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2096. FieldBoostToggle.Text = "Auto Field Boost: ON"
  2097. else
  2098. FieldBoostActive = false
  2099. notify'Auto Field Boost Stopped'
  2100. FieldBoostToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2101. FieldBoostToggle.Text = "Auto Field Boost: OFF"
  2102. end
  2103. end)
  2104.  
  2105. spawn(function()
  2106. while true do
  2107. if FieldBoostActive then
  2108. while FieldBoostActive do
  2109. print("Field Boosts activated")
  2110. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Red Field Booster")
  2111. wait(0.5)
  2112. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Blue Field Booster")
  2113. wait(0.5)
  2114. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Field Booster")
  2115. fbwaittime = 7259
  2116. repeat
  2117. FieldBoostToggle.Text = "Field Boosts: " ..tostring(fbwaittime).. "sec"
  2118. wait(1)
  2119. fbwaittime = fbwaittime - 1
  2120. until fbwaittime == 0 or not FieldBoostActive
  2121. end
  2122. end
  2123. wait(1)
  2124. end
  2125. end)
  2126.  
  2127. -- Trigger Treats every 4 hours --
  2128.  
  2129. TreatToggle.MouseButton1Click:connect(function()
  2130. if TreatActive ~= true then
  2131. TreatActive = true
  2132. notify'Auto Treats Started'
  2133. print("Treats will be given every 1 hour (4 hours for Blueberry and Strawberry).")
  2134. TreatToggle.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2135. TreatToggle.Text = "Auto Treats: ON"
  2136. else
  2137. TreatActive = false
  2138. notify'Auto Treats Stopped'
  2139. TreatToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2140. TreatToggle.Text = "Auto Treats: OFF"
  2141. end
  2142. end)
  2143.  
  2144. spawn(function()
  2145. while true do
  2146. if TreatActive then
  2147. while TreatActive do
  2148. print("Strawberry and Blueberry Treats given")
  2149. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Blueberry Dispenser")
  2150. wait(0.5)
  2151. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Strawberry Dispenser")
  2152. ttwaittime = 14600
  2153. repeat
  2154. TreatToggle.Text = "Auto Treats: " ..tostring(ttwaittime).. "sec"
  2155. wait(1)
  2156. ttwaittime = ttwaittime - 1
  2157. until ttwaittime == 0 or not TreatActive
  2158. end
  2159. end
  2160. wait(1)
  2161. end
  2162. end)
  2163.  
  2164. spawn(function()
  2165. while true do
  2166. if TreatActive then
  2167. while TreatActive do
  2168. print("Treats given")
  2169. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Treat Dispenser")
  2170. tdwaittime = 3660
  2171. repeat
  2172. wait(1)
  2173. tdwaittime = tdwaittime - 1
  2174. until tdwaittime == 0 or not TreatActive
  2175. end
  2176. end
  2177. wait(1)
  2178. end
  2179. end)
  2180.  
  2181. -- Trigger Free Ant Pass Dispenser Boosts every 2 hours --
  2182.  
  2183. FreeAntPassDispenserToggle.MouseButton1Click:connect(function()
  2184. if FreeAntPassDispenserActive ~= true then
  2185. FreeAntPassDispenserActive = true
  2186. notify'Auto FreeAntPassDispenser Started'
  2187. print("Auto FreeAntPassDispenser Started. FreeAntPassDispenser will be triggered every 2 hours.")
  2188. FreeAntPassDispenserToggle.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2189. FreeAntPassDispenserToggle.Text = "Auto FreeAntPassDispenser: ON"
  2190. else
  2191. FreeAntPassDispenserBoostActive = false
  2192. notify'Auto FreeAntPassDispensert Stopped'
  2193. FreeAntPassDispenserToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2194. FreeAntPassDispenserToggle.Text = "Auto FreeAntPassDispenser: OFF"
  2195. end
  2196. end)
  2197.  
  2198. spawn(function()
  2199. while true do
  2200. if FreeAntPassDispenserActive then
  2201. while FreeAntPassDispenserActive do
  2202. print("FreeAntPassDispenser activated")
  2203. game:GetService("ReplicatedStorage").Events.ToyEvent:FireServer("Free Ant Pass Dispenser")
  2204. fapdwaittime = 7259
  2205. repeat
  2206. FreeAntPassDispenserToggle.Text = "FreeAntPassDispenser: " ..tostring(fapdwaittime).. "sec"
  2207. wait(1)
  2208. fapdwaittime = fapdwaittime - 1
  2209. until fapdwaittime == 0 or not FreeAntPassDispenserActive
  2210. end
  2211. end
  2212. wait(1)
  2213. end
  2214. end)
  2215.  
  2216. --- WayPoints ---
  2217.  
  2218. local WayPoints = {
  2219. ["Black Bear"] = CFrame.new(-258.1, 5, 299.7),
  2220. ["Brown Bear"] = CFrame.new(282, 46, 236),
  2221. ["Panda Bear"] = CFrame.new(106.3, 35, 50.1),
  2222. ["Polar Bear"] = CFrame.new(-106, 119, -77),
  2223. ["Science Bear"] = CFrame.new(267, 103, 20),
  2224. ["Traveling Bear"] = CFrame.new(23.9, 14, 359.9),
  2225. ["Mother Bear"] = CFrame.new(-183.8, 4.6, 87.5),
  2226. ["Tunnel Bear"] = CFrame.new(507.3, 5.7, -45.7),
  2227. ["Sun Bear"] = CFrame.new(23.25, 14, 360.26),
  2228. ["Redfield Boost"] = CFrame.new(-332, 20, 244),
  2229. ["Bluefield Boost"] = CFrame.new(275.5, 58.4, 83.3),
  2230. ["MountainTop Boost"] = CFrame.new(-40, 176, -191.7),
  2231. ["Red Cannon (22)"] = CFrame.new(-240, 17, 345),
  2232. ["Blue Cannon (16)"] = CFrame.new(-287, 73, 22),
  2233. ["Yellow Cannon (12)"] = CFrame.new(266, 109, -25),
  2234. ["HoneyBee"] = CFrame.new(36.8, 4.1, 88.7),
  2235. ["Blender"] = CFrame.new(-426.4, 69.2, 37.8),
  2236. ["Gifted Bucko Bee"] = CFrame.new(304.8, 61.6, 104.4),
  2237. ["Gifted Riley Bee"] = CFrame.new(-360.4, 73.4, 214.2),
  2238. ["Stick Bug"] = CFrame.new(-125.3, 49.7, 147.1),
  2239. ["Bee Shop"] = CFrame.new(-136.8, 4.6, 243.4),
  2240. ["Tool Shop"] = CFrame.new(86, 4.6, 294),
  2241. ["Tool Shop 2"] = CFrame.new(165, 69, -161),
  2242. ["MountainTop Shop"] = CFrame.new(-18, 176, -137),
  2243. ["Ticket Tent"] = CFrame.new(-234, 17, 398),
  2244. ["Red Clubhouse"] = CFrame.new(-334, 21, 216),
  2245. ["Blue Clubhouse"] = CFrame.new(292, 4, 98),
  2246. ["Ticket Shop"] = CFrame.new(-12.8, 184, -222.2),
  2247. ["Club Honey"] = CFrame.new(44.8, 5, 319.6),
  2248. ["RoyalJelly Shop"] = CFrame.new(-297, 53, 68),
  2249. ["Ticket RoyalJelly Shop"] = CFrame.new(81, 18, 240),
  2250. ["Honeystorm Dispensor"] = CFrame.new(238.4, 33.3, 165.6),
  2251. ["Blueberry Dispenser"] = CFrame.new(313.3, 58, 86.9),
  2252. ["Strawberry Dispenser"] = CFrame.new(-320.5, 46, 272.5),
  2253. ["Sprout Dispenser"] = CFrame.new(-269.26, 26.56, 267.31),
  2254. ["Instant Honey Convertor"] = CFrame.new(282, 68, -62),
  2255. ["King Beetles Lair"] = CFrame.new(218, 3, 140),
  2256. ["Clover Field"] = CFrame.new(174, 34, 189),
  2257. ["Mushroom Field"] = CFrame.new(-258.1, 5, 299.7),
  2258. ["Spider Field"] = CFrame.new(-57.2, 20, -5.3),
  2259. ["Blue Field"] = CFrame.new(113.7, 4, 101.5),
  2260. ["Sunflower Field"] = CFrame.new(-208, 4, 185),
  2261. ["StrawBerry Field"] = CFrame.new(-169.3, 20, -3.2),
  2262. ["Red Field"] = CFrame.new(-258.1, 5, 299.7),
  2263. ["Dandelion Field"] = CFrame.new(-30, 4, 225),
  2264. ["BamBoo Field"] = CFrame.new(93, 20, -25),
  2265. ["Rose Field"] = CFrame.new(-322, 20, 124),
  2266. ["Mushroom Field"] = CFrame.new(-94, 5, 116),
  2267. ["Cactus Field"] = CFrame.new(-194, 68, -107),
  2268. ["Pumpkin Field"] = CFrame.new(-194, 68, -182),
  2269. ["MountainTop Field"] = CFrame.new(76, 176, -181),
  2270. ["Stump Field"] = CFrame.new(426.4, 95.8, -177.8),
  2271. ["PineTree Field"] = CFrame.new(-318, 68, -150),
  2272. ["Pineapple Field"] = CFrame.new(262, 68, -201),
  2273. ["Onett"] = CFrame.new(-8.4, 234, -517.9),
  2274. ["Gumdrop Dispenser"] = CFrame.new(63, 20.7, 38.7),
  2275. ["Treat Dispenser"] = CFrame.new(193.9, 68, -123),
  2276. ["Treat Shop"] = CFrame.new(-228.2, 5, 89.4),
  2277. ["Star Hut"] = CFrame.new(110.4, 65.5, 334.6),
  2278. ["Wealth Clock"] = CFrame.new(310.5, 47.6, 190),
  2279. ["Glue Dispenser"] = CFrame.new(271.9, 25257.2, -724.3),
  2280. ["Ant Challenge"] = CFrame.new(113.8, 32.6, 442.7)
  2281. }
  2282.  
  2283. ReturnToHive.MouseButton1Down:connect(function()
  2284. local player = game:GetService("Players").LocalPlayer
  2285. player.Character:MoveTo(player.SpawnPos.Value.p)
  2286. WayPointsFrame.Visible = false
  2287. notify'Teleported to Hive'
  2288. end)
  2289.  
  2290. BlackBear.MouseButton1Down:connect(function()
  2291. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2292. uTorso.CFrame = WayPoints["Black Bear"]
  2293. WayPointsFrame.Visible = false
  2294. notify'Teleported to Black Bear'
  2295. end)
  2296.  
  2297. BrownBear.MouseButton1Down:connect(function()
  2298. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2299. uTorso.CFrame = WayPoints["Brown Bear"]
  2300. WayPointsFrame.Visible = false
  2301. notify'Teleported to Brown Bear'
  2302. end)
  2303.  
  2304. PandaBear.MouseButton1Down:connect(function()
  2305. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2306. uTorso.CFrame = WayPoints["Panda Bear"]
  2307. WayPointsFrame.Visible = false
  2308. notify'Teleported to Panda Bear'
  2309. end)
  2310.  
  2311. PolarBear.MouseButton1Down:connect(function()
  2312. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2313. uTorso.CFrame = WayPoints["Polar Bear"]
  2314. WayPointsFrame.Visible = false
  2315. notify'Teleported to Polar Bear'
  2316. end)
  2317.  
  2318. ScienceBear.MouseButton1Down:connect(function()
  2319. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2320. uTorso.CFrame = WayPoints["Science Bear"]
  2321. WayPointsFrame.Visible = false
  2322. notify'Teleported to Science Bear'
  2323. end)
  2324.  
  2325. TravelingBear.MouseButton1Down:connect(function()
  2326. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2327. uTorso.CFrame = WayPoints["Traveling Bear"]
  2328. WayPointsFrame.Visible = false
  2329. notify'Teleported to Traveling Bear'
  2330. end)
  2331.  
  2332. MotherBear.MouseButton1Down:connect(function()
  2333. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2334. uTorso.CFrame = WayPoints["Mother Bear"]
  2335. WayPointsFrame.Visible = false
  2336. notify'Teleported to Mother Bear'
  2337. end)
  2338.  
  2339. TunnelBear.MouseButton1Down:connect(function()
  2340. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2341. uTorso.CFrame = WayPoints["Tunnel Bear"]
  2342. WayPointsFrame.Visible = false
  2343. notify'Teleported to Tunnel Bear'
  2344. end)
  2345.  
  2346. SunBear.MouseButton1Down:connect(function()
  2347. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2348. uTorso.CFrame = WayPoints["Sun Bear"]
  2349. WayPointsFrame.Visible = false
  2350. notify'Teleported to Sun Bear'
  2351. end)
  2352.  
  2353. GiftedBuckoBee.MouseButton1Down:connect(function()
  2354. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2355. uTorso.CFrame = WayPoints["Gifted Bucko Bee"]
  2356. WayPointsFrame.Visible = false
  2357. notify'Teleported to Gifted Bucko Bee'
  2358. end)
  2359.  
  2360. GiftedRileyBee.MouseButton1Down:connect(function()
  2361. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2362. uTorso.CFrame = WayPoints["Gifted Riley Bee"]
  2363. WayPointsFrame.Visible = false
  2364. notify'Teleported to Gifted Riley Bee'
  2365. end)
  2366.  
  2367. StickBug.MouseButton1Down:connect(function()
  2368. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2369. uTorso.CFrame = WayPoints["Stick Bug"]
  2370. WayPointsFrame.Visible = false
  2371. notify'Teleported to Stick Bug'
  2372. end)
  2373.  
  2374. RedBoost.MouseButton1Down:connect(function()
  2375. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2376. uTorso.CFrame = WayPoints["Redfield Boost"]
  2377. WayPointsFrame.Visible = false
  2378. notify'Teleported to RedField Booster'
  2379. end)
  2380.  
  2381. BlueBoost.MouseButton1Down:connect(function()
  2382. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2383. uTorso.CFrame = WayPoints["Bluefield Boost"]
  2384. WayPointsFrame.Visible = false
  2385. notify'Teleported to BlueField Booster'
  2386. end)
  2387.  
  2388. MountainBoost.MouseButton1Down:connect(function()
  2389. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2390. uTorso.CFrame = WayPoints["MountainTop Boost"]
  2391. WayPointsFrame.Visible = false
  2392. notify'Teleported to MountainTop Boost'
  2393. end)
  2394.  
  2395. RedCannon.MouseButton1Down:connect(function()
  2396. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2397. uTorso.CFrame = WayPoints["Red Cannon (22)"]
  2398. WayPointsFrame.Visible = false
  2399. notify'Teleported to Red Cannon (22)'
  2400. end)
  2401.  
  2402. BlueCannon.MouseButton1Down:connect(function()
  2403. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2404. uTorso.CFrame = WayPoints["Blue Cannon (16)"]
  2405. WayPointsFrame.Visible = false
  2406. notify'Teleported to Blue Cannon (16)'
  2407. end)
  2408.  
  2409. YellowCannon.MouseButton1Down:connect(function()
  2410. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2411. uTorso.CFrame = WayPoints["Yellow Cannon (12)"]
  2412. WayPointsFrame.Visible = false
  2413. notify'Teleported to Yellow Cannon (12)'
  2414. end)
  2415.  
  2416. HoneyBee.MouseButton1Down:connect(function()
  2417. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2418. uTorso.CFrame = WayPoints["HoneyBee"]
  2419. WayPointsFrame.Visible = false
  2420. notify'Teleported to HoneyBee'
  2421. end)
  2422.  
  2423. Blender.MouseButton1Down:connect(function()
  2424. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2425. uTorso.CFrame = WayPoints["Blender"]
  2426. WayPointsFrame.Visible = false
  2427. notify'Teleported to Blender'
  2428. end)
  2429.  
  2430. BeeShop.MouseButton1Down:connect(function()
  2431. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2432. uTorso.CFrame = WayPoints["Bee Shop"]
  2433. WayPointsFrame.Visible = false
  2434. notify'Teleported to Bee Shop'
  2435. end)
  2436.  
  2437. TPShop.MouseButton1Down:connect(function()
  2438. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2439. uTorso.CFrame = WayPoints["Tool Shop"]
  2440. WayPointsFrame.Visible = false
  2441. notify'Teleported to Basic Tool Shop'
  2442. end)
  2443.  
  2444. TPShop2.MouseButton1Down:connect(function()
  2445. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2446. uTorso.CFrame = WayPoints["Tool Shop 2"]
  2447. WayPointsFrame.Visible = false
  2448. notify'Teleported to Advanced Tool Shop'
  2449. end)
  2450.  
  2451. MountainTopShop.MouseButton1Down:connect(function()
  2452. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2453. uTorso.CFrame = WayPoints["MountainTop Shop"]
  2454. WayPointsFrame.Visible = false
  2455. notify'Teleported to MountainTop Shop'
  2456. end)
  2457.  
  2458. TentShop.MouseButton1Down:connect(function()
  2459. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2460. uTorso.CFrame = WayPoints["Ticket Tent"]
  2461. WayPointsFrame.Visible = false
  2462. notify'Teleported to Ticket Tent Shop'
  2463. end)
  2464.  
  2465. RedClubhouse.MouseButton1Down:connect(function()
  2466. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2467. uTorso.CFrame = WayPoints["Red Clubhouse"]
  2468. WayPointsFrame.Visible = false
  2469. notify'Teleported to Red ClubHouse'
  2470. end)
  2471.  
  2472. BlueClubhouse.MouseButton1Down:connect(function()
  2473. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2474. uTorso.CFrame = WayPoints["Blue Clubhouse"]
  2475. WayPointsFrame.Visible = false
  2476. notify'Teleported to Blue ClubHouse'
  2477. end)
  2478.  
  2479. TicketShop.MouseButton1Down:connect(function()
  2480. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2481. uTorso.CFrame = WayPoints["Ticket Shop"]
  2482. WayPointsFrame.Visible = false
  2483. notify'Teleported to Ticket Dispenser'
  2484. end)
  2485.  
  2486. ClubHoney.MouseButton1Down:connect(function()
  2487. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2488. uTorso.CFrame = WayPoints["Club Honey"]
  2489. WayPointsFrame.Visible = false
  2490. notify'Teleported to Club Honey Dispenser'
  2491. end)
  2492.  
  2493. RoyalJellyShop.MouseButton1Down:connect(function()
  2494. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2495. uTorso.CFrame = WayPoints["RoyalJelly Shop"]
  2496. WayPointsFrame.Visible = false
  2497. notify'Teleported to RoyalJelly Shop'
  2498. end)
  2499.  
  2500. TicketRoyalJelly.MouseButton1Down:connect(function()
  2501. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2502. uTorso.CFrame = WayPoints["Ticket RoyalJelly Shop"]
  2503. WayPointsFrame.Visible = false
  2504. notify'Teleported to Ticket Royal Jelly Shop'
  2505. end)
  2506.  
  2507. Honeystorm.MouseButton1Down:connect(function()
  2508. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2509. uTorso.CFrame = WayPoints["Honeystorm Dispensor"]
  2510. WayPointsFrame.Visible = false
  2511. notify'Teleported to Honeystorm'
  2512. end)
  2513.  
  2514. HoneyConvertor.MouseButton1Down:connect(function()
  2515. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2516. uTorso.CFrame = WayPoints["Instant Honey Convertor"]
  2517. WayPointsFrame.Visible = false
  2518. notify'Teleported to Instant Honey Convertor'
  2519. end)
  2520.  
  2521. TreatDispenser.MouseButton1Down:connect(function()
  2522. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2523. uTorso.CFrame = WayPoints["Treat Dispenser"]
  2524. WayPointsFrame.Visible = false
  2525. notify'Teleported to Treat Dispenser'
  2526. end)
  2527.  
  2528. SproutDispenser.MouseButton1Down:connect(function()
  2529. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2530. uTorso.CFrame = WayPoints["Sprout Dispenser"]
  2531. WayPointsFrame.Visible = false
  2532. notify'Teleported to Sprout Dispenser'
  2533. end)
  2534.  
  2535. KingbeetlesLair.MouseButton1Down:connect(function()
  2536. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2537. uTorso.CFrame = WayPoints["King Beetles Lair"]
  2538. WayPointsFrame.Visible = false
  2539. notify'Teleported to King Beetles Lair'
  2540. end)
  2541.  
  2542.  
  2543. MushRoomField.MouseButton1Down:connect(function()
  2544. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2545. uTorso.CFrame = WayPoints["Mushroom Field"]
  2546. WayPointsFrame.Visible = false
  2547. notify'Teleported to Mushroom Field'
  2548. end)
  2549.  
  2550. StrawBerryField.MouseButton1Down:connect(function()
  2551. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2552. uTorso.CFrame = WayPoints["StrawBerry Field"]
  2553. WayPointsFrame.Visible = false
  2554. notify'Teleported to StrawBerry Field'
  2555. end)
  2556.  
  2557. CloverField.MouseButton1Down:connect(function()
  2558. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2559. uTorso.CFrame = WayPoints["Clover Field"]
  2560. WayPointsFrame.Visible = false
  2561. notify'Teleported to Clover Field'
  2562. end)
  2563.  
  2564. SpiderField.MouseButton1Down:connect(function()
  2565. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2566. uTorso.CFrame = WayPoints["Spider Field"]
  2567. WayPointsFrame.Visible = false
  2568. notify'Teleported to Spider Field'
  2569. end)
  2570.  
  2571. BlueField.MouseButton1Down:connect(function()
  2572. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2573. uTorso.CFrame = WayPoints["Blue Field"]
  2574. WayPointsFrame.Visible = false
  2575. notify'Teleported to Blue Field'
  2576. end)
  2577.  
  2578. SunflowerField.MouseButton1Down:connect(function()
  2579. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2580. uTorso.CFrame = WayPoints["Sunflower Field"]
  2581. WayPointsFrame.Visible = false
  2582. notify'Teleported to Sunflower Field'
  2583. end)
  2584.  
  2585. DandelionField.MouseButton1Down:connect(function()
  2586. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2587. uTorso.CFrame = WayPoints["Dandelion Field"]
  2588. WayPointsFrame.Visible = false
  2589. notify'Teleported to Dandelion Field'
  2590. end)
  2591.  
  2592. BamBooField.MouseButton1Down:connect(function()
  2593. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2594. uTorso.CFrame = WayPoints["BamBoo Field"]
  2595. WayPointsFrame.Visible = false
  2596. notify'Teleported to BamBoo Field'
  2597. end)
  2598.  
  2599. RoseField.MouseButton1Down:connect(function()
  2600. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2601. uTorso.CFrame = WayPoints["Rose Field"]
  2602. WayPointsFrame.Visible = false
  2603. notify'Teleported to Rose Field'
  2604. end)
  2605.  
  2606. CactusField.MouseButton1Down:connect(function()
  2607. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2608. uTorso.CFrame = WayPoints["Cactus Field"]
  2609. WayPointsFrame.Visible = false
  2610. notify'Teleported to Cactus Field'
  2611. end)
  2612.  
  2613. PumpkinField.MouseButton1Down:connect(function()
  2614. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2615. uTorso.CFrame = WayPoints["Pumpkin Field"]
  2616. WayPointsFrame.Visible = false
  2617. notify'Teleported to Pumpkin Field'
  2618. end)
  2619.  
  2620. PineTreeField.MouseButton1Down:connect(function()
  2621. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2622. uTorso.CFrame = WayPoints["PineTree Field"]
  2623. WayPointsFrame.Visible = false
  2624. notify'Teleported to PineTree Field'
  2625. end)
  2626.  
  2627. MountainTopField.MouseButton1Down:connect(function()
  2628. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2629. uTorso.CFrame = WayPoints["MountainTop Field"]
  2630. WayPointsFrame.Visible = false
  2631. notify'Teleported to Mountain Top Field'
  2632. end)
  2633.  
  2634. StumpField.MouseButton1Down:connect(function()
  2635. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2636. uTorso.CFrame = WayPoints["Stump Field"]
  2637. WayPointsFrame.Visible = false
  2638. notify'Teleported to Stump Field'
  2639. end)
  2640.  
  2641. PineappleField.MouseButton1Down:connect(function()
  2642. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2643. uTorso.CFrame = WayPoints["Pineapple Field"]
  2644. WayPointsFrame.Visible = false
  2645. notify'Teleported to Pineapple Field'
  2646. end)
  2647.  
  2648. GumdropDispenser.MouseButton1Down:connect(function()
  2649. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2650. uTorso.CFrame = WayPoints["Gumdrop Dispenser"]
  2651. WayPointsFrame.Visible = false
  2652. notify'Teleported to Gumdrop Dispenser'
  2653. end)
  2654.  
  2655. TreatShop.MouseButton1Down:connect(function()
  2656. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2657. uTorso.CFrame = WayPoints["Treat Shop"]
  2658. WayPointsFrame.Visible = false
  2659. notify'Teleported to Treat Shop'
  2660. end)
  2661.  
  2662. WealthClock.MouseButton1Down:connect(function()
  2663. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2664. uTorso.CFrame = WayPoints["Wealth Clock"]
  2665. WayPointsFrame.Visible = false
  2666. notify'Teleported to Wealth Clock'
  2667. end)
  2668.  
  2669. StarHut.MouseButton1Down:connect(function()
  2670. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2671. uTorso.CFrame = WayPoints["Star Hut"]
  2672. WayPointsFrame.Visible = false
  2673. notify'Teleported to Star Hut'
  2674. end)
  2675.  
  2676. Onett.MouseButton1Down:connect(function()
  2677. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2678. uTorso.CFrame = WayPoints["Onett"]
  2679. WayPointsFrame.Visible = false
  2680. notify'Teleported to Onett'
  2681. end)
  2682.  
  2683. AntChallenge.MouseButton1Down:connect(function()
  2684. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2685. uTorso.CFrame = WayPoints["Ant Challenge"]
  2686. WayPointsFrame.Visible = false
  2687. notify'Teleported to Ant Challenge'
  2688. end)
  2689.  
  2690. BlueberryDispenser.MouseButton1Down:connect(function()
  2691. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2692. uTorso.CFrame = WayPoints["Blueberry Dispenser"]
  2693. WayPointsFrame.Visible = false
  2694. notify'Teleported to Blueberry Dispenser'
  2695. end)
  2696.  
  2697. StrawberryDispenser.MouseButton1Down:connect(function()
  2698. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2699. uTorso.CFrame = WayPoints["Strawberry Dispenser"]
  2700. WayPointsFrame.Visible = false
  2701. notify'Teleported to Strawberry Dispenser'
  2702. end)
  2703.  
  2704. GlueDispenser.MouseButton1Down:connect(function()
  2705. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2706. uTorso.CFrame = WayPoints["Glue Dispenser"]
  2707. WayPointsFrame.Visible = false
  2708. notify'Teleported to Glue Dispenser'
  2709. end)
  2710.  
  2711. -- Show Location --
  2712.  
  2713. spawn (function()
  2714. while true do
  2715. if not pausehumcheck then
  2716. local player = game:GetService'Players'.LocalPlayer
  2717. local character = player.Character or player.CharacterAdded:wait()
  2718. local head = character:WaitForChild'Head'
  2719. local hum = player.Character.HumanoidRootPart
  2720. LocationX = round(hum.Position.x, 1)
  2721. LocationY = round(hum.Position.y, 1)
  2722. LocationZ = round(hum.Position.z, 1)
  2723. ShowLocation.Text = "Coords: "..LocationX..", "..LocationY..", "..LocationZ
  2724. end
  2725. wait(0.5)
  2726. end
  2727. end)
  2728.  
  2729. SetLocation.MouseButton1Down:connect(function()
  2730. setlocationx = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  2731. setlocationy = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  2732. setlocationz = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  2733. print("Set Custom Location: "..setlocationx..", "..setlocationy..", "..setlocationz)
  2734. SetLocation.Text = "Set: " ..setlocationx..","..setlocationy..","..setlocationz
  2735. CustomLocationSet = true
  2736. end)
  2737.  
  2738. --- TP to custom location ---
  2739.  
  2740. TPLocation.MouseButton1Down:connect(function()
  2741. if CustomLocationSet and not pausehumcheck then
  2742. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2743. uTorso.CFrame = CFrame.new(setlocationx, setlocationy, setlocationz)
  2744. end
  2745. end)
  2746.  
  2747. --- Player Teleport ---
  2748.  
  2749. local buttons = {
  2750. Player1,
  2751. Player2,
  2752. Player3,
  2753. Player4,
  2754. Player5
  2755. }
  2756. spawn (function()
  2757. while true do
  2758. Player1.Text = ""
  2759. Player2.Text = ""
  2760. Player3.Text = ""
  2761. Player4.Text = ""
  2762. Player5.Text = ""
  2763. for i, v in pairs(game.Players:GetChildren()) do
  2764. buttons[i].Text = v.Name
  2765. buttons[i].Visible = true
  2766. end
  2767. wait(0.5)
  2768. end
  2769. end)
  2770.  
  2771. Player1.MouseButton1Down:connect(function()
  2772. PlyrSel.Text = Player1.Text
  2773. end)
  2774. Player2.MouseButton1Down:connect(function()
  2775. PlyrSel.Text = Player2.Text
  2776. end)
  2777. Player3.MouseButton1Down:connect(function()
  2778. PlyrSel.Text = Player3.Text
  2779. end)
  2780. Player4.MouseButton1Down:connect(function()
  2781. PlyrSel.Text = Player4.Text
  2782. end)
  2783. Player5.MouseButton1Down:connect(function()
  2784. PlyrSel.Text = Player5.Text
  2785. end)
  2786.  
  2787. TpPlayer.MouseButton1Down:connect(function()
  2788. if PlyrSel.Text == "SELECT A PLAYER" then
  2789. warn("No Player Selected")
  2790. else
  2791. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  2792. end
  2793. end)
  2794.  
  2795. -- Find Hidden Treasures --
  2796.  
  2797. FindTreasures.MouseButton1Down:connect(function()
  2798. local player = game:GetService("Players").LocalPlayer
  2799. local function collecttreasure(treasure)
  2800. for i,v in ipairs(treasure:GetChildren()) do
  2801. if v.Parent then
  2802. player.Character:MoveTo(v.Position)
  2803. end
  2804. wait(1)
  2805. end
  2806. end
  2807. collecttreasure(workspace.TreasureCollectibles)
  2808. wait(1)
  2809. player.Character:MoveTo(player.SpawnPos.Value.p)
  2810. end)
  2811.  
  2812. --- NoClip ---
  2813.  
  2814. noclip = false
  2815. NoClip.MouseButton1Down:connect(function()
  2816. noclip = not noclip
  2817. if noclip then
  2818. NoClip.Text = "NoClip Mode: ON"
  2819. NoClip.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2820. else
  2821. NoClip.Text = "NoClip Mode: OFF"
  2822. NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2823. end
  2824. end)
  2825. game:GetService('RunService').Stepped:connect(function()
  2826. if noclip then
  2827. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2828. end
  2829. end)
  2830.  
  2831. --- TP Tool ---
  2832.  
  2833. TPTool.MouseButton1Down:connect(function()
  2834. local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  2835. Tele.RequiresHandle = false
  2836. Tele.RobloxLocked = true
  2837. Tele.Name = "TPTool"
  2838. Tele.ToolTip = "Teleport Tool"
  2839. Tele.Equipped:connect(function(Mouse)
  2840. Mouse.Button1Down:connect(function()
  2841. if Mouse.Target then
  2842. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  2843. end
  2844. end)
  2845. end)
  2846. notify'TP Tool added to your Backpack'
  2847.  
  2848. end)
  2849.  
  2850.  
  2851. --- Pollen Farm ---
  2852.  
  2853. StartFarm.MouseButton1Click:connect(function()
  2854. if PollenFarmActive ~= true then
  2855. PollenFarmActive = true
  2856. Field1AFActive = false
  2857. Field2AFActive = false
  2858. Field3AFActive = false
  2859. Field4AFActive = false
  2860. Field5AFActive = false
  2861. Field6AFActive = false
  2862. Field7AFActive = false
  2863. Field8AFActive = false
  2864. Field9AFActive = false
  2865. Field10AFActive = false
  2866. Field11AFActive = false
  2867. Field12AFActive = false
  2868. Field13AFActive = false
  2869. Field14AFActive = false
  2870. Field15AFActive = false
  2871. resethive = false
  2872. switchlocationmsg = false
  2873. StartFarm.Text = "Pollen Farm: ON"
  2874. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2875. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2876. notify'Pollen Farming Started'
  2877. else
  2878. PollenFarmActive = false
  2879. Field1AFActive = false
  2880. Field2AFActive = false
  2881. Field3AFActive = false
  2882. Field4AFActive = false
  2883. Field5AFActive = false
  2884. Field6AFActive = false
  2885. Field7AFActive = false
  2886. Field8AFActive = false
  2887. Field9AFActive = false
  2888. Field10AFActive = false
  2889. Field11AFActive = false
  2890. Field12AFActive = false
  2891. Field13AFActive = false
  2892. Field14AFActive = false
  2893. Field15AFActive = false
  2894. farmzoneswitched = false
  2895. resethive = false
  2896. print("Pollen Farming Ended")
  2897. notify'Pollen Farming Ended'
  2898. StartFarm.Text = "Pollen Farm: OFF"
  2899. PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2900. StartFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2901. local player = game:GetService("Players").LocalPlayer
  2902. currp=nil
  2903. player.Character:MoveTo(player.SpawnPos.Value.p)
  2904. end
  2905. end)
  2906.  
  2907. Field1AF.MouseButton1Down:connect(function()
  2908. PollenFarmActive = true
  2909. Field1AFActive = true
  2910. Field2AFActive = false
  2911. Field3AFActive = false
  2912. Field4AFActive = false
  2913. Field5AFActive = false
  2914. Field6AFActive = false
  2915. Field7AFActive = false
  2916. Field8AFActive = false
  2917. Field9AFActive = false
  2918. Field10AFActive = false
  2919. Field11AFActive = false
  2920. Field12AFActive = false
  2921. Field13AFActive = false
  2922. Field14AFActive = false
  2923. Field15AFActive = false
  2924. resethive = false
  2925. switchlocationmsg = false
  2926. StartFarm.Text = "Pollen Farm: ON"
  2927. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2928. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2929. notify'Pollen Farming Zone 1 Started'
  2930. WayPointsFrame.Visible = false
  2931. end)
  2932.  
  2933. Field2AF.MouseButton1Down:connect(function()
  2934. PollenFarmActive = true
  2935. Field2AFActive = true
  2936. Field1AFActive = false
  2937. Field3AFActive = false
  2938. Field4AFActive = false
  2939. Field5AFActive = false
  2940. Field6AFActive = false
  2941. Field7AFActive = false
  2942. Field8AFActive = false
  2943. Field9AFActive = false
  2944. Field10AFActive = false
  2945. Field11AFActive = false
  2946. Field12AFActive = false
  2947. Field13AFActive = false
  2948. Field14AFActive = false
  2949. Field15AFActive = false
  2950. resethive = false
  2951. switchlocationmsg = false
  2952. StartFarm.Text = "Pollen Farm: ON"
  2953. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2954. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2955. notify'Pollen Farming Zone 2 Started'
  2956. WayPointsFrame.Visible = false
  2957. end)
  2958.  
  2959. Field3AF.MouseButton1Down:connect(function()
  2960. PollenFarmActive = true
  2961. Field3AFActive = true
  2962. Field1AFActive = false
  2963. Field2AFActive = false
  2964. Field4AFActive = false
  2965. Field5AFActive = false
  2966. Field6AFActive = false
  2967. Field7AFActive = false
  2968. Field8AFActive = false
  2969. Field9AFActive = false
  2970. Field10AFActive = false
  2971. Field11AFActive = false
  2972. Field12AFActive = false
  2973. Field13AFActive = false
  2974. Field14AFActive = false
  2975. Field15AFActive = false
  2976. resethive = false
  2977. switchlocationmsg = false
  2978. StartFarm.Text = "Pollen Farm: ON"
  2979. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2980. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  2981. notify'Pollen Farming Zone 3 Started'
  2982. WayPointsFrame.Visible = false
  2983. end)
  2984.  
  2985. Field4AF.MouseButton1Down:connect(function()
  2986. PollenFarmActive = true
  2987. Field4AFActive = true
  2988. Field1AFActive = false
  2989. Field2AFActive = false
  2990. Field3AFActive = false
  2991. Field5AFActive = false
  2992. Field6AFActive = false
  2993. Field7AFActive = false
  2994. Field8AFActive = false
  2995. Field9AFActive = false
  2996. Field10AFActive = false
  2997. Field11AFActive = false
  2998. Field12AFActive = false
  2999. Field13AFActive = false
  3000. Field14AFActive = false
  3001. Field15AFActive = false
  3002. resethive = false
  3003. switchlocationmsg = false
  3004. StartFarm.Text = "Pollen Farm: ON"
  3005. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3006. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3007. notify'Pollen Farming Zone 4 Started'
  3008. WayPointsFrame.Visible = false
  3009. end)
  3010.  
  3011. Field5AF.MouseButton1Down:connect(function()
  3012. PollenFarmActive = true
  3013. Field5AFActive = true
  3014. Field1AFActive = false
  3015. Field2AFActive = false
  3016. Field3AFActive = false
  3017. Field4AFActive = false
  3018. Field6AFActive = false
  3019. Field7AFActive = false
  3020. Field8AFActive = false
  3021. Field9AFActive = false
  3022. Field10AFActive = false
  3023. Field11AFActive = false
  3024. Field12AFActive = false
  3025. Field13AFActive = false
  3026. Field14AFActive = false
  3027. Field15AFActive = false
  3028. resethive = false
  3029. switchlocationmsg = false
  3030. StartFarm.Text = "Pollen Farm: ON"
  3031. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3032. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3033. notify'Pollen Farming Zone 5 Started'
  3034. WayPointsFrame.Visible = false
  3035. end)
  3036.  
  3037. Field6AF.MouseButton1Down:connect(function()
  3038. PollenFarmActive = true
  3039. Field6AFActive = true
  3040. Field1AFActive = false
  3041. Field2AFActive = false
  3042. Field3AFActive = false
  3043. Field4AFActive = false
  3044. Field5AFActive = false
  3045. Field7AFActive = false
  3046. Field8AFActive = false
  3047. Field9AFActive = false
  3048. Field10AFActive = false
  3049. Field11AFActive = false
  3050. Field12AFActive = false
  3051. Field13AFActive = false
  3052. Field14AFActive = false
  3053. Field15AFActive = false
  3054. resethive = false
  3055. switchlocationmsg = false
  3056. StartFarm.Text = "Pollen Farm: ON"
  3057. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3058. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3059. notify'Pollen Farming Zone 6 Started'
  3060. WayPointsFrame.Visible = false
  3061. end)
  3062.  
  3063. Field7AF.MouseButton1Down:connect(function()
  3064. PollenFarmActive = true
  3065. Field7AFActive = true
  3066. Field1AFActive = false
  3067. Field2AFActive = false
  3068. Field3AFActive = false
  3069. Field4AFActive = false
  3070. Field5AFActive = false
  3071. Field6AFActive = false
  3072. Field8AFActive = false
  3073. Field9AFActive = false
  3074. Field10AFActive = false
  3075. Field11AFActive = false
  3076. Field12AFActive = false
  3077. Field13AFActive = false
  3078. Field14AFActive = false
  3079. Field15AFActive = false
  3080. resethive = false
  3081. switchlocationmsg = false
  3082. StartFarm.Text = "Pollen Farm: ON"
  3083. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3084. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3085. notify'Pollen Farming Zone 7 Started'
  3086. WayPointsFrame.Visible = false
  3087. end)
  3088.  
  3089. Field8AF.MouseButton1Down:connect(function()
  3090. PollenFarmActive = true
  3091. Field8AFActive = true
  3092. Field1AFActive = false
  3093. Field2AFActive = false
  3094. Field3AFActive = false
  3095. Field4AFActive = false
  3096. Field5AFActive = false
  3097. Field6AFActive = false
  3098. Field7AFActive = false
  3099. Field9AFActive = false
  3100. Field10AFActive = false
  3101. Field11AFActive = false
  3102. Field12AFActive = false
  3103. Field13AFActive = false
  3104. Field14AFActive = false
  3105. Field15AFActive = false
  3106. resethive = false
  3107. switchlocationmsg = false
  3108. StartFarm.Text = "Pollen Farm: ON"
  3109. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3110. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3111. notify'Pollen Farming Zone 8 Started'
  3112. WayPointsFrame.Visible = false
  3113. end)
  3114.  
  3115. Field9AF.MouseButton1Down:connect(function()
  3116. PollenFarmActive = true
  3117. Field9AFActive = true
  3118. Field1AFActive = false
  3119. Field2AFActive = false
  3120. Field3AFActive = false
  3121. Field4AFActive = false
  3122. Field5AFActive = false
  3123. Field6AFActive = false
  3124. Field7AFActive = false
  3125. Field8AFActive = false
  3126. Field10AFActive = false
  3127. Field11AFActive = false
  3128. Field12AFActive = false
  3129. Field13AFActive = false
  3130. Field14AFActive = false
  3131. Field15AFActive = false
  3132. resethive = false
  3133. switchlocationmsg = false
  3134. StartFarm.Text = "Pollen Farm: ON"
  3135. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3136. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3137. notify'Pollen Farming Zone 9 Started'
  3138. WayPointsFrame.Visible = false
  3139. end)
  3140.  
  3141. Field10AF.MouseButton1Down:connect(function()
  3142. PollenFarmActive = true
  3143. Field10AFActive = true
  3144. Field1AFActive = false
  3145. Field2AFActive = false
  3146. Field3AFActive = false
  3147. Field4AFActive = false
  3148. Field5AFActive = false
  3149. Field6AFActive = false
  3150. Field7AFActive = false
  3151. Field8AFActive = false
  3152. Field9AFActive = false
  3153. Field11AFActive = false
  3154. Field12AFActive = false
  3155. Field13AFActive = false
  3156. Field14AFActive = false
  3157. Field15AFActive = false
  3158. resethive = false
  3159. switchlocationmsg = false
  3160. StartFarm.Text = "Pollen Farm: ON"
  3161. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3162. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3163. notify'Pollen Farming Zone 10 Started'
  3164. WayPointsFrame.Visible = false
  3165. end)
  3166.  
  3167. Field11AF.MouseButton1Down:connect(function()
  3168. PollenFarmActive = true
  3169. Field11AFActive = true
  3170. Field1AFActive = false
  3171. Field2AFActive = false
  3172. Field3AFActive = false
  3173. Field4AFActive = false
  3174. Field5AFActive = false
  3175. Field6AFActive = false
  3176. Field7AFActive = false
  3177. Field8AFActive = false
  3178. Field9AFActive = false
  3179. Field10AFActive = false
  3180. Field12AFActive = false
  3181. Field13AFActive = false
  3182. Field14AFActive = false
  3183. Field15AFActive = false
  3184. resethive = false
  3185. switchlocationmsg = false
  3186. StartFarm.Text = "Pollen Farm: ON"
  3187. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3188. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3189. notify'Pollen Farming Zone 11 Started'
  3190. WayPointsFrame.Visible = false
  3191. end)
  3192.  
  3193. Field12AF.MouseButton1Down:connect(function()
  3194. PollenFarmActive = true
  3195. Field12AFActive = true
  3196. Field1AFActive = false
  3197. Field2AFActive = false
  3198. Field3AFActive = false
  3199. Field4AFActive = false
  3200. Field5AFActive = false
  3201. Field6AFActive = false
  3202. Field7AFActive = false
  3203. Field8AFActive = false
  3204. Field9AFActive = false
  3205. Field10AFActive = false
  3206. Field11AFActive = false
  3207. Field13AFActive = false
  3208. Field14AFActive = false
  3209. Field15AFActive = false
  3210. resethive = false
  3211. switchlocationmsg = false
  3212. StartFarm.Text = "Pollen Farm: ON"
  3213. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3214. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3215. notify'Pollen Farming Zone 12 Started'
  3216. WayPointsFrame.Visible = false
  3217. end)
  3218.  
  3219. Field13AF.MouseButton1Down:connect(function()
  3220. PollenFarmActive = true
  3221. Field13AFActive = true
  3222. Field1AFActive = false
  3223. Field2AFActive = false
  3224. Field3AFActive = false
  3225. Field4AFActive = false
  3226. Field5AFActive = false
  3227. Field6AFActive = false
  3228. Field7AFActive = false
  3229. Field8AFActive = false
  3230. Field9AFActive = false
  3231. Field10AFActive = false
  3232. Field11AFActive = false
  3233. Field12AFActive = false
  3234. Field14AFActive = false
  3235. Field15AFActive = false
  3236. resethive = false
  3237. switchlocationmsg = false
  3238. StartFarm.Text = "Pollen Farm: ON"
  3239. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3240. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3241. notify'Pollen Farming Zone 13 Started'
  3242. WayPointsFrame.Visible = false
  3243. end)
  3244.  
  3245. Field14AF.MouseButton1Down:connect(function()
  3246. PollenFarmActive = true
  3247. Field14AFActive = true
  3248. Field1AFActive = false
  3249. Field2AFActive = false
  3250. Field3AFActive = false
  3251. Field4AFActive = false
  3252. Field5AFActive = false
  3253. Field6AFActive = false
  3254. Field7AFActive = false
  3255. Field8AFActive = false
  3256. Field9AFActive = false
  3257. Field10AFActive = false
  3258. Field11AFActive = false
  3259. Field12AFActive = false
  3260. Field13AFActive = false
  3261. Field15AFActive = false
  3262. resethive = false
  3263. switchlocationmsg = false
  3264. StartFarm.Text = "Pollen Farm: ON"
  3265. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3266. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3267. notify'Pollen Farming Zone 14 Started'
  3268. WayPointsFrame.Visible = false
  3269. end)
  3270.  
  3271. Field15AF.MouseButton1Down:connect(function()
  3272. PollenFarmActive = true
  3273. Field15AFActive = true
  3274. Field1AFActive = false
  3275. Field2AFActive = false
  3276. Field3AFActive = false
  3277. Field4AFActive = false
  3278. Field5AFActive = false
  3279. Field6AFActive = false
  3280. Field7AFActive = false
  3281. Field8AFActive = false
  3282. Field9AFActive = false
  3283. Field10AFActive = false
  3284. Field11AFActive = false
  3285. Field12AFActive = false
  3286. Field13AFActive = false
  3287. Field14AFActive = false
  3288. resethive = false
  3289. switchlocationmsg = false
  3290. StartFarm.Text = "Pollen Farm: ON"
  3291. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3292. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3293. notify'Pollen Farming Zone 15 Started'
  3294. WayPointsFrame.Visible = false
  3295. end)
  3296.  
  3297. -- Avoid Vicious Bee --
  3298.  
  3299. AvoidViciousBee.MouseButton1Click:connect(function()
  3300. if AvoidViciousActive ~= true then
  3301. AvoidViciousActive = true
  3302. AvoidViciousBee.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3303. AvoidViciousBee.Text = "Avoid Vicious Bee: ON"
  3304. else
  3305. AvoidViciousActive = false
  3306. AvoidViciousBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3307. AvoidViciousBee.Text = "Avoid Vicious Bee: OFF"
  3308. end
  3309. end)
  3310.  
  3311. -- Hunt Vicious Bee --
  3312.  
  3313. HuntViciousBee.MouseButton1Click:connect(function()
  3314. if HuntViciousActive ~= true then
  3315. HuntViciousActive = true
  3316. HuntViciousBee.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3317. HuntViciousBee.Text = "Hunt Vicious Bee: ON"
  3318. ExtrasScreen.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3319. else
  3320. HuntViciousActive = false
  3321. HuntViciousBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3322. HuntViciousBee.Text = "Hunt Vicious Bee: OFF"
  3323. ExtrasScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3324. end
  3325. end)
  3326.  
  3327. spawn(function()
  3328. while true do
  3329. wait(1)
  3330. if HuntViciousActive and viciousbeedetected then
  3331. print("Vicous Bee has Appeared. Hunting Time!!")
  3332. notify'Vicous Bee has Appeared. Hunting Time!!'
  3333. if AvoidViciousActive then
  3334. AvoidTempOFF = true
  3335. AvoidViciousActive = false
  3336. AvoidViciousBee.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3337. AvoidViciousBee.Text = "Avoid ViciousBee: OFF"
  3338. end
  3339. if PollenFarmActive then
  3340. FarmTempOFF = true
  3341. PollenFarmActive = false
  3342. StartFarm.Text = "Pollen Farm: OFF"
  3343. PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3344. StartFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3345. end
  3346. print("God Mode activated. After defeating the bee you will respawn to exit God Mode.")
  3347.  
  3348. God.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3349. God.Text = "God Mode: ON"
  3350. GodModeActive = true
  3351. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  3352. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  3353. l.Parent = game.Players.LocalPlayer.Character
  3354. l.Name = "Humanoid"
  3355. wait(0.1)
  3356. game.Players.LocalPlayer.Character["1"]:Destroy()
  3357. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3358. game.Players.LocalPlayer.Character.Animate.Disabled = true
  3359. wait(0.1)
  3360. game.Players.LocalPlayer.Character.Animate.Disabled = false
  3361. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  3362. godmodeactivated = true
  3363. wait(1)
  3364.  
  3365. local hum = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3366. for i,v in pairs(workspace.Particles:GetChildren()) do
  3367. for x in string.gmatch(v.Name, "Vicious") do
  3368. while HuntViciousActive and viciousbeedetected do
  3369. if v.Name == "Vicious" then
  3370. hum.CFrame = CFrame.new(v.Position.x, v.Position.y, v.Position.z)
  3371. wait(1)
  3372. end
  3373. end
  3374. end
  3375. end
  3376. wait(1)
  3377. location = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3378. pausehumcheck = true
  3379. wait()
  3380. local prt = Instance.new("Model", workspace);
  3381. Instance.new("Part", prt).Name="Torso";
  3382. Instance.new("Part", prt).Name="Head";
  3383. Instance.new("Humanoid", prt).Name="Humanoid";
  3384. game.Players.LocalPlayer.Character=prt
  3385. God.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3386. God.Text = "God Mode: OFF"
  3387. GodModeActive = false
  3388. wait(6)
  3389. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = location
  3390. pausehumcheck = false
  3391. if AvoidTempOFF then
  3392. AvoidTempOFF = false
  3393. AvoidViciousBee.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3394. AvoidViciousBee.Text = "Avoid ViciousBee: ON"
  3395. AvoidViciousActive = true
  3396. end
  3397. if FarmTempOFF then
  3398. FarmTempOFF = false
  3399. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3400. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3401. StartFarm.Text = "Pollen Farm: ON"
  3402. PollenFarmActive = true
  3403. end
  3404. end
  3405. end
  3406. end)
  3407.  
  3408. -- Farm Sprouts --
  3409.  
  3410. SproutFarmToggle.MouseButton1Click:connect(function()
  3411. if SproutFarmActive ~= true then
  3412. SproutFarmActive = true
  3413. SproutFarmToggle.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3414. SproutFarmToggle.Text = "Farm Sprout: ON"
  3415. ExtrasScreen.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3416. else
  3417. SproutFarmActive = false
  3418. SproutFarmToggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3419. SproutFarmToggle.Text = "Farm Sprout: OFF"
  3420. ExtrasScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3421. end
  3422. end)
  3423.  
  3424. spawn(function()
  3425. while true do
  3426. startpos = nil
  3427. wait(1)
  3428. if SproutFarmActive and sproutdetected then
  3429. player = game:GetService("Players").LocalPlayer
  3430. local pollenLbl = player.Character:FindFirstChild("ProgressLabel",true)
  3431. if not pollenLbl then
  3432. print("Backpack not found")
  3433. end
  3434. local maxpollen = tonumber(pollenLbl.Text:match("%d+$"))
  3435. print("A Sprout has Appeared. Farming Time!!")
  3436. notify'A Sprout has Appeared. Farming Time!!'
  3437. if PollenFarmActive then
  3438. FarmTempOFF = true
  3439. PollenFarmActive = false
  3440. StartFarm.Text = "Pollen Farm: OFF"
  3441. PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3442. StartFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3443. wait(1)
  3444. end
  3445. while SproutFarmActive and sproutdetected do
  3446. if viciousbeenear and not godmodeactivated or tonumber(plrHealth) <= 30 and not godmodeactivated then
  3447. print("God Mode activated.")
  3448. God.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3449. God.Text = "God Mode: ON"
  3450. GodModeActive = true
  3451. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  3452. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  3453. l.Parent = game.Players.LocalPlayer.Character
  3454. l.Name = "Humanoid"
  3455. wait(0.1)
  3456. game.Players.LocalPlayer.Character["1"]:Destroy()
  3457. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3458. game.Players.LocalPlayer.Character.Animate.Disabled = true
  3459. wait(0.1)
  3460. game.Players.LocalPlayer.Character.Animate.Disabled = false
  3461. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  3462. godmodeactivated = true
  3463. wait(1)
  3464. end
  3465. local root = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3466. for i,v in pairs(workspace.Particles:GetChildren()) do
  3467. for x in string.gmatch(v.Name, "Sprout") do
  3468. if v.Name == "Sprout" then
  3469. if SproutFarmActive and sproutdetected then
  3470. if not sproutsafety then
  3471. local setstartpos = root.CFrame
  3472. for a = 1, 120 do
  3473. root.CFrame = v.CFrame * CFrame.new(0, 30, 0)
  3474. wait(0.1)
  3475. end
  3476. wait(1)
  3477. root.CFrame = v.CFrame * CFrame.new(3, 10, 3)
  3478. wait(1)
  3479. local startpos = root.CFrame
  3480. AutoDigActive = true
  3481. sproutsafety = true
  3482. sproutstarted = true
  3483. end
  3484. end
  3485. end
  3486. end
  3487. end
  3488. workspace.Collectibles.ChildAdded:Connect(function(part)
  3489. if SproutFarmActive and sproutstarted then
  3490. local rootpos = root.CFrame
  3491. if tostring(part) == tostring(game.Players.LocalPlayer.Name) or tostring(part) == "C" then
  3492. if (part.Position-root.Position).magnitude <= 80 then
  3493. root.CFrame = CFrame.new(part.Position.x, root.Position.y, part.Position.z)
  3494. wait(0.07)
  3495. root.CFrame = rootpos
  3496. wait(0.05)
  3497. end
  3498. end
  3499. end
  3500. end)
  3501. if tonumber(player.leaderstats.Pollen.Value+1) > tonumber(maxpollen) then
  3502. print("Bag Full: " ..tostring(player.leaderstats.Pollen.Value))
  3503. SproutFarmActive = false
  3504. wait(0.1)
  3505. game:GetService("Players").LocalPlayer.Character:MoveTo(game:GetService("Players").LocalPlayer.SpawnPos.Value.p)
  3506. wait(1)
  3507. game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  3508. repeat wait(0.5) until game:GetService("Players").LocalPlayer.leaderstats.Pollen.Value < 1
  3509. wait(4)
  3510. SproutFarmActive = true
  3511. end
  3512. wait(2)
  3513. root.CFrame = startpos
  3514. end
  3515. print("Finished farming Sprout")
  3516. wait(20)
  3517. AutoDigActive = false
  3518. sproutstarted = false
  3519. if godmodeactivated then
  3520. location = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3521. pausehumcheck = true
  3522. wait()
  3523. local prt = Instance.new("Model", workspace);
  3524. Instance.new("Part", prt).Name="Torso";
  3525. Instance.new("Part", prt).Name="Head";
  3526. Instance.new("Humanoid", prt).Name="Humanoid";
  3527. game.Players.LocalPlayer.Character=prt
  3528. wait(6)
  3529. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = location
  3530. godmodeactivated = false
  3531. pausehumcheck = false
  3532. God.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3533. God.Text = "God Mode: OFF"
  3534. GodModeActive = false
  3535. end
  3536. if FarmTempOFF then
  3537. FarmTempOFF = false
  3538. PollenFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3539. StartFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3540. StartFarm.Text = "Pollen Farm: ON"
  3541. PollenFarmActive = true
  3542. end
  3543. sproutsafety = false
  3544. root.CFrame = rootpos
  3545. end
  3546. end
  3547. end)
  3548.  
  3549. -- God Mode --
  3550.  
  3551. God.MouseButton1Click:connect(function()
  3552. if GodModeActive ~= true then
  3553. GodModeActive = true
  3554. God.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3555. God.Text = "God Mode: ON"
  3556. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  3557. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  3558. l.Parent = game.Players.LocalPlayer.Character
  3559. l.Name = "Humanoid"
  3560. wait(0.1)
  3561. game.Players.LocalPlayer.Character["1"]:Destroy()
  3562. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3563. game.Players.LocalPlayer.Character.Animate.Disabled = true
  3564. wait(0.1)
  3565. game.Players.LocalPlayer.Character.Animate.Disabled = false
  3566. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  3567. else
  3568. GodModeActive = false
  3569. God.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3570. God.Text = "God Mode: OFF"
  3571. location = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3572. --pausehumcheck = true
  3573. wait()
  3574. local prt = Instance.new("Model", workspace);
  3575. Instance.new("Part", prt).Name="Torso";
  3576. Instance.new("Part", prt).Name="Head";
  3577. Instance.new("Humanoid", prt).Name="Humanoid";
  3578. game.Players.LocalPlayer.Character=prt
  3579. wait(6)
  3580. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = location
  3581. --pausehumcheck = false
  3582. end
  3583. end)
  3584.  
  3585. -- Auto Dig --
  3586.  
  3587. AutoDig.MouseButton1Click:connect(function()
  3588. if AutoDigActive ~= true then
  3589. AutoDigActive = true
  3590. AutoDig.BackgroundColor3 = Color3.new(0.5, 0, 0)
  3591. else
  3592. AutoDigActive = false
  3593. notify'Auto Dig Stopped'
  3594. AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3595. end
  3596. end)
  3597.  
  3598. spawn(function()
  3599. while true do
  3600. wait(1)
  3601. if AutoDigActive then
  3602. local player = game:GetService("Players").LocalPlayer
  3603. local pollenTool = player.Character:FindFirstChildOfClass("Tool") or player.Backpack:FindFirstChildOfClass("Tool")
  3604. if pollenTool==nil or pollenTool:FindFirstChild("ClickEvent")==nil then
  3605. AutoDigActive = false
  3606. AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3607. print("Tool not found")
  3608. else
  3609. pollenTool.Parent = player.Character
  3610. while AutoDigActive do
  3611. wait(0.05)
  3612. pollenTool.ClickEvent:FireServer(CFrame.new())
  3613. end
  3614. end
  3615. end
  3616. end
  3617. end)
  3618.  
  3619. --- ReJoin Server ---
  3620.  
  3621. ReJoinServer.MouseButton1Down:connect(function()
  3622. local placeId = 1537690962
  3623. game:GetService("TeleportService"):Teleport(placeId)
  3624. end)
  3625.  
  3626. -- Auto Token Gather --
  3627.  
  3628. mouse.KeyDown:connect(function(key)
  3629. if key == TokenToggle.Text then
  3630. if not tokenfarmactive then
  3631. tokenfarmactive = true
  3632. notify'Auto Token Gather Enabled'
  3633. else
  3634. tokenfarmactive = false
  3635. notify'Auto Token Gather Disabled'
  3636. end
  3637. end
  3638. end)
  3639.  
  3640. spawn(function()
  3641. while true do
  3642. wait(0.5)
  3643. if tokenfarmactive then
  3644. workspace.Collectibles.ChildAdded:Connect(function(part)
  3645. if tokenfarmactive then
  3646. local root = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3647. local rootpos = root.CFrame
  3648. if tostring(part) == tostring(game.Players.LocalPlayer.Name) or tostring(part) == "C" then
  3649. -- print("token position: " ..tostring(part.Position)) --
  3650. -- print("player position: " ..tostring(root.Position)) --
  3651. -- print("Distance: " ..tostring((part.Position - root.Position).magnitude)) --
  3652. if (part.Position-root.Position).magnitude <= 50 then
  3653. root.CFrame = CFrame.new(part.Position.x, part.Position.y, part.Position.z)
  3654. wait(0.07)
  3655. root.CFrame = rootpos
  3656. wait(0.05)
  3657. end
  3658. end
  3659. end
  3660. end)
  3661. end
  3662. end
  3663. end)
  3664.  
  3665. spawn(function()
  3666. while true do
  3667. wait(0.5)
  3668. if tokenfarmactive2 then
  3669. local root = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3670. while tokenfarmactive2 do
  3671. local rootpos = root.CFrame
  3672. for k,v in pairs(workspace.Collectibles:GetChildren()) do
  3673. if v.Name == game.Players.LocalPlayer.Name and not v:FindFirstChild("farmed") or tonumber((v.Position - root.Position).magnitude) <= 50 and not v:FindFirstChild("farmed") then
  3674. local intvalue = Instance.new("IntValue",v)
  3675. intvalue.Name = "farmed"
  3676. root.CFrame = v.CFrame
  3677. wait(.07)
  3678. end
  3679. end
  3680. wait(0.1)
  3681. root.CFrame = rootpos
  3682. end
  3683. end
  3684. end
  3685. end)
  3686.  
  3687. -- Make Honey --
  3688.  
  3689. mouse.KeyDown:connect(function(key)
  3690. if key == HoneyToggle.Text then
  3691. notify'Making Honey'
  3692. game:GetService("Players").LocalPlayer.Character:MoveTo(game:GetService("Players").LocalPlayer.SpawnPos.Value.p)
  3693. wait(1.5)
  3694. game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  3695. end
  3696. end)
  3697.  
  3698. -- Farm Moon Amulet Tokens --
  3699.  
  3700. mouse.KeyDown:connect(function(key)
  3701. if key == FireflyToggle.Text then
  3702. notify'Moon Token Gather Enabled'
  3703. count = 0
  3704. if fireflydetected then
  3705. local root = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3706. for i,v in pairs(workspace.NPCBees:GetChildren()) do
  3707. if v.Name == "Firefly" then
  3708. wait(0.2)
  3709. count = count + 1
  3710. --print("Teleporting to Firefly " ..tostring(count))--
  3711. root.CFrame = CFrame.new(v.Position.x, v.Position.y, v.Position.z)
  3712. end
  3713. end
  3714. wait(1)
  3715.  
  3716. for i,v in pairs(workspace.Collectibles:GetChildren()) do
  3717. if v.Name == "C" then
  3718. if (v.Position-root.Position).magnitude <= 50 then
  3719. root.CFrame = CFrame.new(v.Position.x, v.Position.y, v.Position.z)
  3720. wait(0.1)
  3721. end
  3722. end
  3723. end
  3724. end
  3725. end
  3726. end)
Add Comment
Please, Sign In to add comment