Advertisement
IruanGamerYT

Bee Swarm Simulator script

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