Advertisement
TeamOneButton

LuckyMMBV2.0e

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