Advertisement
Guest User

Untitled

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