roxpli

Bee Swarm Gui

Nov 6th, 2020
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 60.94 KB | None | 0 0
  1.  
  2. AutoDigActive = false
  3. PollenFarmActive = false
  4. Field1AFActive = false
  5. Field2AFActive = false
  6. Field3AFActive = false
  7. Field4AFActive = false
  8. Field5AFActive = false
  9. Field6AFActive = false
  10. Field7AFActive = false
  11. Field8AFActive = false
  12. Field9AFActive = false
  13. Field10AFActive = false
  14. Field11AFActive = false
  15. Field12AFActive = false
  16. Field13AFActive = false
  17. Field14AFActive = false
  18.  
  19. -- Objects
  20.  
  21. local MainGUI = Instance.new("ScreenGui")
  22. local MainFrame = Instance.new("Frame")
  23. local Close = Instance.new("TextButton")
  24. local WayPoints = Instance.new("TextButton")
  25. local WayPointsFrame = Instance.new("Frame")
  26. local ShowLocation = Instance.new("TextLabel")
  27. local SetLocation = Instance.new("TextButton")
  28. local TPLocation = Instance.new("TextButton")
  29. local TPShop = Instance.new("TextButton")
  30. local ReturnToHive = Instance.new("TextButton")
  31. local TPShop2 = Instance.new("TextButton")
  32. local BeeShop = Instance.new("TextButton")
  33. local BlackBear = Instance.new("TextButton")
  34. local BrownBear = Instance.new("TextButton")
  35. local PandaBear = Instance.new("TextButton")
  36. local PolarBear = Instance.new("TextButton")
  37. local ScienceBear = Instance.new("TextButton")
  38. local StrawBerryField = Instance.new("TextButton")
  39. local PumpkinField = Instance.new("TextButton")
  40. local SunflowerField = Instance.new("TextButton")
  41. local CloverField = Instance.new("TextButton")
  42. local SpiderField = Instance.new("TextButton")
  43. local MushRoomField = Instance.new("TextButton")
  44. local BamBooField = Instance.new("TextButton")
  45. local DandelionField = Instance.new("TextButton")
  46. local PineappleField = Instance.new("TextButton")
  47. local BlueField = Instance.new("TextButton")
  48. local RoseField = Instance.new("TextButton")
  49. local CactusField = Instance.new("TextButton")
  50. local PineTreeField = Instance.new("TextButton")
  51. local MountainTopField = Instance.new("TextButton")
  52. local BlueClubhouse = Instance.new("TextButton")
  53. local RedClubhouse = Instance.new("TextButton")
  54. local MountainTopShop = Instance.new("TextButton")
  55. local RoyalJellyShop = Instance.new("TextButton")
  56. local Field1AF = Instance.new("TextButton")
  57. local Field2AF = Instance.new("TextButton")
  58. local Field3AF = Instance.new("TextButton")
  59. local Field4AF = Instance.new("TextButton")
  60. local Field5AF = Instance.new("TextButton")
  61. local Field6AF = Instance.new("TextButton")
  62. local Field7AF = Instance.new("TextButton")
  63. local Field8AF = Instance.new("TextButton")
  64. local Field9AF = Instance.new("TextButton")
  65. local Field10AF = Instance.new("TextButton")
  66. local Field11AF = Instance.new("TextButton")
  67. local Field12AF = Instance.new("TextButton")
  68. local Field13AF = Instance.new("TextButton")
  69. local Field14AF = Instance.new("TextButton")
  70. local Players = Instance.new("TextButton")
  71. local PlayerFrame = Instance.new("Frame")
  72. local PlayerList = Instance.new("Frame")
  73. local PlayerListBox = Instance.new("Frame")
  74. local PlyrSel = Instance.new("TextLabel")
  75. local Player1 = Instance.new("TextButton")
  76. local Player2 = Instance.new("TextButton")
  77. local Player3 = Instance.new("TextButton")
  78. local Player4 = Instance.new("TextButton")
  79. local Player5 = Instance.new("TextButton")
  80. local TpPlayer = Instance.new("TextButton")
  81. local FindTreasures = Instance.new("TextButton")
  82. local FindTreasuresText1 = Instance.new("TextLabel")
  83. local ExtrasScreen = Instance.new("TextButton")
  84. local ExtrasFrame = Instance.new("Frame")
  85. local InfoScreen = Instance.new("TextButton")
  86. local InfoFrame = Instance.new("Frame")
  87. local TPTool = Instance.new("TextButton")
  88. local ReJoinServer = Instance.new("TextButton")
  89. local NoClip = Instance.new("TextButton")
  90. local InfoText1 = Instance.new("TextLabel")
  91. local PollenFarm = Instance.new("TextButton")
  92. local AutoDig = Instance.new("TextButton")
  93.  
  94. -- Properties
  95.  
  96. MainGUI.Name = "MainGUI"
  97. MainGUI.Parent = game.CoreGui
  98. local MainCORE = game.CoreGui["MainGUI"]
  99.  
  100. MainFrame.Name = "MainFrame"
  101. MainFrame.Parent = MainGUI
  102. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  103. MainFrame.BackgroundTransparency = 0.5
  104. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  105. MainFrame.Position = UDim2.new(0.5, -299, 0, -32)
  106. MainFrame.Size = UDim2.new(0, 598, 0, 30)
  107.  
  108. Close.Name = "Close"
  109. Close.Parent = MainFrame
  110. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  111. Close.BorderColor3 = Color3.new(0, 1, 0)
  112. Close.Position = UDim2.new(0, 5, 0, 5)
  113. Close.Size = UDim2.new(0, 20, 0, 20)
  114. Close.Font = Enum.Font.Fantasy
  115. Close.Text = "X"
  116. Close.TextColor3 = Color3.new(1, 0, 0)
  117. Close.TextSize = 17
  118. Close.TextScaled = true
  119. Close.TextWrapped = true
  120.  
  121. WayPoints.Name = "WayPoints"
  122. WayPoints.Parent = MainFrame
  123. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  124. WayPoints.BorderColor3 = Color3.new(0, 1, 0)
  125. WayPoints.Position = UDim2.new(0, 30, 0, 5)
  126. WayPoints.Size = UDim2.new(0, 83, 0, 20)
  127. WayPoints.BackgroundTransparency = 0
  128. WayPoints.Font = Enum.Font.Fantasy
  129. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  130. WayPoints.Text = "WayPoints"
  131. WayPoints.TextSize = 17
  132. WayPoints.TextWrapped = true
  133.  
  134. WayPointsFrame.Name = "WayPointsFrame"
  135. WayPointsFrame.Parent = MainFrame
  136. WayPointsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  137. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  138. WayPointsFrame.BackgroundTransparency = 0.4
  139. WayPointsFrame.Position = UDim2.new(0, 0, 0, 34)
  140. WayPointsFrame.Size = UDim2.new(0, 415, 0, 380)
  141. WayPointsFrame.Visible = false
  142.  
  143. ShowLocation.Name = "ShowLocation"
  144. ShowLocation.Parent = WayPointsFrame
  145. ShowLocation.BackgroundColor3 = Color3.new(1, 1, 1)
  146. ShowLocation.TextColor3 = Color3.new(0, 0, 0)
  147. ShowLocation.BorderColor3 = Color3.new(0, 0, 0)
  148. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  149. ShowLocation.Size = UDim2.new(0, 180, 0, 20)
  150. ShowLocation.Font = Enum.Font.Fantasy
  151. ShowLocation.Text = "Current Location"
  152. ShowLocation.TextWrapped = true
  153. ShowLocation.TextSize = 15
  154.  
  155. SetLocation.Name = "SetLocation"
  156. SetLocation.Parent = WayPointsFrame
  157. SetLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  158. SetLocation.TextColor3 = Color3.new(1, 1, 1)
  159. SetLocation.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  160. SetLocation.Position = UDim2.new(0, 190, 0, 5)
  161. SetLocation.Size = UDim2.new(0, 150, 0, 20)
  162. SetLocation.Font = Enum.Font.Fantasy
  163. SetLocation.Text = "Set Location"
  164. SetLocation.TextWrapped = true
  165. SetLocation.TextSize = 16
  166.  
  167. TPLocation.Name = "TPLocation"
  168. TPLocation.Parent = WayPointsFrame
  169. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  170. TPLocation.TextColor3 = Color3.new(1, 1, 1)
  171. TPLocation.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  172. TPLocation.Position = UDim2.new(0, 345, 0, 5)
  173. TPLocation.Size = UDim2.new(0, 65, 0, 20)
  174. TPLocation.Font = Enum.Font.Fantasy
  175. TPLocation.Text = "Move to"
  176. TPLocation.TextWrapped = true
  177. TPLocation.TextSize = 16
  178.  
  179. ReturnToHive.Name = "ReturnToHive"
  180. ReturnToHive.Parent = WayPointsFrame
  181. ReturnToHive.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  182. ReturnToHive.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  183. ReturnToHive.Position = UDim2.new(0, 5, 0, 30)
  184. ReturnToHive.Size = UDim2.new(0, 180, 0, 20)
  185. ReturnToHive.TextColor3 = Color3.new(1, 1, 1)
  186. ReturnToHive.Font = Enum.Font.Fantasy
  187. ReturnToHive.Text = "Return To Hive"
  188. ReturnToHive.TextSize = 16
  189.  
  190. BlackBear.Name = "BlackBear"
  191. BlackBear.Parent = WayPointsFrame
  192. BlackBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  193. BlackBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  194. BlackBear.Position = UDim2.new(0, 5, 0, 55)
  195. BlackBear.Size = UDim2.new(0, 180, 0, 20)
  196. BlackBear.TextColor3 = Color3.new(1, 1, 1)
  197. BlackBear.Font = Enum.Font.Fantasy
  198. BlackBear.Text = "Black Bear"
  199. BlackBear.TextSize = 16
  200.  
  201. BrownBear.Name = "BrownBear"
  202. BrownBear.Parent = WayPointsFrame
  203. BrownBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  204. BrownBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  205. BrownBear.Position = UDim2.new(0, 5, 0, 80)
  206. BrownBear.Size = UDim2.new(0, 180, 0, 20)
  207. BrownBear.TextColor3 = Color3.new(1, 1, 1)
  208. BrownBear.Font = Enum.Font.Fantasy
  209. BrownBear.Text = "Brown Bear"
  210. BrownBear.TextSize = 16
  211.  
  212. PandaBear.Name = "PandaBear"
  213. PandaBear.Parent = WayPointsFrame
  214. PandaBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  215. PandaBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  216. PandaBear.Position = UDim2.new(0, 5, 0, 105)
  217. PandaBear.Size = UDim2.new(0, 180, 0, 20)
  218. PandaBear.TextColor3 = Color3.new(1, 1, 1)
  219. PandaBear.Font = Enum.Font.Fantasy
  220. PandaBear.Text = "Panda Bear"
  221. PandaBear.TextSize = 16
  222.  
  223. PolarBear.Name = "PolarBear"
  224. PolarBear.Parent = WayPointsFrame
  225. PolarBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  226. PolarBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  227. PolarBear.Position = UDim2.new(0, 5, 0, 130)
  228. PolarBear.Size = UDim2.new(0, 180, 0, 20)
  229. PolarBear.TextColor3 = Color3.new(1, 1, 1)
  230. PolarBear.Font = Enum.Font.Fantasy
  231. PolarBear.Text = "Polar Bear"
  232. PolarBear.TextSize = 16
  233.  
  234. ScienceBear.Name = "ScienceBear"
  235. ScienceBear.Parent = WayPointsFrame
  236. ScienceBear.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  237. ScienceBear.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  238. ScienceBear.Position = UDim2.new(0, 5, 0, 155)
  239. ScienceBear.Size = UDim2.new(0, 180, 0, 20)
  240. ScienceBear.TextColor3 = Color3.new(1, 1, 1)
  241. ScienceBear.Font = Enum.Font.Fantasy
  242. ScienceBear.Text = "Science Bear"
  243. ScienceBear.TextSize = 16
  244.  
  245. BeeShop.Name = "BeeShop"
  246. BeeShop.Parent = WayPointsFrame
  247. BeeShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  248. BeeShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  249. BeeShop.Position = UDim2.new(0, 5, 0, 180)
  250. BeeShop.Size = UDim2.new(0, 180, 0, 20)
  251. BeeShop.TextColor3 = Color3.new(1, 1, 1)
  252. BeeShop.Font = Enum.Font.Fantasy
  253. BeeShop.Text = "Bees Shop"
  254. BeeShop.TextSize = 16
  255.  
  256. TPShop.Name = "TPShop"
  257. TPShop.Parent = WayPointsFrame
  258. TPShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  259. TPShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  260. TPShop.Position = UDim2.new(0, 5, 0, 205)
  261. TPShop.Size = UDim2.new(0, 180, 0, 20)
  262. TPShop.TextColor3 = Color3.new(1, 1, 1)
  263. TPShop.Font = Enum.Font.Fantasy
  264. TPShop.Text = "Basic Tools Shop"
  265. TPShop.TextSize = 16
  266.  
  267. TPShop2.Name = "TPShop2"
  268. TPShop2.Parent = WayPointsFrame
  269. TPShop2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  270. TPShop2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  271. TPShop2.Position = UDim2.new(0, 5, 0, 230)
  272. TPShop2.Size = UDim2.new(0, 180, 0, 20)
  273. TPShop2.TextColor3 = Color3.new(1, 1, 1)
  274. TPShop2.Font = Enum.Font.Fantasy
  275. TPShop2.Text = "Advanced Tools Shop"
  276. TPShop2.TextSize = 16
  277.  
  278. BlueClubhouse.Name = "BlueClubhouse"
  279. BlueClubhouse.Parent = WayPointsFrame
  280. BlueClubhouse.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  281. BlueClubhouse.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  282. BlueClubhouse.Position = UDim2.new(0, 5, 0, 255)
  283. BlueClubhouse.Size = UDim2.new(0, 180, 0, 20)
  284. BlueClubhouse.TextColor3 = Color3.new(1, 1, 1)
  285. BlueClubhouse.Font = Enum.Font.Fantasy
  286. BlueClubhouse.Text = "Blue Clubhouse"
  287. BlueClubhouse.TextSize = 16
  288.  
  289. RedClubhouse.Name = "RedClubhouse"
  290. RedClubhouse.Parent = WayPointsFrame
  291. RedClubhouse.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  292. RedClubhouse.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  293. RedClubhouse.Position = UDim2.new(0, 5, 0, 280)
  294. RedClubhouse.Size = UDim2.new(0, 180, 0, 20)
  295. RedClubhouse.TextColor3 = Color3.new(1, 1, 1)
  296. RedClubhouse.Font = Enum.Font.Fantasy
  297. RedClubhouse.Text = "Red Clubhouse"
  298. RedClubhouse.TextSize = 16
  299.  
  300. RoyalJellyShop.Name = "RoyalJellyShop"
  301. RoyalJellyShop.Parent = WayPointsFrame
  302. RoyalJellyShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  303. RoyalJellyShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  304. RoyalJellyShop.Position = UDim2.new(0, 5, 0, 305)
  305. RoyalJellyShop.Size = UDim2.new(0, 180, 0, 20)
  306. RoyalJellyShop.TextColor3 = Color3.new(1, 1, 1)
  307. RoyalJellyShop.Font = Enum.Font.Fantasy
  308. RoyalJellyShop.Text = "Royal Jelly Shop"
  309. RoyalJellyShop.TextSize = 16
  310.  
  311. MountainTopShop.Name = "MountainTopShop"
  312. MountainTopShop.Parent = WayPointsFrame
  313. MountainTopShop.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  314. MountainTopShop.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  315. MountainTopShop.Position = UDim2.new(0, 5, 0, 330)
  316. MountainTopShop.Size = UDim2.new(0, 180, 0, 20)
  317. MountainTopShop.TextColor3 = Color3.new(1, 1, 1)
  318. MountainTopShop.Font = Enum.Font.Fantasy
  319. MountainTopShop.Text = "Mountain Top Shop"
  320. MountainTopShop.TextSize = 16
  321.  
  322. SunflowerField.Name = "SunflowerField"
  323. SunflowerField.Parent = WayPointsFrame
  324. SunflowerField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  325. SunflowerField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  326. SunflowerField.Position = UDim2.new(0, 190, 0, 30)
  327. SunflowerField.Size = UDim2.new(0, 180, 0, 20)
  328. SunflowerField.TextColor3 = Color3.new(1, 1, 1)
  329. SunflowerField.Font = Enum.Font.Fantasy
  330. SunflowerField.Text = "Sunflower Field"
  331. SunflowerField.TextSize = 16
  332.  
  333. MushRoomField.Name = "MushRoomField"
  334. MushRoomField.Parent = WayPointsFrame
  335. MushRoomField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  336. MushRoomField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  337. MushRoomField.Position = UDim2.new(0, 190, 0, 55)
  338. MushRoomField.Size = UDim2.new(0, 180, 0, 20)
  339. MushRoomField.TextColor3 = Color3.new(1, 1, 1)
  340. MushRoomField.Font = Enum.Font.Fantasy
  341. MushRoomField.Text = "MushRoom Field"
  342. MushRoomField.TextSize = 16
  343.  
  344. DandelionField.Name = "DandelionField"
  345. DandelionField.Parent = WayPointsFrame
  346. DandelionField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  347. DandelionField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  348. DandelionField.Position = UDim2.new(0, 190, 0, 80)
  349. DandelionField.Size = UDim2.new(0, 180, 0, 20)
  350. DandelionField.TextColor3 = Color3.new(1, 1, 1)
  351. DandelionField.Font = Enum.Font.Fantasy
  352. DandelionField.Text = "Dandelion Field"
  353. DandelionField.TextSize = 16
  354.  
  355. BlueField.Name = "BlueField"
  356. BlueField.Parent = WayPointsFrame
  357. BlueField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  358. BlueField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  359. BlueField.Position = UDim2.new(0, 190, 0, 105)
  360. BlueField.Size = UDim2.new(0, 180, 0, 20)
  361. BlueField.TextColor3 = Color3.new(1, 1, 1)
  362. BlueField.Font = Enum.Font.Fantasy
  363. BlueField.Text = "Blue Flower Field"
  364. BlueField.TextSize = 16
  365.  
  366. CloverField.Name = "CloverField"
  367. CloverField.Parent = WayPointsFrame
  368. CloverField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  369. CloverField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  370. CloverField.Position = UDim2.new(0, 190, 0, 130)
  371. CloverField.Size = UDim2.new(0, 180, 0, 20)
  372. CloverField.TextColor3 = Color3.new(1, 1, 1)
  373. CloverField.Font = Enum.Font.Fantasy
  374. CloverField.Text = "Clover Field"
  375. CloverField.TextSize = 16
  376.  
  377. StrawBerryField.Name = "StrawBerryField"
  378. StrawBerryField.Parent = WayPointsFrame
  379. StrawBerryField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  380. StrawBerryField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  381. StrawBerryField.Position = UDim2.new(0, 190, 0, 155)
  382. StrawBerryField.Size = UDim2.new(0, 180, 0, 20)
  383. StrawBerryField.TextColor3 = Color3.new(1, 1, 1)
  384. StrawBerryField.Font = Enum.Font.Fantasy
  385. StrawBerryField.Text = "StrawBerry Field"
  386. StrawBerryField.TextSize = 16
  387.  
  388. SpiderField.Name = "SpiderField"
  389. SpiderField.Parent = WayPointsFrame
  390. SpiderField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  391. SpiderField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  392. SpiderField.Position = UDim2.new(0, 190, 0, 180)
  393. SpiderField.Size = UDim2.new(0, 180, 0, 20)
  394. SpiderField.TextColor3 = Color3.new(1, 1, 1)
  395. SpiderField.Font = Enum.Font.Fantasy
  396. SpiderField.Text = "Spider Field"
  397. SpiderField.TextSize = 16
  398.  
  399. BamBooField.Name = "BamBooField"
  400. BamBooField.Parent = WayPointsFrame
  401. BamBooField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  402. BamBooField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  403. BamBooField.Position = UDim2.new(0, 190, 0, 205)
  404. BamBooField.Size = UDim2.new(0, 180, 0, 20)
  405. BamBooField.TextColor3 = Color3.new(1, 1, 1)
  406. BamBooField.Font = Enum.Font.Fantasy
  407. BamBooField.Text = "BamBoo Field"
  408. BamBooField.TextSize = 16
  409.  
  410. RoseField.Name = "RoseField"
  411. RoseField.Parent = WayPointsFrame
  412. RoseField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  413. RoseField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  414. RoseField.Position = UDim2.new(0, 190, 0, 230)
  415. RoseField.Size = UDim2.new(0, 180, 0, 20)
  416. RoseField.TextColor3 = Color3.new(1, 1, 1)
  417. RoseField.Font = Enum.Font.Fantasy
  418. RoseField.Text = "Rose Field"
  419. RoseField.TextSize = 16
  420.  
  421. PineTreeField.Name = "PineTreeField"
  422. PineTreeField.Parent = WayPointsFrame
  423. PineTreeField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  424. PineTreeField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  425. PineTreeField.Position = UDim2.new(0, 190, 0, 255)
  426. PineTreeField.Size = UDim2.new(0, 180, 0, 20)
  427. PineTreeField.TextColor3 = Color3.new(1, 1, 1)
  428. PineTreeField.Font = Enum.Font.Fantasy
  429. PineTreeField.Text = "Pine Tree Forest"
  430. PineTreeField.TextSize = 16
  431.  
  432. CactusField.Name = "CactusField"
  433. CactusField.Parent = WayPointsFrame
  434. CactusField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  435. CactusField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  436. CactusField.Position = UDim2.new(0, 190, 0, 280)
  437. CactusField.Size = UDim2.new(0, 180, 0, 20)
  438. CactusField.TextColor3 = Color3.new(1, 1, 1)
  439. CactusField.Font = Enum.Font.Fantasy
  440. CactusField.Text = "Cactus Field"
  441. CactusField.TextSize = 16
  442.  
  443. PumpkinField.Name = "PumpkinField"
  444. PumpkinField.Parent = WayPointsFrame
  445. PumpkinField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  446. PumpkinField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  447. PumpkinField.Position = UDim2.new(0, 190, 0, 305)
  448. PumpkinField.Size = UDim2.new(0, 180, 0, 20)
  449. PumpkinField.TextColor3 = Color3.new(1, 1, 1)
  450. PumpkinField.Font = Enum.Font.Fantasy
  451. PumpkinField.Text = "Pumpkin Patch"
  452. PumpkinField.TextSize = 16
  453.  
  454. PineappleField.Name = "PineappleField"
  455. PineappleField.Parent = WayPointsFrame
  456. PineappleField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  457. PineappleField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  458. PineappleField.Position = UDim2.new(0, 190, 0, 330)
  459. PineappleField.Size = UDim2.new(0, 180, 0, 20)
  460. PineappleField.TextColor3 = Color3.new(1, 1, 1)
  461. PineappleField.Font = Enum.Font.Fantasy
  462. PineappleField.Text = "Pineapple Patch"
  463. PineappleField.TextSize = 16
  464.  
  465. MountainTopField.Name = "MountainTopField"
  466. MountainTopField.Parent = WayPointsFrame
  467. MountainTopField.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  468. MountainTopField.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  469. MountainTopField.Position = UDim2.new(0, 190, 0, 355)
  470. MountainTopField.Size = UDim2.new(0, 180, 0, 20)
  471. MountainTopField.TextColor3 = Color3.new(1, 1, 1)
  472. MountainTopField.Font = Enum.Font.Fantasy
  473. MountainTopField.Text = "Mountain Top Field"
  474. MountainTopField.TextSize = 16
  475.  
  476. Field1AF.Name = "Field1AF"
  477. Field1AF.Parent = WayPointsFrame
  478. Field1AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  479. Field1AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  480. Field1AF.Position = UDim2.new(0, 370, 0, 30)
  481. Field1AF.Size = UDim2.new(0, 40, 0, 20)
  482. Field1AF.TextColor3 = Color3.new(1, 1, 1)
  483. Field1AF.Font = Enum.Font.Fantasy
  484. Field1AF.Text = "Farm"
  485. Field1AF.TextSize = 16
  486.  
  487. Field2AF.Name = "Field2AF"
  488. Field2AF.Parent = WayPointsFrame
  489. Field2AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  490. Field2AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  491. Field2AF.Position = UDim2.new(0, 370, 0, 55)
  492. Field2AF.Size = UDim2.new(0, 40, 0, 20)
  493. Field2AF.TextColor3 = Color3.new(1, 1, 1)
  494. Field2AF.Font = Enum.Font.Fantasy
  495. Field2AF.Text = "Farm"
  496. Field2AF.TextSize = 16
  497.  
  498. Field3AF.Name = "Field3AF"
  499. Field3AF.Parent = WayPointsFrame
  500. Field3AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  501. Field3AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  502. Field3AF.Position = UDim2.new(0, 370, 0, 80)
  503. Field3AF.Size = UDim2.new(0, 40, 0, 20)
  504. Field3AF.TextColor3 = Color3.new(1, 1, 1)
  505. Field3AF.Font = Enum.Font.Fantasy
  506. Field3AF.Text = "Farm"
  507. Field3AF.TextSize = 16
  508.  
  509. Field4AF.Name = "Field4AF"
  510. Field4AF.Parent = WayPointsFrame
  511. Field4AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  512. Field4AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  513. Field4AF.Position = UDim2.new(0, 370, 0, 105)
  514. Field4AF.Size = UDim2.new(0, 40, 0, 20)
  515. Field4AF.TextColor3 = Color3.new(1, 1, 1)
  516. Field4AF.Font = Enum.Font.Fantasy
  517. Field4AF.Text = "Farm"
  518. Field4AF.TextSize = 16
  519.  
  520. Field5AF.Name = "Field5AF"
  521. Field5AF.Parent = WayPointsFrame
  522. Field5AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  523. Field5AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  524. Field5AF.Position = UDim2.new(0, 370, 0, 130)
  525. Field5AF.Size = UDim2.new(0, 40, 0, 20)
  526. Field5AF.TextColor3 = Color3.new(1, 1, 1)
  527. Field5AF.Font = Enum.Font.Fantasy
  528. Field5AF.Text = "Farm"
  529. Field5AF.TextSize = 16
  530.  
  531. Field6AF.Name = "Field6AF"
  532. Field6AF.Parent = WayPointsFrame
  533. Field6AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  534. Field6AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  535. Field6AF.Position = UDim2.new(0, 370, 0, 155)
  536. Field6AF.Size = UDim2.new(0, 40, 0, 20)
  537. Field6AF.TextColor3 = Color3.new(1, 1, 1)
  538. Field6AF.Font = Enum.Font.Fantasy
  539. Field6AF.Text = "Farm"
  540. Field6AF.TextSize = 16
  541.  
  542. Field7AF.Name = "Field7AF"
  543. Field7AF.Parent = WayPointsFrame
  544. Field7AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  545. Field7AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  546. Field7AF.Position = UDim2.new(0, 370, 0, 180)
  547. Field7AF.Size = UDim2.new(0, 40, 0, 20)
  548. Field7AF.TextColor3 = Color3.new(1, 1, 1)
  549. Field7AF.Font = Enum.Font.Fantasy
  550. Field7AF.Text = "Farm"
  551. Field7AF.TextSize = 16
  552.  
  553. Field8AF.Name = "Field8AF"
  554. Field8AF.Parent = WayPointsFrame
  555. Field8AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  556. Field8AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  557. Field8AF.Position = UDim2.new(0, 370, 0, 205)
  558. Field8AF.Size = UDim2.new(0, 40, 0, 20)
  559. Field8AF.TextColor3 = Color3.new(1, 1, 1)
  560. Field8AF.Font = Enum.Font.Fantasy
  561. Field8AF.Text = "Farm"
  562. Field8AF.TextSize = 16
  563.  
  564. Field9AF.Name = "Field9AF"
  565. Field9AF.Parent = WayPointsFrame
  566. Field9AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  567. Field9AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  568. Field9AF.Position = UDim2.new(0, 370, 0, 230)
  569. Field9AF.Size = UDim2.new(0, 40, 0, 20)
  570. Field9AF.TextColor3 = Color3.new(1, 1, 1)
  571. Field9AF.Font = Enum.Font.Fantasy
  572. Field9AF.Text = "Farm"
  573. Field9AF.TextSize = 16
  574.  
  575. Field10AF.Name = "Field10AF"
  576. Field10AF.Parent = WayPointsFrame
  577. Field10AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  578. Field10AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  579. Field10AF.Position = UDim2.new(0, 370, 0, 255)
  580. Field10AF.Size = UDim2.new(0, 40, 0, 20)
  581. Field10AF.TextColor3 = Color3.new(1, 1, 1)
  582. Field10AF.Font = Enum.Font.Fantasy
  583. Field10AF.Text = "Farm"
  584. Field10AF.TextSize = 16
  585.  
  586. Field11AF.Name = "Field11AF"
  587. Field11AF.Parent = WayPointsFrame
  588. Field11AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  589. Field11AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  590. Field11AF.Position = UDim2.new(0, 370, 0, 280)
  591. Field11AF.Size = UDim2.new(0, 40, 0, 20)
  592. Field11AF.TextColor3 = Color3.new(1, 1, 1)
  593. Field11AF.Font = Enum.Font.Fantasy
  594. Field11AF.Text = "Farm"
  595. Field11AF.TextSize = 16
  596.  
  597. Field12AF.Name = "Field12AF"
  598. Field12AF.Parent = WayPointsFrame
  599. Field12AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  600. Field12AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  601. Field12AF.Position = UDim2.new(0, 370, 0, 305)
  602. Field12AF.Size = UDim2.new(0, 40, 0, 20)
  603. Field12AF.TextColor3 = Color3.new(1, 1, 1)
  604. Field12AF.Font = Enum.Font.Fantasy
  605. Field12AF.Text = "Farm"
  606. Field12AF.TextSize = 16
  607.  
  608. Field13AF.Name = "Field13AF"
  609. Field13AF.Parent = WayPointsFrame
  610. Field13AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  611. Field13AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  612. Field13AF.Position = UDim2.new(0, 370, 0, 330)
  613. Field13AF.Size = UDim2.new(0, 40, 0, 20)
  614. Field13AF.TextColor3 = Color3.new(1, 1, 1)
  615. Field13AF.Font = Enum.Font.Fantasy
  616. Field13AF.Text = "Farm"
  617. Field13AF.TextSize = 16
  618.  
  619. Field14AF.Name = "Field14AF"
  620. Field14AF.Parent = WayPointsFrame
  621. Field14AF.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  622. Field14AF.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  623. Field14AF.Position = UDim2.new(0, 370, 0, 355)
  624. Field14AF.Size = UDim2.new(0, 40, 0, 20)
  625. Field14AF.TextColor3 = Color3.new(1, 1, 1)
  626. Field14AF.Font = Enum.Font.Fantasy
  627. Field14AF.Text = "Farm"
  628. Field14AF.TextSize = 16
  629.  
  630. Players.Name = "Players"
  631. Players.Parent = MainFrame
  632. Players.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  633. Players.BorderColor3 = Color3.new(0, 1, 0)
  634. Players.Position = UDim2.new(0, 118, 0, 5)
  635. Players.Size = UDim2.new(0, 60, 0, 20)
  636. Players.BackgroundTransparency = 0
  637. Players.Font = Enum.Font.Fantasy
  638. Players.TextColor3 = Color3.new(1, 1, 1)
  639. Players.Text = "Players"
  640. Players.TextSize = 17
  641. Players.TextWrapped = true
  642.  
  643. PlayerFrame.Name = "PlayerFrame"
  644. PlayerFrame.Parent = MainFrame
  645. PlayerFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  646. PlayerFrame.BackgroundTransparency = 0.5
  647. PlayerFrame.BorderColor3 = Color3.new(0, 0, 0)
  648. PlayerFrame.Position = UDim2.new(0, 63, 0, 34)
  649. PlayerFrame.Size = UDim2.new(0, 170, 0, 200)
  650. PlayerFrame.Visible = false
  651.  
  652. PlyrSel.Name = "PlyrSel"
  653. PlyrSel.Parent = PlayerFrame
  654. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  655. PlyrSel.BackgroundTransparency = 0.15
  656. PlyrSel.BorderColor3 = Color3.new(0, 0, 0)
  657. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  658. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  659. PlyrSel.Font = Enum.Font.SourceSans
  660. PlyrSel.Text = "SELECT A PLAYER"
  661. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  662. PlyrSel.TextScaled = true
  663. PlyrSel.TextSize = 17
  664. PlyrSel.TextWrapped = true
  665.  
  666. Player1.Name = "Player1"
  667. Player1.Parent = PlayerFrame
  668. Player1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  669. Player1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  670. Player1.Position = UDim2.new(0, 5, 0, 35)
  671. Player1.Size = UDim2.new(0, 160, 0, 20)
  672. Player1.Font = Enum.Font.Fantasy
  673. Player1.Text = ""
  674. Player1.TextColor3 = Color3.new(1, 1, 1)
  675. Player1.TextSize = 15
  676. Player1.TextWrapped = true
  677.  
  678. Player2.Name = "Player2"
  679. Player2.Parent = PlayerFrame
  680. Player2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  681. Player2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  682. Player2.Position = UDim2.new(0, 5, 0, 60)
  683. Player2.Size = UDim2.new(0, 160, 0, 20)
  684. Player2.Font = Enum.Font.Fantasy
  685. Player2.Text = ""
  686. Player2.TextColor3 = Color3.new(1, 1, 1)
  687. Player2.TextSize = 15
  688. Player2.TextWrapped = true
  689.  
  690. Player3.Name = "Player3"
  691. Player3.Parent = PlayerFrame
  692. Player3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  693. Player3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  694. Player3.Position = UDim2.new(0, 5, 0, 85)
  695. Player3.Size = UDim2.new(0, 160, 0, 20)
  696. Player3.Font = Enum.Font.Fantasy
  697. Player3.Text = ""
  698. Player3.TextColor3 = Color3.new(1, 1, 1)
  699. Player3.TextSize = 15
  700. Player3.TextWrapped = true
  701.  
  702. Player4.Name = "Player4"
  703. Player4.Parent = PlayerFrame
  704. Player4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  705. Player4.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  706. Player4.Position = UDim2.new(0, 5, 0, 110)
  707. Player4.Size = UDim2.new(0, 160, 0, 20)
  708. Player4.Font = Enum.Font.Fantasy
  709. Player4.Text = ""
  710. Player4.TextColor3 = Color3.new(1, 1, 1)
  711. Player4.TextSize = 15
  712. Player4.TextWrapped = true
  713.  
  714. Player5.Name = "Player5"
  715. Player5.Parent = PlayerFrame
  716. Player5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  717. Player5.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  718. Player5.Position = UDim2.new(0, 5, 0, 135)
  719. Player5.Size = UDim2.new(0, 160, 0, 20)
  720. Player5.Font = Enum.Font.Fantasy
  721. Player5.Text = ""
  722. Player5.TextColor3 = Color3.new(1, 1, 1)
  723. Player5.TextSize = 15
  724. Player5.TextWrapped = true
  725.  
  726. TpPlayer.Name = "TpPlayer"
  727. TpPlayer.Parent = PlayerFrame
  728. TpPlayer.BackgroundColor3 = Color3.new(0.18, 0.18, 0.18)
  729. TpPlayer.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  730. TpPlayer.Position = UDim2.new(0, 5, 0, 165)
  731. TpPlayer.Size = UDim2.new(0, 160, 0, 30)
  732. TpPlayer.Font = Enum.Font.Fantasy
  733. TpPlayer.Text = "Teleport to Player"
  734. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  735. TpPlayer.TextWrapped = true
  736. TpPlayer.TextSize = 17
  737.  
  738. PollenFarm.Name = "PollenFarm"
  739. PollenFarm.Parent = MainFrame
  740. PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  741. PollenFarm.BorderColor3 = Color3.new(0, 1, 0)
  742. PollenFarm.Position = UDim2.new(0, 183, 0, 5)
  743. PollenFarm.Size = UDim2.new(0, 100, 0, 20)
  744. PollenFarm.Font = Enum.Font.Fantasy
  745. PollenFarm.TextColor3 = Color3.new(1, 1, 1)
  746. PollenFarm.Text = "Farm Pollen"
  747. PollenFarm.TextSize = 17
  748. PollenFarm.TextWrapped = true
  749.  
  750. AutoDig.Name = "AutoDig"
  751. AutoDig.Parent = MainFrame
  752. AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  753. AutoDig.BorderColor3 = Color3.new(0, 1, 0)
  754. AutoDig.Position = UDim2.new(0, 288, 0, 5)
  755. AutoDig.Size = UDim2.new(0, 70, 0, 20)
  756. AutoDig.Font = Enum.Font.Fantasy
  757. AutoDig.TextColor3 = Color3.new(1, 1, 1)
  758. AutoDig.Text = "Auto Dig"
  759. AutoDig.TextSize = 17
  760. AutoDig.TextWrapped = true
  761.  
  762. FindTreasures.Name = "FindTreasures"
  763. FindTreasures.Parent = MainFrame
  764. FindTreasures.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  765. FindTreasures.BorderColor3 = Color3.new(0, 1, 0)
  766. FindTreasures.Position = UDim2.new(0, 363, 0, 5)
  767. FindTreasures.Size = UDim2.new(0, 130, 0, 20)
  768. FindTreasures.BackgroundTransparency = 0
  769. FindTreasures.Font = Enum.Font.Fantasy
  770. FindTreasures.TextColor3 = Color3.new(1, 1, 1)
  771. FindTreasures.Text = "Collect Treasures"
  772. FindTreasures.TextSize = 17
  773. FindTreasures.TextWrapped = true
  774.  
  775. FindTreasuresText1.Name = "FindTreasuresText1"
  776. FindTreasuresText1.Parent = MainFrame
  777. FindTreasuresText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  778. FindTreasuresText1.BorderColor3 = Color3.new(0, 0, 0)
  779. FindTreasuresText1.BackgroundTransparency = 0.1
  780. FindTreasuresText1.Position = UDim2.new(0, 333, 0, 34)
  781. FindTreasuresText1.Size = UDim2.new(0, 190, 0, 85)
  782. FindTreasuresText1.TextColor3 = Color3.new(1, 1, 1)
  783. FindTreasuresText1.Font = Enum.Font.Fantasy
  784. 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."
  785. FindTreasuresText1.TextSize = 16
  786. FindTreasuresText1.TextWrapped = true
  787. FindTreasuresText1.ZIndex = 6
  788. FindTreasuresText1.Visible = false
  789. FindTreasuresText1.TextYAlignment = Enum.TextYAlignment.Top
  790.  
  791. ExtrasScreen.Name = "ExtrasScreen"
  792. ExtrasScreen.Parent = MainFrame
  793. ExtrasScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  794. ExtrasScreen.BorderColor3 = Color3.new(0, 1, 0)
  795. ExtrasScreen.Position = UDim2.new(0, 498, 0, 5)
  796. ExtrasScreen.Size = UDim2.new(0, 50, 0, 20)
  797. ExtrasScreen.BackgroundTransparency = 0
  798. ExtrasScreen.Font = Enum.Font.Fantasy
  799. ExtrasScreen.TextColor3 = Color3.new(1, 1, 1)
  800. ExtrasScreen.Text = "Extras"
  801. ExtrasScreen.TextSize = 17
  802. ExtrasScreen.TextWrapped = true
  803.  
  804. ExtrasFrame.Name = "ExtrasFrame"
  805. ExtrasFrame.Parent = MainFrame
  806. ExtrasFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  807. ExtrasFrame.BorderColor3 = Color3.new(0, 0, 0)
  808. ExtrasFrame.BackgroundTransparency = 0.5
  809. ExtrasFrame.Position = UDim2.new(0, 428, 0, 34)
  810. ExtrasFrame.Size = UDim2.new(0, 170, 0, 80)
  811. ExtrasFrame.Visible = false
  812.  
  813. NoClip.Name = "NoClip"
  814. NoClip.Parent = ExtrasFrame
  815. NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  816. NoClip.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  817. NoClip.Position = UDim2.new(0, 5, 0, 5)
  818. NoClip.Size = UDim2.new(0, 160, 0, 20)
  819. NoClip.Font = Enum.Font.Fantasy
  820. NoClip.TextColor3 = Color3.new(1, 1, 1)
  821. NoClip.Text = "Enable NoClip"
  822. NoClip.TextSize = 17
  823. NoClip.TextWrapped = true
  824.  
  825. TPTool.Name = "TPTool"
  826. TPTool.Parent = ExtrasFrame
  827. TPTool.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  828. TPTool.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  829. TPTool.Position = UDim2.new(0, 5, 0, 30)
  830. TPTool.Size = UDim2.new(0, 160, 0, 20)
  831. TPTool.TextColor3 = Color3.new(1, 1, 1)
  832. TPTool.Font = Enum.Font.Fantasy
  833. TPTool.Text = "Add TPTool"
  834. TPTool.TextSize = 16
  835.  
  836. ReJoinServer.Name = "ReJoinServer"
  837. ReJoinServer.Parent = ExtrasFrame
  838. ReJoinServer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  839. ReJoinServer.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  840. ReJoinServer.Position = UDim2.new(0, 5, 0, 55)
  841. ReJoinServer.Size = UDim2.new(0, 160, 0, 20)
  842. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  843. ReJoinServer.Font = Enum.Font.Fantasy
  844. ReJoinServer.Text = "ReJoin a Server"
  845. ReJoinServer.TextSize = 16
  846. ReJoinServer.TextWrapped = true
  847.  
  848. InfoScreen.Name = "InfoScreen"
  849. InfoScreen.Parent = MainFrame
  850. InfoScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  851. InfoScreen.BorderColor3 = Color3.new(0, 1, 0)
  852. InfoScreen.Position = UDim2.new(0, 553, 0, 5)
  853. InfoScreen.Size = UDim2.new(0, 40, 0, 20)
  854. InfoScreen.BackgroundTransparency = 0
  855. InfoScreen.Font = Enum.Font.Fantasy
  856. InfoScreen.TextColor3 = Color3.new(1, 1, 1)
  857. InfoScreen.Text = "Info"
  858. InfoScreen.TextSize = 17
  859. InfoScreen.TextWrapped = true
  860.  
  861. InfoFrame.Name = "InfoFrame"
  862. InfoFrame.Parent = MainFrame
  863. InfoFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  864. InfoFrame.BorderColor3 = Color3.new(0, 0, 0)
  865. InfoFrame.BackgroundTransparency = 0.1
  866. InfoFrame.Position = UDim2.new(0, 398, 0, 34)
  867. InfoFrame.Size = UDim2.new(0, 200, 0, 130)
  868. InfoFrame.Visible = false
  869.  
  870. InfoText1.Name = "InfoText1"
  871. InfoText1.Parent = InfoFrame
  872. InfoText1.BackgroundColor3 = Color3.new(0, 0, 0)
  873. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  874. InfoText1.BackgroundTransparency = 1
  875. InfoText1.Position = UDim2.new(0, 5, 0, 5)
  876. InfoText1.Size = UDim2.new(0, 190, 0, 130)
  877. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  878. InfoText1.Font = Enum.Font.Fantasy
  879. InfoText1.Text = "This Gui was created by LuckyMMB@V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\n\nCredits:\nsirelKilla @ v3rmillion for the pollen farming script"
  880. InfoText1.TextSize = 15
  881. InfoText1.TextWrapped = true
  882. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  883.  
  884. function notify(msg)
  885. game.StarterGui:SetCore('SendNotification', {
  886. Title = 'Bee Swarm LuckyGUI';
  887. Text = msg;
  888. Duration = 5;
  889. })
  890. end
  891.  
  892. --- Close ---
  893.  
  894. Close.MouseButton1Down:connect(function()
  895. MainGUI:Destroy()
  896. end)
  897.  
  898. --- Menus ---
  899.  
  900. local Menus = {
  901. [WayPoints] = WayPointsFrame;
  902. [ExtrasScreen] = ExtrasFrame;
  903. [InfoScreen] = InfoFrame;
  904. [Players] = PlayerFrame;
  905. }
  906. for button,frame in pairs(Menus) do
  907. button.MouseButton1Click:connect(function()
  908. if frame.Visible then
  909. frame.Visible = false
  910. return
  911. end
  912. for k,v in pairs(Menus) do
  913. v.Visible = v == frame
  914. end
  915. end)
  916. end
  917.  
  918. --- Snow Menus Show Hide ---
  919.  
  920. FindTreasures.MouseEnter:connect(function()
  921. FindTreasuresText1.Visible = true
  922. end)
  923.  
  924. FindTreasures.MouseLeave:connect(function()
  925. FindTreasuresText1.Visible = false
  926. end)
  927.  
  928. -- Pollen Farming --
  929.  
  930. spawn (function()
  931. while true do
  932. wait(0.2)
  933. if PollenFarmActive == true then
  934. local player = game:GetService("Players").LocalPlayer
  935. local currp
  936. workspace.Collectibles.ChildAdded:Connect(function(part)
  937. wait(0.5)
  938. if currp and (part.Position-currp).magnitude < 50 then
  939. player.Character:MoveTo(part.Position)
  940. wait(0.3)
  941. player.Character:MoveTo(currp)
  942. end
  943. end)
  944. local pollenLbl = player.Character:FindFirstChild("ProgressLabel",true)
  945. if not pollenLbl then
  946. error("Backpack not found")
  947. end
  948. local maxpollen = tonumber(pollenLbl.Text:match("%d+$"))
  949. local pollenTool = player.Character:FindFirstChildOfClass("Tool") or player.Backpack:FindFirstChildOfClass("Tool")
  950. if pollenTool==nil or pollenTool:FindFirstChild("ClickEvent")==nil then
  951. error("Tool not found")
  952. end
  953. print("Backpack size: " .. maxpollen)
  954. if Field1AFActive == true then
  955. fieldpos = {Vector3.new(-207.426,3,132.8),Vector3.new(-207.426,3,162.8),Vector3.new(-207.426,3,192.8)}
  956. print("Farming Sunflower Zone")
  957. elseif Field2AFActive == true then
  958. fieldpos = {Vector3.new(-129.7,3,111.7),Vector3.new(-89.7,3,111.7),Vector3.new(-69.7,3,111.7)}
  959. print("Farming Mushroom Zone")
  960. elseif Field3AFActive == true then
  961. fieldpos = {Vector3.new(-70.35,4,221.5),Vector3.new(-30.35,4,221.5),Vector3.new(10.35,4,221.5)}
  962. print("Farming Dandelion Zone")
  963. elseif Field4AFActive == true then
  964. fieldpos = {Vector3.new(106.8,4,100.5),Vector3.new(146.8,4,100.5),Vector3.new(186.8,4,100.5)}
  965. print("Farming Blue Flower Zone")
  966. elseif Field5AFActive == true then
  967. fieldpos = {Vector3.new(140.17,33,196.3),Vector3.new(180.17,33,196.3),Vector3.new(220.17,33,196.3)}
  968. print("Farming Clover Zone")
  969. elseif Field6AFActive == true then
  970. fieldpos = {Vector3.new(-178.178,20,29.8),Vector3.new(-178.178,20,-9.8),Vector3.new(-178.178,20,-39.8)}
  971. print("Farming StrawBerry Zone")
  972. elseif Field7AFActive == true then
  973. fieldpos = {Vector3.new(-81.4,20,-3.5),Vector3.new(-41.4,20,-3.5),Vector3.new(-1.4,20,-3.5)}
  974. print("Farming Spider Zone")
  975. elseif Field8AFActive == true then
  976. fieldpos = {Vector3.new(92.9,20,-25.6),Vector3.new(132.9,20,-25.6),Vector3.new(172.9,20,-25.6)}
  977. print("Farming BamBoo Zone")
  978. elseif Field9AFActive == true then
  979. fieldpos = {Vector3.new(-282.835,20,129),Vector3.new(-322.835,20,129),Vector3.new(-362.835,20,129)}
  980. print("Farming Rose Zone")
  981. elseif Field10AFActive == true then
  982. 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)}
  983. print("Farming Pine Tree Zone")
  984. elseif Field11AFActive == true then
  985. fieldpos = {Vector3.new(-159.5,68,-101.5),Vector3.new(-194.5,68,-112.5),Vector3.new(-229.5,68,-101.5)}
  986. print("Farming Cactus Zone")
  987. elseif Field12AFActive == true then
  988. fieldpos = {Vector3.new(-156.5,67,-183.8),Vector3.new(-191.5,67,-183.8),Vector3.new(-226.5,67,-183.8)}
  989. print("Farming Pumpkin Zone")
  990. elseif Field13AFActive == true then
  991. fieldpos = {Vector3.new(295.3,70.2,-198.1),Vector3.new(260.3,70.2,-198.1),Vector3.new(225.3,70.2,-198.1)}
  992. print("Farming Pineapple Zone")
  993. elseif Field14AFActive == true then
  994. fieldpos = {Vector3.new(55, 176, -145),Vector3.new(55, 176, -185),Vector3.new(55, 176, -225),Vector3.new(95, 176, -225),Vector3.new(95, 176, -185),Vector3.new(95, 176, -145)}
  995. print("Farming Mountain Top Zone")
  996. else
  997. if maxpollen < 9999 then
  998. 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)}
  999. print("Auto Farming Zone 1 selected")
  1000. else
  1001. fieldpos = {Vector3.new(55, 176, -145),Vector3.new(55, 176, -185),Vector3.new(55, 176, -225),Vector3.new(95, 176, -225),Vector3.new(95, 176, -185),Vector3.new(95, 176, -145)}
  1002. print("Auto Farming Zone 2 selected")
  1003. end
  1004. end
  1005. local posIndex = 0
  1006. while PollenFarmActive do
  1007. --collect pollen
  1008. pollenTool.Parent = player.Character
  1009. wait(0.1)
  1010. while PollenFarmActive and player.leaderstats.Pollen.Value<maxpollen do
  1011. posIndex=posIndex+1
  1012. if posIndex>#fieldpos then posIndex=1 end
  1013. for rot=1,4 do
  1014. if not PollenFarmActive then break end
  1015. local angle = CFrame.Angles(0,math.pi*.5*rot,0)
  1016. currp = fieldpos[posIndex]+angle.lookVector*10
  1017. player.Character.HumanoidRootPart.CFrame=CFrame.new(currp)*angle
  1018. for i=1,25 do
  1019. if not PollenFarmActive then break end
  1020. wait(0.2)
  1021. pollenTool.ClickEvent:FireServer(currp)
  1022. end
  1023. if player.leaderstats.Pollen.Value+1>maxpollen then break end
  1024. end
  1025. end
  1026. --turn to honey
  1027. currp=nil
  1028. player.Character:MoveTo(player.SpawnPos.Value.p)
  1029. wait(0.5)
  1030. game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  1031. if PollenFarmActive then
  1032. repeat wait(0.5) until player.leaderstats.Pollen.Value < 1
  1033. wait(6)
  1034. end
  1035. end
  1036. end
  1037. end
  1038. end)
  1039.  
  1040. --- WayPoints ---
  1041.  
  1042. local WayPoints = {
  1043. ["Black Bear"] = CFrame.new(-258.1, 5, 299.7),
  1044. ["Brown Bear"] = CFrame.new(282, 46, 236),
  1045. ["Panda Bear"] = CFrame.new(106.3, 35, 50.1),
  1046. ["Polar Bear"] = CFrame.new(-106, 119, -77),
  1047. ["Science Bear"] = CFrame.new(267, 103, 20),
  1048. ["Bee Shop"] = CFrame.new(-136.8, 4.6, 243.4),
  1049. ["Tool Shop"] = CFrame.new(86, 4.6, 294),
  1050. ["Tool Shop 2"] = CFrame.new(165, 69, -161),
  1051. ["Clover Field"] = CFrame.new(174, 34, 189),
  1052. ["Mushroom Field"] = CFrame.new(-258.1, 5, 299.7),
  1053. ["Spider Field"] = CFrame.new(-57.2, 20, -5.3),
  1054. ["Blue Field"] = CFrame.new(113.7, 4, 101.5),
  1055. ["Sunflower Field"] = CFrame.new(-208, 4, 185),
  1056. ["StrawBerry Field"] = CFrame.new(-169.3, 20, -3.2),
  1057. ["Red Field"] = CFrame.new(-258.1, 5, 299.7),
  1058. ["Dandelion Field"] = CFrame.new(-30, 4, 225),
  1059. ["BamBoo Field"] = CFrame.new(93, 20, -25),
  1060. ["Rose Field"] = CFrame.new(-322, 20, 124),
  1061. ["Mushroom Field"] = CFrame.new(-94, 5, 116),
  1062. ["Cactus Field"] = CFrame.new(-194, 68, -107),
  1063. ["Pumpkin Field"] = CFrame.new(-194, 68, -182),
  1064. ["MountainTop Field"] = CFrame.new(76, 176, -181),
  1065. ["PineTree Field"] = CFrame.new(-318, 68, -150),
  1066. ["Pineapple Field"] = CFrame.new(262, 68, -201),
  1067. ["Blue Clubhouse"] = CFrame.new(292, 4, 98),
  1068. ["Red Clubhouse"] = CFrame.new(-334, 21, 216),
  1069. ["MountainTop Shop"] = CFrame.new(-18, 176, -137),
  1070. ["RoyalJelly Shop"] = CFrame.new(-297, 53, 68)
  1071. }
  1072.  
  1073. ReturnToHive.MouseButton1Down:connect(function()
  1074. local player = game:GetService("Players").LocalPlayer
  1075. player.Character:MoveTo(player.SpawnPos.Value.p)
  1076. WayPointsFrame.Visible = false
  1077. notify'Teleported to Hive'
  1078. end)
  1079.  
  1080. BlueClubhouse.MouseButton1Down:connect(function()
  1081. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1082. uTorso.CFrame = WayPoints["Blue Clubhouse"]
  1083. WayPointsFrame.Visible = false
  1084. notify'Teleported to Blue ClubHouse'
  1085. end)
  1086.  
  1087. RedClubhouse.MouseButton1Down:connect(function()
  1088. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1089. uTorso.CFrame = WayPoints["Red Clubhouse"]
  1090. WayPointsFrame.Visible = false
  1091. notify'Teleported to Red ClubHouse'
  1092. end)
  1093.  
  1094. MountainTopShop.MouseButton1Down:connect(function()
  1095. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1096. uTorso.CFrame = WayPoints["MountainTop Shop"]
  1097. WayPointsFrame.Visible = false
  1098. notify'Teleported to MountainTop Shop'
  1099. end)
  1100.  
  1101. RoyalJellyShop.MouseButton1Down:connect(function()
  1102. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1103. uTorso.CFrame = WayPoints["RoyalJelly Shop"]
  1104. WayPointsFrame.Visible = false
  1105. notify'Teleported to RoyalJelly Shop'
  1106. end)
  1107.  
  1108. BlackBear.MouseButton1Down:connect(function()
  1109. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1110. uTorso.CFrame = WayPoints["Black Bear"]
  1111. WayPointsFrame.Visible = false
  1112. notify'Teleported to Black Bear'
  1113. end)
  1114.  
  1115. BrownBear.MouseButton1Down:connect(function()
  1116. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1117. uTorso.CFrame = WayPoints["Brown Bear"]
  1118. WayPointsFrame.Visible = false
  1119. notify'Teleported to Brown Bear'
  1120. end)
  1121.  
  1122. PandaBear.MouseButton1Down:connect(function()
  1123. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1124. uTorso.CFrame = WayPoints["Panda Bear"]
  1125. WayPointsFrame.Visible = false
  1126. notify'Teleported to Panda Bear'
  1127. end)
  1128.  
  1129. PolarBear.MouseButton1Down:connect(function()
  1130. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1131. uTorso.CFrame = WayPoints["Polar Bear"]
  1132. WayPointsFrame.Visible = false
  1133. notify'Teleported to Polar Bear'
  1134. end)
  1135.  
  1136. ScienceBear.MouseButton1Down:connect(function()
  1137. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1138. uTorso.CFrame = WayPoints["Science Bear"]
  1139. WayPointsFrame.Visible = false
  1140. notify'Teleported to Science Bear'
  1141. end)
  1142.  
  1143. BeeShop.MouseButton1Down:connect(function()
  1144. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1145. uTorso.CFrame = WayPoints["Bee Shop"]
  1146. WayPointsFrame.Visible = false
  1147. notify'Teleported to Bee Shop'
  1148. end)
  1149.  
  1150. TPShop.MouseButton1Down:connect(function()
  1151. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1152. uTorso.CFrame = WayPoints["Tool Shop"]
  1153. WayPointsFrame.Visible = false
  1154. notify'Teleported to Basic Tool Shop'
  1155. end)
  1156.  
  1157. TPShop2.MouseButton1Down:connect(function()
  1158. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1159. uTorso.CFrame = WayPoints["Tool Shop 2"]
  1160. WayPointsFrame.Visible = false
  1161. notify'Teleported to Advanced Tool Shop'
  1162. end)
  1163.  
  1164. MushRoomField.MouseButton1Down:connect(function()
  1165. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1166. uTorso.CFrame = WayPoints["Mushroom Field"]
  1167. WayPointsFrame.Visible = false
  1168. notify'Teleported to Mushroom Field'
  1169. end)
  1170.  
  1171. StrawBerryField.MouseButton1Down:connect(function()
  1172. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1173. uTorso.CFrame = WayPoints["StrawBerry Field"]
  1174. WayPointsFrame.Visible = false
  1175. notify'Teleported to StrawBerry Field'
  1176. end)
  1177.  
  1178. CloverField.MouseButton1Down:connect(function()
  1179. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1180. uTorso.CFrame = WayPoints["Clover Field"]
  1181. WayPointsFrame.Visible = false
  1182. notify'Teleported to Clover Field'
  1183. end)
  1184.  
  1185. SpiderField.MouseButton1Down:connect(function()
  1186. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1187. uTorso.CFrame = WayPoints["Spider Field"]
  1188. WayPointsFrame.Visible = false
  1189. notify'Teleported to Spider Field'
  1190. end)
  1191.  
  1192. BlueField.MouseButton1Down:connect(function()
  1193. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1194. uTorso.CFrame = WayPoints["Blue Field"]
  1195. WayPointsFrame.Visible = false
  1196. notify'Teleported to Blue Field'
  1197. end)
  1198.  
  1199. SunflowerField.MouseButton1Down:connect(function()
  1200. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1201. uTorso.CFrame = WayPoints["Sunflower Field"]
  1202. WayPointsFrame.Visible = false
  1203. notify'Teleported to Sunflower Field'
  1204. end)
  1205.  
  1206. DandelionField.MouseButton1Down:connect(function()
  1207. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1208. uTorso.CFrame = WayPoints["Dandelion Field"]
  1209. WayPointsFrame.Visible = false
  1210. notify'Teleported to Dandelion Field'
  1211. end)
  1212.  
  1213. BamBooField.MouseButton1Down:connect(function()
  1214. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1215. uTorso.CFrame = WayPoints["BamBoo Field"]
  1216. WayPointsFrame.Visible = false
  1217. notify'Teleported to BamBoo Field'
  1218. end)
  1219.  
  1220. RoseField.MouseButton1Down:connect(function()
  1221. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1222. uTorso.CFrame = WayPoints["Rose Field"]
  1223. WayPointsFrame.Visible = false
  1224. notify'Teleported to Rose Field'
  1225. end)
  1226.  
  1227. CactusField.MouseButton1Down:connect(function()
  1228. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1229. uTorso.CFrame = WayPoints["Cactus Field"]
  1230. WayPointsFrame.Visible = false
  1231. notify'Teleported to BamBoo Field'
  1232. end)
  1233.  
  1234. PumpkinField.MouseButton1Down:connect(function()
  1235. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1236. uTorso.CFrame = WayPoints["Pumpkin Field"]
  1237. WayPointsFrame.Visible = false
  1238. notify'Teleported to BamBoo Field'
  1239. end)
  1240.  
  1241. PineTreeField.MouseButton1Down:connect(function()
  1242. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1243. uTorso.CFrame = WayPoints["PineTree Field"]
  1244. WayPointsFrame.Visible = false
  1245. notify'Teleported to BamBoo Field'
  1246. end)
  1247.  
  1248. MountainTopField.MouseButton1Down:connect(function()
  1249. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1250. uTorso.CFrame = WayPoints["MountainTop Field"]
  1251. WayPointsFrame.Visible = false
  1252. notify'Teleported to Mountain Top Field'
  1253. end)
  1254.  
  1255. PineappleField.MouseButton1Down:connect(function()
  1256. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1257. uTorso.CFrame = WayPoints["Pineapple Field"]
  1258. WayPointsFrame.Visible = false
  1259. notify'Teleported to Pineapple Field'
  1260. end)
  1261.  
  1262. -- Show Location --
  1263.  
  1264. spawn (function()
  1265. while true do
  1266. function round(num, numDecimalPlaces)
  1267. local mult = 10^(numDecimalPlaces or 0)
  1268. return math.floor(num * mult + 0.5) / mult
  1269. end
  1270. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  1271. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  1272. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  1273. ShowLocation.Text = "Coords: "..LocationX..", "..LocationY..", "..LocationZ
  1274. wait(0.5)
  1275. end
  1276. end)
  1277.  
  1278. SetLocation.MouseButton1Down:connect(function()
  1279. function round(num, numDecimalPlaces)
  1280. local mult = 10^(numDecimalPlaces or 0)
  1281. return math.floor(num * mult + 0.5) / mult
  1282. end
  1283. setlocationx = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  1284. setlocationy = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  1285. setlocationz = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  1286. print("Set Custom Location: "..setlocationx..", "..setlocationy..", "..setlocationz)
  1287. SetLocation.Text = "Set: " ..setlocationx..","..setlocationy..","..setlocationz
  1288. CustomLocationSet = true
  1289. end)
  1290.  
  1291. --- TP to custom location ---
  1292.  
  1293. TPLocation.MouseButton1Down:connect(function()
  1294. if CustomLocationSet == true then
  1295. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1296. uTorso.CFrame = CFrame.new(setlocationx, setlocationy, setlocationz)
  1297. end
  1298. end)
  1299.  
  1300. --- Player Teleport ---
  1301.  
  1302. local buttons = {
  1303. Player1,
  1304. Player2,
  1305. Player3,
  1306. Player4,
  1307. Player5
  1308. }
  1309. for i, v in pairs(game.Players:GetChildren()) do
  1310. buttons[i].Text = v.Name
  1311. buttons[i].Visible = true
  1312. end
  1313. game.Players.PlayerRemoving:connect(function()
  1314. for i, v in pairs(game.Players:GetChildren()) do
  1315. buttons[i].Text = v.Name
  1316. buttons[i].Visible = true
  1317. end
  1318. end)
  1319. game.Players.PlayerAdded:connect(function()
  1320. for i, v in pairs(game.Players:GetChildren()) do
  1321. buttons[i].Text = v.Name
  1322. buttons[i].Visible = true
  1323. end
  1324. end)
  1325.  
  1326. Player1.MouseButton1Down:connect(function()
  1327. PlyrSel.Text = Player1.Text
  1328. end)
  1329. Player2.MouseButton1Down:connect(function()
  1330. PlyrSel.Text = Player2.Text
  1331. end)
  1332. Player3.MouseButton1Down:connect(function()
  1333. PlyrSel.Text = Player3.Text
  1334. end)
  1335. Player4.MouseButton1Down:connect(function()
  1336. PlyrSel.Text = Player4.Text
  1337. end)
  1338. Player5.MouseButton1Down:connect(function()
  1339. PlyrSel.Text = Player5.Text
  1340. end)
  1341.  
  1342. TpPlayer.MouseButton1Down:connect(function()
  1343. if PlyrSel.Text == "SELECT A PLAYER" then
  1344. warn("No Player Selected")
  1345. else
  1346. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  1347. end
  1348. end)
  1349.  
  1350. -- Find Hidden Treasures --
  1351.  
  1352. FindTreasures.MouseButton1Down:connect(function()
  1353. local player = game:GetService("Players").LocalPlayer
  1354. local function collecttreasure(treasure)
  1355. for i,v in ipairs(treasure:GetChildren()) do
  1356. if v.Parent then
  1357. player.Character:MoveTo(v.Position)
  1358. end
  1359. wait(1)
  1360. end
  1361. end
  1362. collecttreasure(workspace.TreasureCollectibles)
  1363. wait(1)
  1364. player.Character:MoveTo(player.SpawnPos.Value.p)
  1365. end)
  1366.  
  1367. --- NoClip ---
  1368.  
  1369. noclip = false
  1370. game:GetService('RunService').Stepped:connect(function()
  1371. if noclip then
  1372. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1373. end
  1374. end)
  1375. NoClip.MouseButton1Down:connect(function()
  1376. noclip = not noclip
  1377. if NoClip.Text == "Enable NoClip" then
  1378. NoClip.Text = "Disable NoClip"
  1379. NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1380. else
  1381. NoClip.Text = "Enable NoClip"
  1382. NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1383. end
  1384. end)
  1385.  
  1386. --- TP Tool ---
  1387.  
  1388. TPTool.MouseButton1Down:connect(function()
  1389. local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  1390. Tele.RequiresHandle = false
  1391. Tele.RobloxLocked = true
  1392. Tele.Name = "TPTool"
  1393. Tele.ToolTip = "Teleport Tool"
  1394. Tele.Equipped:connect(function(Mouse)
  1395. Mouse.Button1Down:connect(function()
  1396. if Mouse.Target then
  1397. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  1398. end
  1399. end)
  1400. end)
  1401. notify'TP Tool added to your Backpack'
  1402.  
  1403. end)
  1404.  
  1405. --- Pollen Farm ---
  1406.  
  1407. PollenFarm.MouseButton1Click:connect(function()
  1408. if PollenFarmActive ~= true then
  1409. PollenFarmActive = true
  1410. Field1AFActive = false
  1411. Field2AFActive = false
  1412. Field3AFActive = false
  1413. Field4AFActive = false
  1414. Field5AFActive = false
  1415. Field6AFActive = false
  1416. Field7AFActive = false
  1417. Field8AFActive = false
  1418. Field9AFActive = false
  1419. Field10AFActive = false
  1420. Field11AFActive = false
  1421. Field12AFActive = false
  1422. Field13AFActive = false
  1423. Field14AFActive = false
  1424. PollenFarm.Text = "Stop Farming"
  1425. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1426. notify'Pollen Farming Started'
  1427. else
  1428. PollenFarmActive = false
  1429. Field1AFActive = false
  1430. Field2AFActive = false
  1431. Field3AFActive = false
  1432. Field4AFActive = false
  1433. Field5AFActive = false
  1434. Field6AFActive = false
  1435. Field7AFActive = false
  1436. Field8AFActive = false
  1437. Field9AFActive = false
  1438. Field10AFActive = false
  1439. Field11AFActive = false
  1440. Field12AFActive = false
  1441. Field13AFActive = false
  1442. Field14AFActive = false
  1443. notify'Pollen Farming Ended'
  1444. PollenFarm.Text = "Farm Pollen"
  1445. PollenFarm.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1446. local player = game:GetService("Players").LocalPlayer
  1447. currp=nil
  1448. player.Character:MoveTo(player.SpawnPos.Value.p)
  1449. end
  1450. end)
  1451.  
  1452. Field1AF.MouseButton1Down:connect(function()
  1453. PollenFarmActive = true
  1454. Field1AFActive = true
  1455. Field2AFActive = false
  1456. Field3AFActive = false
  1457. Field4AFActive = false
  1458. Field5AFActive = false
  1459. Field6AFActive = false
  1460. Field7AFActive = false
  1461. Field8AFActive = false
  1462. Field9AFActive = false
  1463. Field10AFActive = false
  1464. Field11AFActive = false
  1465. Field12AFActive = false
  1466. Field13AFActive = false
  1467. Field14AFActive = false
  1468. PollenFarm.Text = "Stop Farming"
  1469. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1470. notify'Pollen Farming Zone 1 Started'
  1471. WayPointsFrame.Visible = false
  1472. end)
  1473.  
  1474. Field2AF.MouseButton1Down:connect(function()
  1475. PollenFarmActive = true
  1476. Field2AFActive = true
  1477. Field1AFActive = false
  1478. Field3AFActive = false
  1479. Field4AFActive = false
  1480. Field5AFActive = false
  1481. Field6AFActive = false
  1482. Field7AFActive = false
  1483. Field8AFActive = false
  1484. Field9AFActive = false
  1485. Field10AFActive = false
  1486. Field11AFActive = false
  1487. Field12AFActive = false
  1488. Field13AFActive = false
  1489. Field14AFActive = false
  1490. PollenFarm.Text = "Stop Farming"
  1491. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1492. notify'Pollen Farming Zone 2 Started'
  1493. WayPointsFrame.Visible = false
  1494. end)
  1495.  
  1496. Field3AF.MouseButton1Down:connect(function()
  1497. PollenFarmActive = true
  1498. Field3AFActive = true
  1499. Field1AFActive = false
  1500. Field2AFActive = false
  1501. Field4AFActive = false
  1502. Field5AFActive = false
  1503. Field6AFActive = false
  1504. Field7AFActive = false
  1505. Field8AFActive = false
  1506. Field9AFActive = false
  1507. Field10AFActive = false
  1508. Field11AFActive = false
  1509. Field12AFActive = false
  1510. Field13AFActive = false
  1511. Field14AFActive = false
  1512. PollenFarm.Text = "Stop Farming"
  1513. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1514. notify'Pollen Farming Zone 3 Started'
  1515. WayPointsFrame.Visible = false
  1516. end)
  1517.  
  1518. Field4AF.MouseButton1Down:connect(function()
  1519. PollenFarmActive = true
  1520. Field4AFActive = true
  1521. Field1AFActive = false
  1522. Field2AFActive = false
  1523. Field3AFActive = false
  1524. Field5AFActive = false
  1525. Field6AFActive = false
  1526. Field7AFActive = false
  1527. Field8AFActive = false
  1528. Field9AFActive = false
  1529. Field10AFActive = false
  1530. Field11AFActive = false
  1531. Field12AFActive = false
  1532. Field13AFActive = false
  1533. Field14AFActive = false
  1534. PollenFarm.Text = "Stop Farming"
  1535. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1536. notify'Pollen Farming Zone 4 Started'
  1537. WayPointsFrame.Visible = false
  1538. end)
  1539.  
  1540. Field5AF.MouseButton1Down:connect(function()
  1541. PollenFarmActive = true
  1542. Field5AFActive = true
  1543. Field1AFActive = false
  1544. Field2AFActive = false
  1545. Field3AFActive = false
  1546. Field4AFActive = false
  1547. Field6AFActive = false
  1548. Field7AFActive = false
  1549. Field8AFActive = false
  1550. Field9AFActive = false
  1551. Field10AFActive = false
  1552. Field11AFActive = false
  1553. Field12AFActive = false
  1554. Field13AFActive = false
  1555. Field14AFActive = false
  1556. PollenFarm.Text = "Stop Farming"
  1557. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1558. notify'Pollen Farming Zone 5 Started'
  1559. WayPointsFrame.Visible = false
  1560. end)
  1561.  
  1562. Field6AF.MouseButton1Down:connect(function()
  1563. PollenFarmActive = true
  1564. Field6AFActive = true
  1565. Field1AFActive = false
  1566. Field2AFActive = false
  1567. Field3AFActive = false
  1568. Field4AFActive = false
  1569. Field5AFActive = false
  1570. Field7AFActive = false
  1571. Field8AFActive = false
  1572. Field9AFActive = false
  1573. Field10AFActive = false
  1574. Field11AFActive = false
  1575. Field12AFActive = false
  1576. Field13AFActive = false
  1577. Field14AFActive = false
  1578. PollenFarm.Text = "Stop Farming"
  1579. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1580. notify'Pollen Farming Zone 6 Started'
  1581. WayPointsFrame.Visible = false
  1582. end)
  1583.  
  1584. Field7AF.MouseButton1Down:connect(function()
  1585. PollenFarmActive = true
  1586. Field7AFActive = true
  1587. Field1AFActive = false
  1588. Field2AFActive = false
  1589. Field3AFActive = false
  1590. Field4AFActive = false
  1591. Field5AFActive = false
  1592. Field6AFActive = false
  1593. Field8AFActive = false
  1594. Field9AFActive = false
  1595. Field10AFActive = false
  1596. Field11AFActive = false
  1597. Field12AFActive = false
  1598. Field13AFActive = false
  1599. Field14AFActive = false
  1600. PollenFarm.Text = "Stop Farming"
  1601. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1602. notify'Pollen Farming Zone 7 Started'
  1603. WayPointsFrame.Visible = false
  1604. end)
  1605.  
  1606. Field8AF.MouseButton1Down:connect(function()
  1607. PollenFarmActive = true
  1608. Field8AFActive = true
  1609. Field1AFActive = false
  1610. Field2AFActive = false
  1611. Field3AFActive = false
  1612. Field4AFActive = false
  1613. Field5AFActive = false
  1614. Field6AFActive = false
  1615. Field7AFActive = false
  1616. Field9AFActive = false
  1617. Field10AFActive = false
  1618. Field11AFActive = false
  1619. Field12AFActive = false
  1620. Field13AFActive = false
  1621. Field14AFActive = false
  1622. PollenFarm.Text = "Stop Farming"
  1623. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1624. notify'Pollen Farming Zone 8 Started'
  1625. WayPointsFrame.Visible = false
  1626. end)
  1627.  
  1628. Field9AF.MouseButton1Down:connect(function()
  1629. PollenFarmActive = true
  1630. Field9AFActive = true
  1631. Field1AFActive = false
  1632. Field2AFActive = false
  1633. Field3AFActive = false
  1634. Field4AFActive = false
  1635. Field5AFActive = false
  1636. Field6AFActive = false
  1637. Field7AFActive = false
  1638. Field8AFActive = false
  1639. Field10AFActive = false
  1640. Field11AFActive = false
  1641. Field12AFActive = false
  1642. Field13AFActive = false
  1643. Field14AFActive = false
  1644. PollenFarm.Text = "Stop Farming"
  1645. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1646. notify'Pollen Farming Zone 9 Started'
  1647. WayPointsFrame.Visible = false
  1648. end)
  1649.  
  1650. Field10AF.MouseButton1Down:connect(function()
  1651. PollenFarmActive = true
  1652. Field10AFActive = true
  1653. Field1AFActive = false
  1654. Field2AFActive = false
  1655. Field3AFActive = false
  1656. Field4AFActive = false
  1657. Field5AFActive = false
  1658. Field6AFActive = false
  1659. Field7AFActive = false
  1660. Field8AFActive = false
  1661. Field9AFActive = false
  1662. Field11AFActive = false
  1663. Field12AFActive = false
  1664. Field13AFActive = false
  1665. Field14AFActive = false
  1666. PollenFarm.Text = "Stop Farming"
  1667. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1668. notify'Pollen Farming Zone 10 Started'
  1669. WayPointsFrame.Visible = false
  1670. end)
  1671.  
  1672. Field11AF.MouseButton1Down:connect(function()
  1673. PollenFarmActive = true
  1674. Field11AFActive = true
  1675. Field1AFActive = false
  1676. Field2AFActive = false
  1677. Field3AFActive = false
  1678. Field4AFActive = false
  1679. Field5AFActive = false
  1680. Field6AFActive = false
  1681. Field7AFActive = false
  1682. Field8AFActive = false
  1683. Field9AFActive = false
  1684. Field10AFActive = false
  1685. Field12AFActive = false
  1686. Field13AFActive = false
  1687. Field14AFActive = false
  1688. PollenFarm.Text = "Stop Farming"
  1689. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1690. notify'Pollen Farming Zone 11 Started'
  1691. WayPointsFrame.Visible = false
  1692. end)
  1693.  
  1694. Field12AF.MouseButton1Down:connect(function()
  1695. PollenFarmActive = true
  1696. Field12AFActive = true
  1697. Field1AFActive = false
  1698. Field2AFActive = false
  1699. Field3AFActive = false
  1700. Field4AFActive = false
  1701. Field5AFActive = false
  1702. Field6AFActive = false
  1703. Field7AFActive = false
  1704. Field8AFActive = false
  1705. Field9AFActive = false
  1706. Field10AFActive = false
  1707. Field11AFActive = false
  1708. Field13AFActive = false
  1709. Field14AFActive = false
  1710. PollenFarm.Text = "Stop Farming"
  1711. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1712. notify'Pollen Farming Zone 12 Started'
  1713. WayPointsFrame.Visible = false
  1714. end)
  1715.  
  1716. Field13AF.MouseButton1Down:connect(function()
  1717. PollenFarmActive = true
  1718. Field13AFActive = true
  1719. Field1AFActive = false
  1720. Field2AFActive = false
  1721. Field3AFActive = false
  1722. Field4AFActive = false
  1723. Field5AFActive = false
  1724. Field6AFActive = false
  1725. Field7AFActive = false
  1726. Field8AFActive = false
  1727. Field9AFActive = false
  1728. Field10AFActive = false
  1729. Field11AFActive = false
  1730. Field12AFActive = false
  1731. Field14AFActive = false
  1732. PollenFarm.Text = "Stop Farming"
  1733. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1734. notify'Pollen Farming Zone 13 Started'
  1735. WayPointsFrame.Visible = false
  1736. end)
  1737.  
  1738. Field14AF.MouseButton1Down:connect(function()
  1739. PollenFarmActive = true
  1740. Field14AFActive = true
  1741. Field1AFActive = false
  1742. Field2AFActive = false
  1743. Field3AFActive = false
  1744. Field4AFActive = false
  1745. Field5AFActive = false
  1746. Field6AFActive = false
  1747. Field7AFActive = false
  1748. Field8AFActive = false
  1749. Field9AFActive = false
  1750. Field10AFActive = false
  1751. Field11AFActive = false
  1752. Field12AFActive = false
  1753. Field13AFActive = false
  1754. PollenFarm.Text = "Stop Farming"
  1755. PollenFarm.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1756. notify'Pollen Farming Zone 14 Started'
  1757. WayPointsFrame.Visible = false
  1758. end)
  1759.  
  1760. -- Auto Dig --
  1761.  
  1762. AutoDig.MouseButton1Click:connect(function()
  1763. if AutoDigActive ~= true then
  1764. AutoDigActive = true
  1765. AutoDig.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1766. if AutoDigActive then
  1767. local player = game:GetService("Players").LocalPlayer
  1768. local pollenTool = player.Character:FindFirstChildOfClass("Tool") or player.Backpack:FindFirstChildOfClass("Tool")
  1769. if pollenTool==nil or pollenTool:FindFirstChild("ClickEvent")==nil then
  1770. AutoDigActive = false
  1771. AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1772. error("Tool not found")
  1773. end
  1774. pollenTool.Parent = player.Character
  1775. while AutoDigActive do
  1776. wait(0.1)
  1777. pollenTool.ClickEvent:FireServer(CFrame.new())
  1778. end
  1779. end
  1780. else
  1781. AutoDigActive = false
  1782. notify'Auto Dig Stopped'
  1783. AutoDig.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1784. end
  1785. end)
  1786.  
  1787. --- ReJoin Server ---
  1788.  
  1789. ReJoinServer.MouseButton1Down:connect(function()
  1790. local placeId = 1537690962
  1791. game:GetService("TeleportService"):Teleport(placeId)
  1792. end)
  1793.  
  1794. --- End ---
Add Comment
Please, Sign In to add comment