Advertisement
Guest User

bee swarm simulator auto farm

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