Waffle212

Untitled

Mar 28th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 41.93 KB | None | 0 0
  1. -- Bee Swarm Simulator Gui Created by LuckyMMB @ V3rmillion.net --
  2. -- Discord https://discord.gg/GKzJnUC --
  3. -- Last updated 29th March 2018 --
  4.  
  5. AntiAFKMode = "Nothing"
  6. PollenFarmActive = false
  7. AutoDigActive = false
  8.  
  9. -- Objects
  10.  
  11. local MainGUI = Instance.new("ScreenGui")
  12. local MainFrame = Instance.new("Frame")
  13. local Close = Instance.new("TextButton")
  14. local WayPoints = Instance.new("TextButton")
  15. local WayPointsFrame = Instance.new("Frame")
  16. local ShowLocation = Instance.new("TextLabel")
  17. local SetLocation = Instance.new("TextButton")
  18. local TPLocation = Instance.new("TextButton")
  19. local TPShop = Instance.new("TextButton")
  20. local ReturnToHive = Instance.new("TextButton")
  21. local TPShop2 = Instance.new("TextButton")
  22. local BeeShop = Instance.new("TextButton")
  23. local BlackBear = Instance.new("TextButton")
  24. local BrownBear = Instance.new("TextButton")
  25. local PandaBear = Instance.new("TextButton")
  26. local PolarBear = Instance.new("TextButton")
  27. local ScienceBear = Instance.new("TextButton")
  28. local StrawBerryField = Instance.new("TextButton")
  29. local PumpkinField = Instance.new("TextButton")
  30. local SunflowerField = Instance.new("TextButton")
  31. local CloverField = Instance.new("TextButton")
  32. local SpiderField = Instance.new("TextButton")
  33. local MushRoomField = Instance.new("TextButton")
  34. local BamBooField = Instance.new("TextButton")
  35. local DandelionField = Instance.new("TextButton")
  36. local PineappleField = Instance.new("TextButton")
  37. local BlueField = Instance.new("TextButton")
  38. local RoseField = Instance.new("TextButton")
  39. local CactusField = Instance.new("TextButton")
  40. local PineTreeField = Instance.new("TextButton")
  41. local MountainTopField = Instance.new("TextButton")
  42. local BlueClubhouse = Instance.new("TextButton")
  43. local RedClubhouse = Instance.new("TextButton")
  44. local MountainTopShop = Instance.new("TextButton")
  45. local RoyalJellyShop = Instance.new("TextButton")
  46. local Players = Instance.new("TextButton")
  47. local PlayerFrame = Instance.new("Frame")
  48. local PlayerList = Instance.new("Frame")
  49. local PlayerListBox = Instance.new("Frame")
  50. local PlyrSel = Instance.new("TextLabel")
  51. local Player1 = Instance.new("TextButton")
  52. local Player2 = Instance.new("TextButton")
  53. local Player3 = Instance.new("TextButton")
  54. local Player4 = Instance.new("TextButton")
  55. local Player5 = Instance.new("TextButton")
  56. local TpPlayer = Instance.new("TextButton")
  57. local FindTreasures = Instance.new("TextButton")
  58. local FindTreasuresText1 = Instance.new("TextLabel")
  59. local ExtrasScreen = Instance.new("TextButton")
  60. local ExtrasFrame = Instance.new("Frame")
  61. local InfoScreen = Instance.new("TextButton")
  62. local InfoFrame = Instance.new("Frame")
  63. local TPTool = Instance.new("TextButton")
  64. local ReJoinServer = Instance.new("TextButton")
  65. local NoClip = Instance.new("TextButton")
  66. local InfoText1 = Instance.new("TextLabel")
  67. local PollenFarm = Instance.new("TextButton")
  68. local AutoDig = Instance.new("TextButton")
  69.  
  70. -- Properties
  71.  
  72. MainGUI.Name = "MainGUI"
  73. MainGUI.Parent = game.CoreGui
  74. local MainCORE = game.CoreGui["MainGUI"]
  75.  
  76. MainFrame.Name = "MainFrame"
  77. MainFrame.Parent = MainGUI
  78. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  79. MainFrame.BackgroundTransparency = 0.5
  80. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  81. MainFrame.Position = UDim2.new(0.5, -299, 0, -32)
  82. MainFrame.Size = UDim2.new(0, 598, 0, 30)
  83.  
  84. Close.Name = "Close"
  85. Close.Parent = MainFrame
  86. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  87. Close.BorderColor3 = Color3.new(0, 1, 0)
  88. Close.Position = UDim2.new(0, 5, 0, 5)
  89. Close.Size = UDim2.new(0, 20, 0, 20)
  90. Close.Font = Enum.Font.Fantasy
  91. Close.Text = "X"
  92. Close.TextColor3 = Color3.new(1, 0, 0)
  93. Close.TextSize = 17
  94. Close.TextScaled = true
  95. Close.TextWrapped = true
  96.  
  97. WayPoints.Name = "WayPoints"
  98. WayPoints.Parent = MainFrame
  99. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  100. WayPoints.BorderColor3 = Color3.new(0, 1, 0)
  101. WayPoints.Position = UDim2.new(0, 30, 0, 5)
  102. WayPoints.Size = UDim2.new(0, 83, 0, 20)
  103. WayPoints.BackgroundTransparency = 0
  104. WayPoints.Font = Enum.Font.Fantasy
  105. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  106. WayPoints.Text = "WayPoints"
  107. WayPoints.TextSize = 17
  108. WayPoints.TextWrapped = true
  109.  
  110. WayPointsFrame.Name = "WayPointsFrame"
  111. WayPointsFrame.Parent = MainFrame
  112. WayPointsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  113. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  114. WayPointsFrame.BackgroundTransparency = 0.4
  115. WayPointsFrame.Position = UDim2.new(0, 0, 0, 34)
  116. WayPointsFrame.Size = UDim2.new(0, 375, 0, 380)
  117. WayPointsFrame.Visible = false
  118.  
  119. ShowLocation.Name = "ShowLocation"
  120. ShowLocation.Parent = WayPointsFrame
  121. ShowLocation.BackgroundColor3 = Color3.new(1, 1, 1)
  122. ShowLocation.TextColor3 = Color3.new(0, 0, 0)
  123. ShowLocation.BorderColor3 = Color3.new(0, 0, 0)
  124. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  125. ShowLocation.Size = UDim2.new(0, 170, 0, 20)
  126. ShowLocation.Font = Enum.Font.Fantasy
  127. ShowLocation.Text = "Current Location"
  128. ShowLocation.TextWrapped = true
  129. ShowLocation.TextSize = 15
  130.  
  131. SetLocation.Name = "SetLocation"
  132. SetLocation.Parent = WayPointsFrame
  133. SetLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  134. SetLocation.TextColor3 = Color3.new(1, 1, 1)
  135. SetLocation.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  136. SetLocation.Position = UDim2.new(0, 180, 0, 5)
  137. SetLocation.Size = UDim2.new(0, 120, 0, 20)
  138. SetLocation.Font = Enum.Font.Fantasy
  139. SetLocation.Text = "Set Location"
  140. SetLocation.TextWrapped = true
  141. SetLocation.TextSize = 16
  142.  
  143. TPLocation.Name = "TPLocation"
  144. TPLocation.Parent = WayPointsFrame
  145. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  146. TPLocation.TextColor3 = Color3.new(1, 1, 1)
  147. TPLocation.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  148. TPLocation.Position = UDim2.new(0, 305, 0, 5)
  149. TPLocation.Size = UDim2.new(0, 65, 0, 20)
  150. TPLocation.Font = Enum.Font.Fantasy
  151. TPLocation.Text = "Move to"
  152. TPLocation.TextWrapped = true
  153. TPLocation.TextSize = 16
  154.  
  155. ReturnToHive.Name = "ReturnToHive"
  156. ReturnToHive.Parent = WayPointsFrame
  157. ReturnToHive.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  158. ReturnToHive.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  159. ReturnToHive.Position = UDim2.new(0, 5, 0, 30)
  160. ReturnToHive.Size = UDim2.new(0, 180, 0, 20)
  161. ReturnToHive.TextColor3 = Color3.new(1, 1, 1)
  162. ReturnToHive.Font = Enum.Font.Fantasy
  163. ReturnToHive.Text = "Return To Hive"
  164. ReturnToHive.TextSize = 16
  165.  
  166. BlackBear.Name = "BlackBear"
  167. BlackBear.Parent = WayPointsFrame
  168. BlackBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  169. BlackBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  170. BlackBear.Position = UDim2.new(0, 5, 0, 55)
  171. BlackBear.Size = UDim2.new(0, 180, 0, 20)
  172. BlackBear.TextColor3 = Color3.new(1, 1, 1)
  173. BlackBear.Font = Enum.Font.Fantasy
  174. BlackBear.Text = "Black Bear"
  175. BlackBear.TextSize = 16
  176.  
  177. BrownBear.Name = "BrownBear"
  178. BrownBear.Parent = WayPointsFrame
  179. BrownBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  180. BrownBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  181. BrownBear.Position = UDim2.new(0, 5, 0, 80)
  182. BrownBear.Size = UDim2.new(0, 180, 0, 20)
  183. BrownBear.TextColor3 = Color3.new(1, 1, 1)
  184. BrownBear.Font = Enum.Font.Fantasy
  185. BrownBear.Text = "Brown Bear"
  186. BrownBear.TextSize = 16
  187.  
  188. PandaBear.Name = "PandaBear"
  189. PandaBear.Parent = WayPointsFrame
  190. PandaBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  191. PandaBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  192. PandaBear.Position = UDim2.new(0, 5, 0, 105)
  193. PandaBear.Size = UDim2.new(0, 180, 0, 20)
  194. PandaBear.TextColor3 = Color3.new(1, 1, 1)
  195. PandaBear.Font = Enum.Font.Fantasy
  196. PandaBear.Text = "Panda Bear"
  197. PandaBear.TextSize = 16
  198.  
  199. PolarBear.Name = "PolarBear"
  200. PolarBear.Parent = WayPointsFrame
  201. PolarBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  202. PolarBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  203. PolarBear.Position = UDim2.new(0, 5, 0, 130)
  204. PolarBear.Size = UDim2.new(0, 180, 0, 20)
  205. PolarBear.TextColor3 = Color3.new(1, 1, 1)
  206. PolarBear.Font = Enum.Font.Fantasy
  207. PolarBear.Text = "Polar Bear"
  208. PolarBear.TextSize = 16
  209.  
  210. ScienceBear.Name = "ScienceBear"
  211. ScienceBear.Parent = WayPointsFrame
  212. ScienceBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  213. ScienceBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  214. ScienceBear.Position = UDim2.new(0, 5, 0, 155)
  215. ScienceBear.Size = UDim2.new(0, 180, 0, 20)
  216. ScienceBear.TextColor3 = Color3.new(1, 1, 1)
  217. ScienceBear.Font = Enum.Font.Fantasy
  218. ScienceBear.Text = "Science Bear"
  219. ScienceBear.TextSize = 16
  220.  
  221. BeeShop.Name = "BeeShop"
  222. BeeShop.Parent = WayPointsFrame
  223. BeeShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  224. BeeShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  225. BeeShop.Position = UDim2.new(0, 5, 0, 180)
  226. BeeShop.Size = UDim2.new(0, 180, 0, 20)
  227. BeeShop.TextColor3 = Color3.new(1, 1, 1)
  228. BeeShop.Font = Enum.Font.Fantasy
  229. BeeShop.Text = "Bees Shop"
  230. BeeShop.TextSize = 16
  231.  
  232. TPShop.Name = "TPShop"
  233. TPShop.Parent = WayPointsFrame
  234. TPShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  235. TPShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  236. TPShop.Position = UDim2.new(0, 5, 0, 205)
  237. TPShop.Size = UDim2.new(0, 180, 0, 20)
  238. TPShop.TextColor3 = Color3.new(1, 1, 1)
  239. TPShop.Font = Enum.Font.Fantasy
  240. TPShop.Text = "Basic Tools Shop"
  241. TPShop.TextSize = 16
  242.  
  243. TPShop2.Name = "TPShop2"
  244. TPShop2.Parent = WayPointsFrame
  245. TPShop2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  246. TPShop2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  247. TPShop2.Position = UDim2.new(0, 5, 0, 230)
  248. TPShop2.Size = UDim2.new(0, 180, 0, 20)
  249. TPShop2.TextColor3 = Color3.new(1, 1, 1)
  250. TPShop2.Font = Enum.Font.Fantasy
  251. TPShop2.Text = "Advanced Tools Shop"
  252. TPShop2.TextSize = 16
  253.  
  254. BlueClubhouse.Name = "BlueClubhouse"
  255. BlueClubhouse.Parent = WayPointsFrame
  256. BlueClubhouse.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  257. BlueClubhouse.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  258. BlueClubhouse.Position = UDim2.new(0, 5, 0, 255)
  259. BlueClubhouse.Size = UDim2.new(0, 180, 0, 20)
  260. BlueClubhouse.TextColor3 = Color3.new(1, 1, 1)
  261. BlueClubhouse.Font = Enum.Font.Fantasy
  262. BlueClubhouse.Text = "Blue Clubhouse"
  263. BlueClubhouse.TextSize = 16
  264.  
  265. RedClubhouse.Name = "RedClubhouse"
  266. RedClubhouse.Parent = WayPointsFrame
  267. RedClubhouse.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  268. RedClubhouse.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  269. RedClubhouse.Position = UDim2.new(0, 5, 0, 280)
  270. RedClubhouse.Size = UDim2.new(0, 180, 0, 20)
  271. RedClubhouse.TextColor3 = Color3.new(1, 1, 1)
  272. RedClubhouse.Font = Enum.Font.Fantasy
  273. RedClubhouse.Text = "Red Clubhouse"
  274. RedClubhouse.TextSize = 16
  275.  
  276. RoyalJellyShop.Name = "RoyalJellyShop"
  277. RoyalJellyShop.Parent = WayPointsFrame
  278. RoyalJellyShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  279. RoyalJellyShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  280. RoyalJellyShop.Position = UDim2.new(0, 5, 0, 305)
  281. RoyalJellyShop.Size = UDim2.new(0, 180, 0, 20)
  282. RoyalJellyShop.TextColor3 = Color3.new(1, 1, 1)
  283. RoyalJellyShop.Font = Enum.Font.Fantasy
  284. RoyalJellyShop.Text = "Royal Jelly Shop"
  285. RoyalJellyShop.TextSize = 16
  286.  
  287. MountainTopShop.Name = "MountainTopShop"
  288. MountainTopShop.Parent = WayPointsFrame
  289. MountainTopShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  290. MountainTopShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  291. MountainTopShop.Position = UDim2.new(0, 5, 0, 330)
  292. MountainTopShop.Size = UDim2.new(0, 180, 0, 20)
  293. MountainTopShop.TextColor3 = Color3.new(1, 1, 1)
  294. MountainTopShop.Font = Enum.Font.Fantasy
  295. MountainTopShop.Text = "Mountain Top Shop"
  296. MountainTopShop.TextSize = 16
  297.  
  298. SunflowerField.Name = "SunflowerField"
  299. SunflowerField.Parent = WayPointsFrame
  300. SunflowerField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  301. SunflowerField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  302. SunflowerField.Position = UDim2.new(0, 190, 0, 30)
  303. SunflowerField.Size = UDim2.new(0, 180, 0, 20)
  304. SunflowerField.TextColor3 = Color3.new(1, 1, 1)
  305. SunflowerField.Font = Enum.Font.Fantasy
  306. SunflowerField.Text = "Sunflower Field"
  307. SunflowerField.TextSize = 16
  308.  
  309. MushRoomField.Name = "MushRoomField"
  310. MushRoomField.Parent = WayPointsFrame
  311. MushRoomField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  312. MushRoomField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  313. MushRoomField.Position = UDim2.new(0, 190, 0, 55)
  314. MushRoomField.Size = UDim2.new(0, 180, 0, 20)
  315. MushRoomField.TextColor3 = Color3.new(1, 1, 1)
  316. MushRoomField.Font = Enum.Font.Fantasy
  317. MushRoomField.Text = "MushRoom Field"
  318. MushRoomField.TextSize = 16
  319.  
  320. DandelionField.Name = "DandelionField"
  321. DandelionField.Parent = WayPointsFrame
  322. DandelionField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  323. DandelionField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  324. DandelionField.Position = UDim2.new(0, 190, 0, 80)
  325. DandelionField.Size = UDim2.new(0, 180, 0, 20)
  326. DandelionField.TextColor3 = Color3.new(1, 1, 1)
  327. DandelionField.Font = Enum.Font.Fantasy
  328. DandelionField.Text = "Dandelion Field"
  329. DandelionField.TextSize = 16
  330.  
  331. BlueField.Name = "BlueField"
  332. BlueField.Parent = WayPointsFrame
  333. BlueField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  334. BlueField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  335. BlueField.Position = UDim2.new(0, 190, 0, 105)
  336. BlueField.Size = UDim2.new(0, 180, 0, 20)
  337. BlueField.TextColor3 = Color3.new(1, 1, 1)
  338. BlueField.Font = Enum.Font.Fantasy
  339. BlueField.Text = "Blue Flower Field"
  340. BlueField.TextSize = 16
  341.  
  342. CloverField.Name = "CloverField"
  343. CloverField.Parent = WayPointsFrame
  344. CloverField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  345. CloverField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  346. CloverField.Position = UDim2.new(0, 190, 0, 130)
  347. CloverField.Size = UDim2.new(0, 180, 0, 20)
  348. CloverField.TextColor3 = Color3.new(1, 1, 1)
  349. CloverField.Font = Enum.Font.Fantasy
  350. CloverField.Text = "Clover Field"
  351. CloverField.TextSize = 16
  352.  
  353. StrawBerryField.Name = "StrawBerryField"
  354. StrawBerryField.Parent = WayPointsFrame
  355. StrawBerryField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  356. StrawBerryField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  357. StrawBerryField.Position = UDim2.new(0, 190, 0, 155)
  358. StrawBerryField.Size = UDim2.new(0, 180, 0, 20)
  359. StrawBerryField.TextColor3 = Color3.new(1, 1, 1)
  360. StrawBerryField.Font = Enum.Font.Fantasy
  361. StrawBerryField.Text = "StrawBerry Field"
  362. StrawBerryField.TextSize = 16
  363.  
  364. SpiderField.Name = "SpiderField"
  365. SpiderField.Parent = WayPointsFrame
  366. SpiderField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  367. SpiderField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  368. SpiderField.Position = UDim2.new(0, 190, 0, 180)
  369. SpiderField.Size = UDim2.new(0, 180, 0, 20)
  370. SpiderField.TextColor3 = Color3.new(1, 1, 1)
  371. SpiderField.Font = Enum.Font.Fantasy
  372. SpiderField.Text = "Spider Field"
  373. SpiderField.TextSize = 16
  374.  
  375. BamBooField.Name = "BamBooField"
  376. BamBooField.Parent = WayPointsFrame
  377. BamBooField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  378. BamBooField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  379. BamBooField.Position = UDim2.new(0, 190, 0, 205)
  380. BamBooField.Size = UDim2.new(0, 180, 0, 20)
  381. BamBooField.TextColor3 = Color3.new(1, 1, 1)
  382. BamBooField.Font = Enum.Font.Fantasy
  383. BamBooField.Text = "BamBoo Field"
  384. BamBooField.TextSize = 16
  385.  
  386. RoseField.Name = "RoseField"
  387. RoseField.Parent = WayPointsFrame
  388. RoseField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  389. RoseField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  390. RoseField.Position = UDim2.new(0, 190, 0, 230)
  391. RoseField.Size = UDim2.new(0, 180, 0, 20)
  392. RoseField.TextColor3 = Color3.new(1, 1, 1)
  393. RoseField.Font = Enum.Font.Fantasy
  394. RoseField.Text = "Rose Field"
  395. RoseField.TextSize = 16
  396.  
  397. PineTreeField.Name = "PineTreeField"
  398. PineTreeField.Parent = WayPointsFrame
  399. PineTreeField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  400. PineTreeField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  401. PineTreeField.Position = UDim2.new(0, 190, 0, 255)
  402. PineTreeField.Size = UDim2.new(0, 180, 0, 20)
  403. PineTreeField.TextColor3 = Color3.new(1, 1, 1)
  404. PineTreeField.Font = Enum.Font.Fantasy
  405. PineTreeField.Text = "PineTree Field"
  406. PineTreeField.TextSize = 16
  407.  
  408. CactusField.Name = "CactusField"
  409. CactusField.Parent = WayPointsFrame
  410. CactusField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  411. CactusField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  412. CactusField.Position = UDim2.new(0, 190, 0, 280)
  413. CactusField.Size = UDim2.new(0, 180, 0, 20)
  414. CactusField.TextColor3 = Color3.new(1, 1, 1)
  415. CactusField.Font = Enum.Font.Fantasy
  416. CactusField.Text = "Cactus Field"
  417. CactusField.TextSize = 16
  418.  
  419. PumpkinField.Name = "PumpkinField"
  420. PumpkinField.Parent = WayPointsFrame
  421. PumpkinField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  422. PumpkinField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  423. PumpkinField.Position = UDim2.new(0, 190, 0, 305)
  424. PumpkinField.Size = UDim2.new(0, 180, 0, 20)
  425. PumpkinField.TextColor3 = Color3.new(1, 1, 1)
  426. PumpkinField.Font = Enum.Font.Fantasy
  427. PumpkinField.Text = "Pumpkin Patch"
  428. PumpkinField.TextSize = 16
  429.  
  430. PineappleField.Name = "PineappleField"
  431. PineappleField.Parent = WayPointsFrame
  432. PineappleField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  433. PineappleField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  434. PineappleField.Position = UDim2.new(0, 190, 0, 330)
  435. PineappleField.Size = UDim2.new(0, 180, 0, 20)
  436. PineappleField.TextColor3 = Color3.new(1, 1, 1)
  437. PineappleField.Font = Enum.Font.Fantasy
  438. PineappleField.Text = "Pineapple Patch"
  439. PineappleField.TextSize = 16
  440.  
  441. MountainTopField.Name = "MountainTopField"
  442. MountainTopField.Parent = WayPointsFrame
  443. MountainTopField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  444. MountainTopField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  445. MountainTopField.Position = UDim2.new(0, 190, 0, 355)
  446. MountainTopField.Size = UDim2.new(0, 180, 0, 20)
  447. MountainTopField.TextColor3 = Color3.new(1, 1, 1)
  448. MountainTopField.Font = Enum.Font.Fantasy
  449. MountainTopField.Text = "Mountain Top Field"
  450. MountainTopField.TextSize = 16
  451.  
  452. Players.Name = "Players"
  453. Players.Parent = MainFrame
  454. Players.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  455. Players.BorderColor3 = Color3.new(0, 1, 0)
  456. Players.Position = UDim2.new(0, 118, 0, 5)
  457. Players.Size = UDim2.new(0, 60, 0, 20)
  458. Players.BackgroundTransparency = 0
  459. Players.Font = Enum.Font.Fantasy
  460. Players.TextColor3 = Color3.new(1, 1, 1)
  461. Players.Text = "Players"
  462. Players.TextSize = 17
  463. Players.TextWrapped = true
  464.  
  465. PlayerFrame.Name = "PlayerFrame"
  466. PlayerFrame.Parent = MainFrame
  467. PlayerFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  468. PlayerFrame.BackgroundTransparency = 0.5
  469. PlayerFrame.BorderColor3 = Color3.new(0, 0, 0)
  470. PlayerFrame.Position = UDim2.new(0, 63, 0, 34)
  471. PlayerFrame.Size = UDim2.new(0, 170, 0, 200)
  472. PlayerFrame.Visible = false
  473.  
  474. PlyrSel.Name = "PlyrSel"
  475. PlyrSel.Parent = PlayerFrame
  476. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  477. PlyrSel.BackgroundTransparency = 0.15
  478. PlyrSel.BorderColor3 = Color3.new(0, 0, 0)
  479. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  480. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  481. PlyrSel.Font = Enum.Font.SourceSans
  482. PlyrSel.Text = "SELECT A PLAYER"
  483. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  484. PlyrSel.TextScaled = true
  485. PlyrSel.TextSize = 17
  486. PlyrSel.TextWrapped = true
  487.  
  488. Player1.Name = "Player1"
  489. Player1.Parent = PlayerFrame
  490. Player1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  491. Player1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  492. Player1.Position = UDim2.new(0, 5, 0, 35)
  493. Player1.Size = UDim2.new(0, 160, 0, 20)
  494. Player1.Font = Enum.Font.Fantasy
  495. Player1.Text = ""
  496. Player1.TextColor3 = Color3.new(1, 1, 1)
  497. Player1.TextSize = 15
  498. Player1.TextWrapped = true
  499.  
  500. Player2.Name = "Player2"
  501. Player2.Parent = PlayerFrame
  502. Player2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  503. Player2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  504. Player2.Position = UDim2.new(0, 5, 0, 60)
  505. Player2.Size = UDim2.new(0, 160, 0, 20)
  506. Player2.Font = Enum.Font.Fantasy
  507. Player2.Text = ""
  508. Player2.TextColor3 = Color3.new(1, 1, 1)
  509. Player2.TextSize = 15
  510. Player2.TextWrapped = true
  511.  
  512. Player3.Name = "Player3"
  513. Player3.Parent = PlayerFrame
  514. Player3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  515. Player3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  516. Player3.Position = UDim2.new(0, 5, 0, 85)
  517. Player3.Size = UDim2.new(0, 160, 0, 20)
  518. Player3.Font = Enum.Font.Fantasy
  519. Player3.Text = ""
  520. Player3.TextColor3 = Color3.new(1, 1, 1)
  521. Player3.TextSize = 15
  522. Player3.TextWrapped = true
  523.  
  524. Player4.Name = "Player4"
  525. Player4.Parent = PlayerFrame
  526. Player4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  527. Player4.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  528. Player4.Position = UDim2.new(0, 5, 0, 110)
  529. Player4.Size = UDim2.new(0, 160, 0, 20)
  530. Player4.Font = Enum.Font.Fantasy
  531. Player4.Text = ""
  532. Player4.TextColor3 = Color3.new(1, 1, 1)
  533. Player4.TextSize = 15
  534. Player4.TextWrapped = true
  535.  
  536. Player5.Name = "Player5"
  537. Player5.Parent = PlayerFrame
  538. Player5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  539. Player5.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  540. Player5.Position = UDim2.new(0, 5, 0, 135)
  541. Player5.Size = UDim2.new(0, 160, 0, 20)
  542. Player5.Font = Enum.Font.Fantasy
  543. Player5.Text = ""
  544. Player5.TextColor3 = Color3.new(1, 1, 1)
  545. Player5.TextSize = 15
  546. Player5.TextWrapped = true
  547.  
  548. TpPlayer.Name = "TpPlayer"
  549. TpPlayer.Parent = PlayerFrame
  550. TpPlayer.BackgroundColor3 = Color3.new(0.18, 0.18, 0.18)
  551. TpPlayer.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  552. TpPlayer.Position = UDim2.new(0, 5, 0, 165)
  553. TpPlayer.Size = UDim2.new(0, 160, 0, 30)
  554. TpPlayer.Font = Enum.Font.Fantasy
  555. TpPlayer.Text = "Teleport to Player"
  556. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  557. TpPlayer.TextWrapped = true
  558. TpPlayer.TextSize = 17
  559.  
  560. PollenFarm.Name = "PollenFarm"
  561. PollenFarm.Parent = MainFrame
  562. PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  563. PollenFarm.BorderColor3 = Color3.new(0, 1, 0)
  564. PollenFarm.Position = UDim2.new(0, 183, 0, 5)
  565. PollenFarm.Size = UDim2.new(0, 100, 0, 20)
  566. PollenFarm.Font = Enum.Font.Fantasy
  567. PollenFarm.TextColor3 = Color3.new(1, 1, 1)
  568. PollenFarm.Text = "Farm Pollen"
  569. PollenFarm.TextSize = 17
  570. PollenFarm.TextWrapped = true
  571.  
  572. AutoDig.Name = "AutoDig"
  573. AutoDig.Parent = MainFrame
  574. AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  575. AutoDig.BorderColor3 = Color3.new(0, 1, 0)
  576. AutoDig.Position = UDim2.new(0, 288, 0, 5)
  577. AutoDig.Size = UDim2.new(0, 70, 0, 20)
  578. AutoDig.Font = Enum.Font.Fantasy
  579. AutoDig.TextColor3 = Color3.new(1, 1, 1)
  580. AutoDig.Text = "Auto Dig"
  581. AutoDig.TextSize = 17
  582. AutoDig.TextWrapped = true
  583.  
  584. FindTreasures.Name = "FindTreasures"
  585. FindTreasures.Parent = MainFrame
  586. FindTreasures.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  587. FindTreasures.BorderColor3 = Color3.new(0, 1, 0)
  588. FindTreasures.Position = UDim2.new(0, 363, 0, 5)
  589. FindTreasures.Size = UDim2.new(0, 130, 0, 20)
  590. FindTreasures.BackgroundTransparency = 0
  591. FindTreasures.Font = Enum.Font.Fantasy
  592. FindTreasures.TextColor3 = Color3.new(1, 1, 1)
  593. FindTreasures.Text = "Collect Treasures"
  594. FindTreasures.TextSize = 17
  595. FindTreasures.TextWrapped = true
  596.  
  597. FindTreasuresText1.Name = "FindTreasuresText1"
  598. FindTreasuresText1.Parent = MainFrame
  599. FindTreasuresText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  600. FindTreasuresText1.BorderColor3 = Color3.new(0, 0, 0)
  601. FindTreasuresText1.BackgroundTransparency = 0.1
  602. FindTreasuresText1.Position = UDim2.new(0, 333, 0, 34)
  603. FindTreasuresText1.Size = UDim2.new(0, 190, 0, 85)
  604. FindTreasuresText1.TextColor3 = Color3.new(1, 1, 1)
  605. FindTreasuresText1.Font = Enum.Font.Fantasy
  606. 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."
  607. FindTreasuresText1.TextSize = 16
  608. FindTreasuresText1.TextWrapped = true
  609. FindTreasuresText1.ZIndex = 6
  610. FindTreasuresText1.Visible = false
  611. FindTreasuresText1.TextYAlignment = Enum.TextYAlignment.Top
  612.  
  613. ExtrasScreen.Name = "ExtrasScreen"
  614. ExtrasScreen.Parent = MainFrame
  615. ExtrasScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  616. ExtrasScreen.BorderColor3 = Color3.new(0, 1, 0)
  617. ExtrasScreen.Position = UDim2.new(0, 498, 0, 5)
  618. ExtrasScreen.Size = UDim2.new(0, 50, 0, 20)
  619. ExtrasScreen.BackgroundTransparency = 0
  620. ExtrasScreen.Font = Enum.Font.Fantasy
  621. ExtrasScreen.TextColor3 = Color3.new(1, 1, 1)
  622. ExtrasScreen.Text = "Extras"
  623. ExtrasScreen.TextSize = 17
  624. ExtrasScreen.TextWrapped = true
  625.  
  626. ExtrasFrame.Name = "ExtrasFrame"
  627. ExtrasFrame.Parent = MainFrame
  628. ExtrasFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  629. ExtrasFrame.BorderColor3 = Color3.new(0, 0, 0)
  630. ExtrasFrame.BackgroundTransparency = 0.5
  631. ExtrasFrame.Position = UDim2.new(0, 428, 0, 34)
  632. ExtrasFrame.Size = UDim2.new(0, 170, 0, 80)
  633. ExtrasFrame.Visible = false
  634.  
  635. NoClip.Name = "NoClip"
  636. NoClip.Parent = ExtrasFrame
  637. NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  638. NoClip.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  639. NoClip.Position = UDim2.new(0, 5, 0, 5)
  640. NoClip.Size = UDim2.new(0, 160, 0, 20)
  641. NoClip.Font = Enum.Font.Fantasy
  642. NoClip.TextColor3 = Color3.new(1, 1, 1)
  643. NoClip.Text = "Enable NoClip"
  644. NoClip.TextSize = 17
  645. NoClip.TextWrapped = true
  646.  
  647. TPTool.Name = "TPTool"
  648. TPTool.Parent = ExtrasFrame
  649. TPTool.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  650. TPTool.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  651. TPTool.Position = UDim2.new(0, 5, 0, 30)
  652. TPTool.Size = UDim2.new(0, 160, 0, 20)
  653. TPTool.TextColor3 = Color3.new(1, 1, 1)
  654. TPTool.Font = Enum.Font.Fantasy
  655. TPTool.Text = "Add TPTool"
  656. TPTool.TextSize = 16
  657.  
  658. ReJoinServer.Name = "ReJoinServer"
  659. ReJoinServer.Parent = ExtrasFrame
  660. ReJoinServer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  661. ReJoinServer.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  662. ReJoinServer.Position = UDim2.new(0, 5, 0, 55)
  663. ReJoinServer.Size = UDim2.new(0, 160, 0, 20)
  664. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  665. ReJoinServer.Font = Enum.Font.Fantasy
  666. ReJoinServer.Text = "ReJoin a Server"
  667. ReJoinServer.TextSize = 16
  668. ReJoinServer.TextWrapped = true
  669.  
  670. InfoScreen.Name = "InfoScreen"
  671. InfoScreen.Parent = MainFrame
  672. InfoScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  673. InfoScreen.BorderColor3 = Color3.new(0, 1, 0)
  674. InfoScreen.Position = UDim2.new(0, 553, 0, 5)
  675. InfoScreen.Size = UDim2.new(0, 40, 0, 20)
  676. InfoScreen.BackgroundTransparency = 0
  677. InfoScreen.Font = Enum.Font.Fantasy
  678. InfoScreen.TextColor3 = Color3.new(1, 1, 1)
  679. InfoScreen.Text = "Info"
  680. InfoScreen.TextSize = 17
  681. InfoScreen.TextWrapped = true
  682.  
  683. InfoFrame.Name = "InfoFrame"
  684. InfoFrame.Parent = MainFrame
  685. InfoFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  686. InfoFrame.BorderColor3 = Color3.new(0, 0, 0)
  687. InfoFrame.BackgroundTransparency = 0.1
  688. InfoFrame.Position = UDim2.new(0, 398, 0, 34)
  689. InfoFrame.Size = UDim2.new(0, 200, 0, 130)
  690. InfoFrame.Visible = false
  691.  
  692. InfoText1.Name = "InfoText1"
  693. InfoText1.Parent = InfoFrame
  694. InfoText1.BackgroundColor3 = Color3.new(0, 0, 0)
  695. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  696. InfoText1.BackgroundTransparency = 1
  697. InfoText1.Position = UDim2.new(0, 5, 0, 5)
  698. InfoText1.Size = UDim2.new(0, 190, 0, 130)
  699. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  700. InfoText1.Font = Enum.Font.Fantasy
  701. InfoText1.Text = "This Gui was created by LuckyMMB@V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\n\nCredits:\nsirelKilla @ v3rmillion for the pollen farming script"
  702. InfoText1.TextSize = 15
  703. InfoText1.TextWrapped = true
  704. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  705.  
  706. function notify(msg)
  707. game.StarterGui:SetCore('SendNotification', {
  708. Title = 'Bee Swarm LuckyGUI';
  709. Text = msg;
  710. Duration = 5;
  711. })
  712. end
  713.  
  714. --- Close ---
  715.  
  716. Close.MouseButton1Down:connect(function()
  717. MainGUI:Destroy()
  718. end)
  719.  
  720. --- Menus ---
  721.  
  722. local Menus = {
  723.     [WayPoints] = WayPointsFrame;
  724.     [ExtrasScreen] = ExtrasFrame;
  725.     [InfoScreen] = InfoFrame;
  726.     [Players] = PlayerFrame;
  727. }
  728. for button,frame in pairs(Menus) do
  729.     button.MouseButton1Click:connect(function()
  730.         if frame.Visible then
  731.             frame.Visible = false
  732.             return
  733.         end
  734.         for k,v in pairs(Menus) do
  735.             v.Visible = v == frame
  736.         end
  737.     end)
  738. end
  739.  
  740. --- Snow Menus Show Hide ---
  741.  
  742. FindTreasures.MouseEnter:connect(function()
  743.     FindTreasuresText1.Visible = true
  744. end)
  745.  
  746. FindTreasures.MouseLeave:connect(function()
  747.     FindTreasuresText1.Visible = false
  748. end)
  749.  
  750. --- WayPoints ---
  751.  
  752. local WayPoints = {
  753. ["Black Bear"] = CFrame.new(-258.1, 5, 299.7),
  754. ["Brown Bear"] = CFrame.new(282, 46, 236),
  755. ["Panda Bear"] = CFrame.new(106.3, 35, 50.1),
  756. ["Polar Bear"] = CFrame.new(-106, 119, -77),
  757. ["Science Bear"] = CFrame.new(267, 103, 20),
  758. ["Bee Shop"] = CFrame.new(-136.8, 4.6, 243.4),
  759. ["Tool Shop"] = CFrame.new(86, 4.6, 294),
  760. ["Tool Shop 2"] = CFrame.new(165, 69, -161),
  761. ["Clover Field"] = CFrame.new(174, 34, 189),
  762. ["Mushroom Field"] = CFrame.new(-258.1, 5, 299.7),
  763. ["Spider Field"] = CFrame.new(-57.2, 20, -5.3),
  764. ["Blue Field"] = CFrame.new(113.7, 4, 101.5),
  765. ["Sunflower Field"] = CFrame.new(-208, 4, 185),
  766. ["StrawBerry Field"] = CFrame.new(-169.3, 20, -3.2),
  767. ["Red Field"] = CFrame.new(-258.1, 5, 299.7),
  768. ["Dandelion Field"] = CFrame.new(-30, 4, 225),
  769. ["BamBoo Field"] = CFrame.new(93, 20, -25),
  770. ["Rose Field"] = CFrame.new(-322, 20, 124),
  771. ["Mushroom Field"] = CFrame.new(-94, 5, 116),
  772. ["Cactus Field"] = CFrame.new(-194, 68, -107),
  773. ["Pumpkin Field"] = CFrame.new(-194, 68, -182),
  774. ["MountainTop Field"] = CFrame.new(76, 176, -181),
  775. ["PineTree Field"] = CFrame.new(-318, 68, -150),
  776. ["Pineapple Field"] = CFrame.new(262, 68, -201),
  777. ["Blue Clubhouse"] = CFrame.new(292, 4, 98),
  778. ["Red Clubhouse"] = CFrame.new(-334, 21, 216),
  779. ["MountainTop Shop"] = CFrame.new(-18, 176, -137),
  780. ["RoyalJelly Shop"] = CFrame.new(-297, 53, 68)
  781. }
  782.  
  783. ReturnToHive.MouseButton1Down:connect(function()
  784.     local player = game:GetService("Players").LocalPlayer
  785.     player.Character:MoveTo(player.SpawnPos.Value.p)
  786.     notify'Teleported to Hive'
  787. end)
  788.  
  789. BlueClubhouse.MouseButton1Down:connect(function()
  790.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  791.     uTorso.CFrame = WayPoints["Blue Clubhouse"]
  792.     notify'Teleported to Blue ClubHouse'
  793. end)
  794.  
  795. RedClubhouse.MouseButton1Down:connect(function()
  796.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  797.     uTorso.CFrame = WayPoints["Red Clubhouse"]
  798.     notify'Teleported to Red ClubHouse'
  799. end)
  800.  
  801. MountainTopShop.MouseButton1Down:connect(function()
  802.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  803.     uTorso.CFrame = WayPoints["MountainTop Shop"]
  804.     notify'Teleported to MountainTop Shop'
  805. end)
  806.  
  807. RoyalJellyShop.MouseButton1Down:connect(function()
  808.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  809.     uTorso.CFrame = WayPoints["RoyalJelly Shop"]
  810.     notify'Teleported to RoyalJelly Shop'
  811. end)
  812.  
  813. BlackBear.MouseButton1Down:connect(function()
  814.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  815.     uTorso.CFrame = WayPoints["Black Bear"]
  816.     notify'Teleported to Black Bear'
  817. end)
  818.  
  819. BrownBear.MouseButton1Down:connect(function()
  820.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  821.     uTorso.CFrame = WayPoints["Brown Bear"]
  822.     notify'Teleported to Brown Bear'
  823. end)
  824.  
  825. PandaBear.MouseButton1Down:connect(function()
  826.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  827.     uTorso.CFrame = WayPoints["Panda Bear"]
  828.     notify'Teleported to Panda Bear'
  829. end)
  830.  
  831. PolarBear.MouseButton1Down:connect(function()
  832.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  833.     uTorso.CFrame = WayPoints["Polar Bear"]
  834.     notify'Teleported to Polar Bear'
  835. end)
  836.  
  837. ScienceBear.MouseButton1Down:connect(function()
  838.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  839.     uTorso.CFrame = WayPoints["Science Bear"]
  840.     notify'Teleported to Science Bear'
  841. end)
  842.  
  843. BeeShop.MouseButton1Down:connect(function()
  844.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  845.     uTorso.CFrame = WayPoints["Bee Shop"]
  846.     notify'Teleported to Bee Shop'
  847. end)
  848.  
  849. TPShop.MouseButton1Down:connect(function()
  850.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  851.     uTorso.CFrame = WayPoints["Tool Shop"]
  852.     notify'Teleported to Basic Tool Shop'
  853. end)
  854.  
  855. TPShop2.MouseButton1Down:connect(function()
  856.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  857.     uTorso.CFrame = WayPoints["Tool Shop 2"]
  858.     notify'Teleported to Advanced Tool Shop'
  859. end)
  860.  
  861. MushRoomField.MouseButton1Down:connect(function()
  862.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  863.     uTorso.CFrame = WayPoints["Mushroom Field"]
  864.     notify'Teleported to Mushroom Field'
  865. end)
  866.  
  867. StrawBerryField.MouseButton1Down:connect(function()
  868.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  869.     uTorso.CFrame = WayPoints["StrawBerry Field"]
  870.     notify'Teleported to StrawBerry Field'
  871. end)
  872.  
  873. CloverField.MouseButton1Down:connect(function()
  874.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  875.     uTorso.CFrame = WayPoints["Clover Field"]
  876.     notify'Teleported to Clover Field'
  877. end)
  878.  
  879. SpiderField.MouseButton1Down:connect(function()
  880.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  881.     uTorso.CFrame = WayPoints["Spider Field"]
  882.     notify'Teleported to Spider Field'
  883. end)
  884.  
  885. BlueField.MouseButton1Down:connect(function()
  886.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  887.     uTorso.CFrame = WayPoints["Blue Field"]
  888.     notify'Teleported to Blue Field'
  889. end)
  890.  
  891. SunflowerField.MouseButton1Down:connect(function()
  892.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  893.     uTorso.CFrame = WayPoints["Sunflower Field"]
  894.     notify'Teleported to Sunflower Field'
  895. end)
  896.  
  897. DandelionField.MouseButton1Down:connect(function()
  898.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  899.     uTorso.CFrame = WayPoints["Dandelion Field"]
  900.     notify'Teleported to Dandelion Field'
  901. end)
  902.  
  903. BamBooField.MouseButton1Down:connect(function()
  904.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  905.     uTorso.CFrame = WayPoints["BamBoo Field"]
  906.     notify'Teleported to BamBoo Field'
  907. end)
  908.  
  909. RoseField.MouseButton1Down:connect(function()
  910.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  911.     uTorso.CFrame = WayPoints["Rose Field"]
  912.     notify'Teleported to Rose Field'
  913. end)
  914.  
  915. CactusField.MouseButton1Down:connect(function()
  916.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  917.     uTorso.CFrame = WayPoints["Cactus Field"]
  918.     notify'Teleported to BamBoo Field'
  919. end)
  920.  
  921. PumpkinField.MouseButton1Down:connect(function()
  922.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  923.     uTorso.CFrame = WayPoints["Pumpkin Field"]
  924.     notify'Teleported to BamBoo Field'
  925. end)
  926.  
  927. PineTreeField.MouseButton1Down:connect(function()
  928.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  929.     uTorso.CFrame = WayPoints["PineTree Field"]
  930.     notify'Teleported to BamBoo Field'
  931. end)
  932.  
  933. MountainTopField.MouseButton1Down:connect(function()
  934.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  935.     uTorso.CFrame = WayPoints["MountainTop Field"]
  936.     notify'Teleported to Mountain Top Field'
  937. end)
  938.  
  939. PineappleField.MouseButton1Down:connect(function()
  940.     local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  941.     uTorso.CFrame = WayPoints["Pineapple Field"]
  942.     notify'Teleported to Pineapple Field'
  943. end)
  944.  
  945. -- Show Location --
  946.  
  947. spawn (function()
  948.     while true do
  949.         function round(num, numDecimalPlaces)
  950.             local mult = 10^(numDecimalPlaces or 0)
  951.             return math.floor(num * mult + 0.5) / mult
  952.         end
  953.         LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  954.         LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  955.         LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  956.         ShowLocation.Text = "Coords: "..LocationX..", "..LocationY..", "..LocationZ
  957.         wait(0.5)
  958.     end
  959. end)
  960.  
  961. SetLocation.MouseButton1Down:connect(function()
  962.     function round(num, numDecimalPlaces)
  963.         local mult = 10^(numDecimalPlaces or 0)
  964.         return math.floor(num * mult + 0.5) / mult
  965.     end
  966.     setlocationx = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  967.     setlocationy = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  968.     setlocationz = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  969.     print("Set Custom Location: "..setlocationx..", "..setlocationy..", "..setlocationz)
  970.     SetLocation.Text = setlocationx..","..setlocationy..","..setlocationz
  971.     CustomLocationSet = true
  972. end)
  973.  
  974. --- TP to custom location ---
  975.  
  976. TPLocation.MouseButton1Down:connect(function()
  977.     if CustomLocationSet == true then
  978.         local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  979.         uTorso.CFrame = CFrame.new(setlocationx, setlocationy, setlocationz)
  980.     end
  981. end)
  982.  
  983. --- Player Teleport ---
  984.    
  985. local buttons = {
  986.     Player1,
  987.     Player2,
  988.     Player3,
  989.     Player4,
  990.     Player5
  991. }
  992. for i, v in pairs(game.Players:GetChildren()) do
  993.     buttons[i].Text = v.Name
  994.     buttons[i].Visible = true
  995. end
  996. game.Players.PlayerRemoving:connect(function()
  997.     for i, v in pairs(game.Players:GetChildren()) do
  998.         buttons[i].Text = v.Name
  999.         buttons[i].Visible = true
  1000.     end
  1001. end)
  1002. game.Players.PlayerAdded:connect(function()
  1003.     for i, v in pairs(game.Players:GetChildren()) do
  1004.         buttons[i].Text = v.Name
  1005.         buttons[i].Visible = true
  1006.     end
  1007. end)
  1008.    
  1009.     Player1.MouseButton1Down:connect(function()
  1010.       PlyrSel.Text = Player1.Text
  1011.     end)
  1012.     Player2.MouseButton1Down:connect(function()
  1013.       PlyrSel.Text = Player2.Text
  1014.     end)
  1015.     Player3.MouseButton1Down:connect(function()
  1016.       PlyrSel.Text = Player3.Text
  1017.     end)
  1018.     Player4.MouseButton1Down:connect(function()
  1019.       PlyrSel.Text = Player4.Text
  1020.     end)
  1021.     Player5.MouseButton1Down:connect(function()
  1022.       PlyrSel.Text = Player5.Text
  1023.     end)
  1024.    
  1025.     TpPlayer.MouseButton1Down:connect(function()
  1026.       if PlyrSel.Text == "SELECT A PLAYER" then
  1027.         warn("No Player Selected")
  1028.       else
  1029.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  1030.       end
  1031.     end)
  1032.  
  1033. -- Find Hidden Treasures --
  1034.  
  1035. FindTreasures.MouseButton1Down:connect(function()
  1036.     local player = game:GetService("Players").LocalPlayer
  1037.     local function collecttreasure(treasure)
  1038.         for i,v in ipairs(treasure:GetChildren()) do
  1039.             if v.Parent then
  1040.                 player.Character:MoveTo(v.Position)
  1041.             end
  1042.         wait(1)
  1043.         end
  1044.     end
  1045.     collecttreasure(workspace.TreasureCollectibles)
  1046.     wait(1)
  1047.     player.Character:MoveTo(player.SpawnPos.Value.p)
  1048. end)
  1049.  
  1050. --- NoClip ---
  1051.  
  1052. noclip = false
  1053. game:GetService('RunService').Stepped:connect(function()
  1054. if noclip then
  1055. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1056. end
  1057. end)
  1058. NoClip.MouseButton1Down:connect(function()
  1059. noclip = not noclip
  1060. if NoClip.Text == "Enable NoClip" then
  1061.     NoClip.Text = "Disable NoClip"
  1062.     NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1063. else
  1064.     NoClip.Text = "Enable NoClip"
  1065.     NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1066. end
  1067. end)
  1068.  
  1069. --- TP Tool ---
  1070.  
  1071. TPTool.MouseButton1Down:connect(function()
  1072.     local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  1073.     Tele.RequiresHandle = false
  1074.     Tele.RobloxLocked = true
  1075.     Tele.Name = "TPTool"
  1076.     Tele.ToolTip = "Teleport Tool"
  1077.     Tele.Equipped:connect(function(Mouse)
  1078.         Mouse.Button1Down:connect(function()
  1079.             if Mouse.Target then
  1080.                 game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  1081.             end
  1082.         end)
  1083.     end)
  1084.     notify'TP Tool added to your Backpack'
  1085.  
  1086. end)
  1087.  
  1088. --- Pollen Farm ---
  1089.  
  1090. PollenFarm.MouseButton1Click:connect(function()
  1091.     if PollenFarmActive ~= true then
  1092.         PollenFarmActive = true
  1093.         PollenFarm.Text = "Stop Farming"
  1094.         PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1095.         if PollenFarmActive then
  1096.             local player = game:GetService("Players").LocalPlayer
  1097.             local currp
  1098.             workspace.Collectibles.ChildAdded:Connect(function(part)
  1099.                 wait(0.5)
  1100.                 if currp and (part.Position-currp).magnitude < 50 then
  1101.                     player.Character:MoveTo(part.Position)
  1102.                     wait(0.3)
  1103.                     player.Character:MoveTo(currp)
  1104.                 end
  1105.             end)
  1106.             local pollenLbl = player.Character:FindFirstChild("ProgressLabel",true)
  1107.             if not pollenLbl then
  1108.                 error("Backpack not found")
  1109.             end
  1110.             local maxpollen = tonumber(pollenLbl.Text:match("%d+$"))
  1111.             local pollenTool = player.Character:FindFirstChildOfClass("Tool") or player.Backpack:FindFirstChildOfClass("Tool")
  1112.             if pollenTool==nil or pollenTool:FindFirstChild("ClickEvent")==nil then
  1113.                 error("Tool not found")
  1114.             end
  1115.  
  1116.             local 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)}
  1117.             local posIndex=0
  1118.             while PollenFarmActive do
  1119.                 --collect pollen
  1120.                 pollenTool.Parent = player.Character
  1121.                 wait(0.1)
  1122.                 while PollenFarmActive and player.leaderstats.Pollen.Value<maxpollen do
  1123.                     posIndex=posIndex+1
  1124.                     if posIndex>#fieldpos then posIndex=1 end
  1125.                     for rot=1,4 do
  1126.                         if not PollenFarmActive then break end
  1127.                         local angle = CFrame.Angles(0,math.pi*.5*rot,0)
  1128.                         currp = fieldpos[posIndex]+angle.lookVector*4
  1129.                         player.Character.HumanoidRootPart.CFrame=CFrame.new(currp)*angle
  1130.                         for i=1,20 do
  1131.                             if not PollenFarmActive then break end
  1132.                             wait(0.1)
  1133.                             pollenTool.ClickEvent:FireServer(currp)
  1134.                         end
  1135.                         if player.leaderstats.Pollen.Value+1>maxpollen then break end
  1136.                     end
  1137.                 end
  1138.                 --turn to honey
  1139.                 currp=nil
  1140.                 player.Character:MoveTo(player.SpawnPos.Value.p)
  1141.                 wait(0.5)
  1142.                 game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  1143.                 repeat wait(0.5) until player.leaderstats.Pollen.Value<1
  1144.             end
  1145.         end
  1146.     else
  1147.         PollenFarmActive = false
  1148.         notify'Pollen Farming Ended'
  1149.         PollenFarm.Text = "Farm Pollen"
  1150.         PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1151.         local player = game:GetService("Players").LocalPlayer
  1152.         currp=nil
  1153.         player.Character:MoveTo(player.SpawnPos.Value.p)
  1154.     end
  1155. end)
  1156.  
  1157. -- Auto Dig --
  1158.  
  1159. AutoDig.MouseButton1Click:connect(function()
  1160.     if AutoDigActive ~= true then
  1161.         AutoDigActive = true
  1162.         AutoDig.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1163.         if AutoDigActive then
  1164.             local player = game:GetService("Players").LocalPlayer
  1165.             local pollenTool = player.Character:FindFirstChildOfClass("Tool") or player.Backpack:FindFirstChildOfClass("Tool")
  1166.             if pollenTool==nil or pollenTool:FindFirstChild("ClickEvent")==nil then
  1167.                 error("Tool not found")
  1168.             end
  1169.             pollenTool.Parent = player.Character
  1170.             while AutoDigActive do
  1171.                 wait(0.1)
  1172.                 pollenTool.ClickEvent:FireServer(CFrame.new())
  1173.             end
  1174.         end
  1175.     else
  1176.         AutoDigActive = false
  1177.         notify'Auto Dig Stopped'
  1178.         AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1179.     end
  1180. end)
  1181.  
  1182. --- ReJoin Server ---
  1183.  
  1184. ReJoinServer.MouseButton1Down:connect(function()
  1185.     local placeId = 1537690962
  1186.     game:GetService("TeleportService"):Teleport(placeId)
  1187. end)
  1188.  
  1189. --- End ---
Add Comment
Please, Sign In to add comment