Palazikaka

Untitled

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