Advertisement
TruongDu

GUI

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