Advertisement
trinhkietvuong

Untitled

Feb 14th, 2021 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 137.64 KB | None | 0 0
  1. -- Walking time out: 5s
  2.  
  3. --
  4. local red = Color3.fromRGB(255, 80, 80)
  5. local blue = Color3.new(0.34902, 0.32549, 1)
  6.  
  7. local selling = false
  8.  
  9. local farming = false
  10.  
  11. local act6temp = false
  12.  
  13. local debug = true
  14.  
  15. local running = false
  16.  
  17. local automob = false
  18.  
  19. local autopolar = false
  20.  
  21.  
  22.  
  23. function KLDC()
  24. local tool
  25. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  26. if v:IsA("Tool") then
  27. tool = v
  28.  
  29. end
  30. end
  31. function Dig()
  32. coroutine.wrap(function()
  33. local s,e = pcall(function()
  34.  
  35. if getsenv and not is_sirhurt_closure then
  36. local t = getsenv(tool.ClientScriptMouse).collectStart
  37. t()
  38. else
  39. tool.ClickEvent:FireServer()
  40.  
  41. end
  42.  
  43. end)
  44. if e then
  45. pcall(function()
  46. tool.ClickEvent:FireServer()
  47.  
  48.  
  49. end)
  50.  
  51. end
  52.  
  53. end)()
  54.  
  55. end
  56.  
  57.  
  58.  
  59.  
  60. local func = {}
  61. local AppQuest = game.ReplicatedStorage.Events.CompleteQuestFromPool
  62. local GiveQuest = game.ReplicatedStorage.Events.GiveQuestFromPool
  63. local QuestF = game.Players.LocalPlayer.PlayerGui.ScreenGui.Menus.Children.Quests.Content
  64. function DonePolar()
  65. AppQuest:FireServer("Polar Bear")
  66. end
  67.  
  68. function GivePolar()
  69. GiveQuest:FireServer("Polar Bear")
  70. end
  71.  
  72. function GetPolarQuest()
  73. if QuestF:FindFirstChild("Frame") then
  74. for k,v in pairs(QuestF.Frame:GetChildren()) do
  75. if v:IsA("Frame") then
  76. if string.match(v.TitleBar.Text,"Polar") then
  77. if string.match(v.TitleBar.Text,"Polar Bear's Beesmas Feast") then
  78. --return v
  79. else
  80. return v
  81. end
  82. -- print(v.TitleBar.Text)
  83.  
  84. end
  85. end
  86.  
  87. end
  88.  
  89. end
  90. end
  91.  
  92. function IsQuestDone(Quest)
  93. if Quest:FindFirstChild("Description") then
  94. if string.match(Quest.Description.Text,"Complete") then
  95. return true
  96. else
  97. return false
  98.  
  99. end
  100. else
  101. return true
  102. end
  103.  
  104.  
  105. end
  106.  
  107. local fieldlistpolar = {
  108. "Spider Field",
  109. "Mushroom Field",
  110. "Rose Field",
  111. "Strawberry Field",
  112. "Bamboo Field",
  113. "Pumpkin Patch",
  114. "Sunflower Field",
  115. "Cactus Field",
  116. "Blue Flower Field",
  117. "Clover Field",
  118. "Pineapple Patch",
  119. "Dandelion Field",
  120. "Pine Tree Forest"
  121. }
  122.  
  123. local moblistpolar = {
  124. "Spider",
  125. "Scorpion",
  126. "Werewol",
  127. "Mantises",
  128. "Ladybug",
  129. "Rhino Beetles",
  130. }
  131.  
  132. local fieldmob = {
  133. ["Rhino Beetles"] = {"Bamboo Field", "Pineapple Patch","Blue Flower Field","Clover Field"},
  134. ["Spider"] = {"Spider Field"},
  135. ["Werewol"] = {"Cactus Field"},
  136. ["Scorpion"] = {"Rose Field"},
  137. ["Mantises"] = {"Pine Tree Forest","Pineapple Patch"},
  138. ["Ladybug"] = {"Strawberry Field","Mushroom Field","Clover Field"}
  139. }
  140. function CheckMob(field)
  141. local rootpart = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  142. local old = rootpart.CFrame
  143. rootpart.CFrame=game.Workspace.FlowerZones[field].CFrame
  144.  
  145. wait(.5)
  146. if string.match(field,"Cactus") then wait(2) end
  147. for k,v in pairs(game.Workspace.Monsters:GetChildren()) do
  148. if v:FindFirstChild("Head") then
  149. if (game.Workspace.FlowerZones[field].CFrame.p-v.Head.Position).magnitude <= 60 then rootpart.CFrame = old; return true end
  150. end
  151.  
  152. end
  153.  
  154. return false
  155.  
  156. end
  157. function GetQuestMob(Quest)
  158. for k,v in pairs(moblistpolar) do
  159. if string.match(Quest,v) then
  160. --print(v)
  161. return v
  162. end
  163. end
  164.  
  165. end
  166. function KillAllMobList(fields)
  167. for k,v in pairs(fields) do
  168. if CheckMob(v) then
  169. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FlowerZones[v].CFrame
  170. while(autopolar and CheckMob(v)) do wait() end
  171. wait(1)
  172. CollectAllTokenInField(v)
  173.  
  174. end
  175. end
  176.  
  177.  
  178. end
  179. function GetQuestField(Quest)
  180. for k,v in pairs(fieldlistpolar) do
  181. if string.match(Quest,v) then
  182. --print(v)
  183. return v
  184. end
  185. end
  186.  
  187.  
  188.  
  189. end
  190.  
  191. function CollectAllTokenInField(Field)
  192. local player = game:GetService("Players").LocalPlayer
  193. local sanghuman = player.Character.HumanoidRootPart
  194. local hotboi = sanghuman.CFrame
  195. local sangzboi = workspace.FlowerZones[Field].CFrame
  196.  
  197. if (sanghuman.Position - sangzboi.p).magnitude >=60 then sanghuman.CFrame = sangzboi end
  198.  
  199. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  200. if ( (v.Position-sangzboi.p).magnitude <= 60) and ((sanghuman.Position-v.Position).magnitude<=60) then
  201. --local old = act6temp
  202.  
  203. tp(CFrame.new(v.Position.X,sanghuman.Position.Y,v.Position.Z),0.2)
  204. act6temp = false
  205. Dig()
  206. wait(.1)
  207. end
  208. end
  209.  
  210. end
  211.  
  212. local ss = coroutine.wrap(function()
  213. while wait() do
  214. if autopolar then
  215. DonePolar()
  216. GivePolar()
  217. end
  218. end
  219. end)
  220. ss()
  221.  
  222. local polar = coroutine.wrap(function()
  223. while wait() do
  224. if autopolar then
  225. --print("auto")
  226. local t = GetPolarQuest()
  227. --print(t)
  228. if t then
  229. for k,v in pairs(t:GetChildren()) do
  230. if v:IsA("Frame") then
  231. if v:FindFirstChild("Description") then
  232. if not IsQuestDone(v) then
  233.  
  234. if string.match(v.Description.Text,"Collect") then
  235.  
  236. local field = GetQuestField(v.Description.Text)
  237. --print(v.Description.Text)
  238. if field then
  239. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.FlowerZones[field].CFrame
  240.  
  241. while(autopolar and IsQuestDone(v) == false) do
  242. Dig()
  243. CollectAllTokenInField(field)
  244. wait()
  245. end
  246. end
  247.  
  248. else
  249.  
  250. if string.match(v.Description.Text,"Defeat") then
  251. local mob = GetQuestMob(v.Description.Text)
  252. local field = fieldmob[mob]
  253. KillAllMobList(field)
  254.  
  255. end
  256.  
  257.  
  258. end
  259. end
  260. end
  261.  
  262.  
  263.  
  264. end
  265. end
  266. end
  267.  
  268. end
  269.  
  270. end
  271.  
  272. end)
  273. polar()
  274.  
  275. local mob = coroutine.wrap(function()
  276. while wait() do
  277. --print(automob)
  278. if automob then
  279.  
  280. local fieldlist = {
  281. "Mushroom Field",
  282. "Clover Field",
  283.  
  284. "Blue Flower Field",
  285. "Bamboo Field",
  286. "Spider Field",
  287. "Strawberry Field",
  288. "Cactus Field",
  289. "Pine Tree Forest",
  290. "Rose Field",
  291. "Pineapple Patch"
  292. }
  293. local rootpart = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  294. for k,v in pairs(fieldlist) do
  295. --print(CheckMob(v))
  296. if CheckMob(v) == true then
  297.  
  298. rootpart.CFrame=game.Workspace.FlowerZones[v].CFrame
  299. while(CheckMob(v) == true) do
  300. if automob==false then break end
  301.  
  302. end
  303. wait(1)
  304. local player = game:GetService("Players").LocalPlayer
  305. local sanghuman = player.Character.HumanoidRootPart
  306. local hotboi = sanghuman.CFrame
  307. local sangzboi = workspace.FlowerZones[v].CFrame
  308. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  309. if ((v.Position-sangzboi.p).magnitude <= 60) and (sanghuman.Position-v.Position).magnitude<=60 then
  310. if automob then
  311. --rootpart.CFrame = CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z)
  312. tp(CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z),0.2)
  313. wait()
  314. end
  315. end
  316. end
  317.  
  318. end
  319.  
  320. end
  321. end
  322. end
  323. end)
  324.  
  325. mob()
  326. function GetNerestToken()
  327. local token = game.Workspace.Collectibles:GetChildren()[0]
  328. local h = game:GetService("Players").Character.HumanoidRootPart.Position
  329. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  330. if (h-v.Position).magnitude < (h.Position - token.position).magnitude then
  331. token = v
  332.  
  333. end
  334. end
  335.  
  336.  
  337. end
  338.  
  339.  
  340.  
  341. pcall(function()
  342. local g = getrawmetatable(game)
  343. local oldindex = g.__namecall
  344. setreadonly(g,false)
  345. g.__namecall = newcclosure(function(Self,...)
  346. local method = getnamecallmethod()
  347. if Self == game.Players.LocalPlayer and tostring(method) == "Kick" then
  348. return
  349. end
  350. return oldindex(Self,...)
  351. end)
  352.  
  353.  
  354. end)
  355.  
  356.  
  357. function WalkToHive(cf)
  358. local Pt = game:GetService("PathfindingService")
  359. local spawnpos = cf.p
  360. local torso = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  361. local hm = game:GetService("Players").LocalPlayer.Character.Humanoid
  362. local path = Pt:CreatePath()
  363. path:ComputeAsync(torso.Position,spawnpos)
  364. if path.Status == Enum.PathStatus.Success then
  365. local waypoints = path:GetWaypoints()
  366.  
  367. for k,v in pairs(waypoints) do
  368. local stop = false
  369. if v.Action == Enum.PathWaypointAction.Jump then
  370. hm:ChangeState(Enum.HumanoidStateType.Jumping)
  371.  
  372. end
  373. hm:MoveTo(v.Position)
  374. hm.MoveToFinished:Connect(function()
  375. stop = true
  376. end)
  377. local ticks = tick()
  378. while stop == false do
  379. wait()
  380. if (tick() - ticks)>=5 then stop = true end
  381. if act6temp then stop = true end
  382.  
  383. end
  384.  
  385.  
  386. end
  387.  
  388.  
  389. else
  390. torso.CFrame = cf
  391. end
  392. end
  393.  
  394.  
  395. function ProtectUI(UI)
  396. local Exploit =
  397. (KRNL_LOADED and "KRNL") or (secure_load and "Sentinel") or (pebc_execute and "ProtoSmasher") or (is_sirhurt_closure and "Sirhurt") or
  398. (syn and "Synapse X")
  399. if Exploit == "Synapse X" then
  400. pcall(
  401. function()
  402. syn.protect_gui(UI)
  403.  
  404. end
  405. )
  406. UI.Parent = game.CoreGui
  407.  
  408. else
  409. if Exploit == "ProtoSmasher" or Exploit == "Sirhurt" then
  410. UI.Parent = get_hidden_gui()
  411.  
  412. else
  413.  
  414. UI.Parent = game.CoreGui
  415.  
  416.  
  417. end
  418. end
  419. end
  420.  
  421. for _,v in pairs(game.workspace.Collectibles:GetChildren()) do
  422. if string.find(v.Name,"") then
  423. v:Destroy()
  424. end
  425. end
  426. local TokenId =
  427. {
  428. ["TokenLink"] = "rbxassetid://1629547638",
  429. ["BlueBomb"] = "rbxassetid://1442725244",
  430. ["BlueBomb+"] = "rbxassetid://1442764904",
  431. ["Frog"] = "http://www.roblox.com/asset/?id=4528414666",
  432. ["Ticket"] = "rbxassetid://1674871631",
  433. ["Glue"] = "rbxassetid://2504978518",
  434. ["Pineapple"] = "rbxassetid://1952796032",
  435. ["Strawberry"] = "rbxassetid://1952740625",
  436. ["BlueBoost"] = "rbxassetid://1442863423",
  437. ["Blueberry"] = "rbxassetid://2028453802" ,
  438. ["SunflowerSeed"] = "rbxassetid://1952682401",
  439. ["Treat"] = "rbxassetid://2028574353",
  440. ["Snowflake"] = "rbxassetid://6087969886",
  441. ["Gumdrop"] = "rbxassetid://1838129169",
  442. ["Micro"] = "rbxassetid://2863122826",
  443. ["Star"] = "rbxassetid://2000457501",
  444. ["Bear1"] = "rbxassetid://1472532912"
  445. }
  446. local PopStarAura = "5101328809"
  447. local PlGui = game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:WaitForChild("TileGrid")
  448.  
  449. function IsPopStar()
  450.  
  451. for k,v in pairs(PlGui:GetChildren()) do
  452. if v:FindFirstChild("BG") then
  453. if v.BG:FindFirstChild("Icon") then
  454. if string.match(v.BG.Icon.Image,PopStarAura) then return true end
  455. --print(v.BG.Icon.Image)
  456. end
  457. end
  458.  
  459. end
  460. return false
  461. end
  462.  
  463. --print(IsPopStar())
  464.  
  465. function GetTokenLink()
  466. local t = {}
  467. local i = 0
  468. for k,v in pairs (game.Workspace.Collectibles:GetChildren()) do
  469.  
  470. if v:FindFirstChild("FrontDecal") then
  471. if v.FrontDecal.Texture == TokenId["TokenLink"] then
  472. t[i] = v
  473. end
  474.  
  475. end
  476. i = i+1
  477. end
  478. return t
  479.  
  480.  
  481. end
  482.  
  483. function GetToken(TokenId)
  484. local t = {}
  485. local i = 0
  486. for k,v in pairs (game.Workspace.Collectibles:GetChildren()) do
  487.  
  488. if v:FindFirstChild("FrontDecal") then
  489. if v.FrontDecal.Texture == TokenId[id] then
  490. t[i] = v
  491. end
  492.  
  493. end
  494. i = i+1
  495. end
  496. return t
  497. end
  498.  
  499. local snowflake = false
  500.  
  501.  
  502.  
  503. local HoneyBeeDecal = "rbxassetid://1472135114"
  504. local tuoidz = "Sunflower Field"
  505. local DarkCyberMainGUI = Instance.new("ScreenGui")
  506. local MiniPage = Instance.new("Frame")
  507. local Destroy = Instance.new("TextButton")
  508. local GameText = Instance.new("TextLabel")
  509. local MainPage = Instance.new("Frame")
  510. local VersionText = Instance.new("TextLabel")
  511. local HomePage = Instance.new("Frame")
  512. local ImageGang = Instance.new("ImageLabel")
  513. local CreditText = Instance.new("TextLabel")
  514. local JoinText = Instance.new("TextLabel")
  515. local DiscordlinkTest = Instance.new("TextLabel")
  516. local Copylinkdiscord = Instance.new("TextButton")
  517. local FarmingPage = Instance.new("Frame")
  518. local FieldSelectPage = Instance.new("ScrollingFrame")
  519. local SunflowerButton = Instance.new("TextButton")
  520. local MushroomButton = Instance.new("TextButton")
  521. local SpiderButton = Instance.new("TextButton")
  522. local BambooButton = Instance.new("TextButton")
  523. local RoseButton = Instance.new("TextButton")
  524. local PineTreeButton = Instance.new("TextButton")
  525. local CactusButton = Instance.new("TextButton")
  526. local PumpkinButton = Instance.new("TextButton")
  527. local PineappleButton = Instance.new("TextButton")
  528. local StumpButton = Instance.new("TextButton")
  529. local MountainTopButton = Instance.new("TextButton")
  530. local CoconutButton = Instance.new("TextButton")
  531. local PepperButton = Instance.new("TextButton")
  532. local StawberryButton = Instance.new("TextButton")
  533. local BlueflowerButton = Instance.new("TextButton")
  534. local DanrButton = Instance.new("TextButton")
  535. local DanrButton_2 = Instance.new("TextButton")
  536. local FieldSelectText = Instance.new("TextLabel")
  537. local HoneyText = Instance.new("TextLabel")
  538. local FieldText = Instance.new("TextLabel")
  539. local TimeElapsedText = Instance.new("TextLabel")
  540. local StartButton = Instance.new("TextButton")
  541. local FieldSelectText_2 = Instance.new("TextLabel")
  542. local WaypointPage = Instance.new("ScrollingFrame")
  543. local Suntp = Instance.new("TextButton")
  544. local Mushtp = Instance.new("TextButton")
  545. local Dantp = Instance.new("TextButton")
  546. local Blueftp = Instance.new("TextButton")
  547. local Clovertp = Instance.new("TextButton")
  548. local Bambootp = Instance.new("TextButton")
  549. local Spidertp = Instance.new("TextButton")
  550. local Strawtp = Instance.new("TextButton")
  551. local Castustp = Instance.new("TextButton")
  552. local Pumtp = Instance.new("TextButton")
  553. local Pintreetp = Instance.new("TextButton")
  554. local Rosetp = Instance.new("TextButton")
  555. local Toptp = Instance.new("TextButton")
  556. local Coconuttp = Instance.new("TextButton")
  557. local Stumptp = Instance.new("TextButton")
  558. local Pineappletp = Instance.new("TextButton")
  559. local Peppertp = Instance.new("TextButton")
  560. local SummonSprouttp = Instance.new("TextButton")
  561. local Coconutshoptp = Instance.new("TextButton")
  562. local Petaltp = Instance.new("TextButton")
  563. local Shopproctp = Instance.new("TextButton")
  564. local Shoptoptp = Instance.new("TextButton")
  565. local Shopmoontp = Instance.new("TextButton")
  566. local Shopbasictp = Instance.new("TextButton")
  567. local Shopsprinklertp = Instance.new("TextButton")
  568. local InstantConversiontp = Instance.new("TextButton")
  569. local MegaMemorytp = Instance.new("TextButton")
  570. local NightMemorytp = Instance.new("TextButton")
  571. local ExtremeMemorytp = Instance.new("TextButton")
  572. local StartHalltp = Instance.new("TextButton")
  573. local Anttp = Instance.new("TextButton")
  574. local Demonmasktp = Instance.new("TextButton")
  575. local TunelBeartp = Instance.new("TextButton")
  576. local WindyBeetp = Instance.new("TextButton")
  577. local Diamondmasktp = Instance.new("TextButton")
  578. local Soon = Instance.new("TextButton")
  579. local GummyMask = Instance.new("TextButton")
  580. local Afkstumptp = Instance.new("TextButton")
  581. local Stinger = Instance.new("TextButton")
  582. local Kingamulettp = Instance.new("TextButton")
  583. local ExtraPage = Instance.new("ScrollingFrame")
  584. local Autodig = Instance.new("TextButton")
  585. local Autobuffitem = Instance.new("TextButton")
  586. local Killcoconutcrab = Instance.new("TextButton")
  587. local KillTunnel = Instance.new("TextButton")
  588. local Usenightbell = Instance.new("TextButton")
  589. local Usefielddice = Instance.new("TextButton")
  590. local Autokillvicious = Instance.new("TextButton")
  591. local Autokillwindy = Instance.new("TextButton")
  592. local Autokillmonster = Instance.new("TextButton")
  593. local RemoteQuest = Instance.new("TextButton")
  594. local Autogumdrop = Instance.new("TextButton")
  595. local FindWindBee = Instance.new("TextButton")
  596. local Useglitter = Instance.new("TextButton")
  597. local Autogliter = Instance.new("TextButton")
  598. local Autococonut = Instance.new("TextButton")
  599. local Autostinger = Instance.new("TextButton")
  600. local Eqipdemonmask = Instance.new("TextButton")
  601. local Equipdemonmask = Instance.new("TextButton")
  602. local Equipgummymask = Instance.new("TextButton")
  603. local Automagicbean = Instance.new("TextButton")
  604. local Bringtornado = Instance.new("TextButton")
  605. local Killstumnail = Instance.new("TextButton")
  606. local Dropweapon = Instance.new("TextButton")
  607. local Noclip = Instance.new("TextButton")
  608. local AutoDispenser = Instance.new("TextButton")
  609. local Autotop = Instance.new("TextButton")
  610. local AutoDispenser_2 = Instance.new("TextButton")
  611. local Autored = Instance.new("TextButton")
  612. local Autoblue = Instance.new("TextButton")
  613. local ExtrasButton = Instance.new("TextButton")
  614. local FarmingButton = Instance.new("TextButton")
  615. local HomeButton = Instance.new("TextButton")
  616. local SettingButton = Instance.new("TextButton")
  617. local WaypointsButton = Instance.new("TextButton")
  618. local SettingPage = Instance.new("Frame")
  619. local Antiafk = Instance.new("TextLabel")
  620. local Antiafkbutton = Instance.new("TextButton")
  621. local Close = Instance.new("TextButton")
  622. local DarkCyberLoadingGUI = Instance.new("ScreenGui")
  623. local LoadingFrame = Instance.new("Frame")
  624. local Loadingimage = Instance.new("ImageLabel")
  625. local Createtitle = Instance.new("TextLabel")
  626. local NameTitle = Instance.new("TextLabel")
  627. local Loadingtext = Instance.new("TextLabel")
  628. local DarkCyberSynapshitGUI = Instance.new("ScreenGui")
  629. local SynapShitPage = Instance.new("Frame")
  630. local Createtitle = Instance.new("TextLabel")
  631. local NameTitle = Instance.new("TextLabel")
  632. local Welcome = Instance.new("TextLabel")
  633. local Ingnore = Instance.new("TextButton")
  634. local OnlyHoney = Instance.new("TextButton")
  635. local FarmBublle = Instance.new("TextButton")
  636. local TweenBtn = Instance.new("TextButton")
  637. local TpBtn = Instance.new("TextButton")
  638. local WalkBtn = Instance.new("TextButton")
  639. local WalkBtn2 = Instance.new("TextButton")
  640. local TypeF = Instance.new("TextLabel")
  641. local Mobbtn = Instance.new("TextButton")
  642. local AutoPolar = Instance.new("TextButton")
  643. local HideTok = Instance.new("TextButton")
  644. local HideB = Instance.new("TextButton")
  645.  
  646.  
  647.  
  648.  
  649. local onlyhoney = false
  650. local nothoney = false
  651. local farmbubble = false
  652. --local automob = false
  653. local TypeFarming = "Tween"
  654.  
  655. function tpT(t,k)
  656.  
  657. if k == nil then k=1 end
  658. local plr = game:service"Players".LocalPlayer;
  659. local tween_s = game:service"TweenService";
  660. local info = TweenInfo.new(k,Enum.EasingStyle.Quad);
  661. local tic_k = tick();
  662. --local params = {...};
  663. --local cframe = CFrame.new(params[1],params[2],params[3]);
  664. local cframe = t;
  665. local tween,err = pcall(function()
  666. local tween = tween_s:Create(plr.Character["HumanoidRootPart"],info,{CFrame=cframe});
  667. local done = false;
  668. --print(done)
  669. tween.Completed:Connect(function()
  670. done=true;
  671. end)
  672. noclip = true
  673. tween:Play();
  674. while(done==false) do
  675. wait()
  676. if act6temp then
  677. tween:Pause()
  678.  
  679. done = true end
  680. --print(tostring(done.."k"))
  681.  
  682. end
  683. noclip = false
  684. -- print(done)
  685.  
  686.  
  687. end)
  688. --syn.write_clipboard(err)
  689. --print(err)
  690. if not tween then return err end
  691.  
  692.  
  693. end
  694.  
  695.  
  696. function tp(t,k)
  697. if TypeFarming == "Tween" then
  698. tpT(t,k)
  699.  
  700. else if TypeFarming=="Tp" then
  701. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = t
  702. if k then wait(k) else wait(1) end
  703. else if TypeFarming=="Walking" then
  704. --game:GetService("Players").LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(t.Position.X,t.Position.Y,t.Position.Z))
  705. --game:GetService("Players").LocalPlayer.Character.Humanoid.MoveToFinished:Wait()
  706. --WalkToHive(t)
  707. local Players = game:GetService("Players")
  708. local Character = Players.LocalPlayer.Character
  709. local Humanoid = Character.Humanoid
  710. local stop = false
  711. Humanoid:MoveTo(t.p)
  712. Humanoid.MoveToFinished:Connect(function()
  713. stop = true
  714. end)
  715. local a = tick()
  716. while (stop == false)do
  717. wait()
  718. if act6temp then
  719. Humanoid:Move(Vector3.new(0, 0, 0))
  720. stop = true
  721.  
  722. end
  723. Dig()
  724. if tick()-a>=5 then
  725. Humanoid:Move(Vector3.new(0, 0, 0))
  726. Character.HumanoidRootPart.CFrame = t
  727. stop = true
  728. --wait(1)
  729. end
  730. end
  731. else
  732. local Players = game:GetService("Players")
  733. local Character = Players.LocalPlayer.Character
  734. local Humanoid = Character.Humanoid
  735. local stop = false
  736. Humanoid:MoveTo(t.p)
  737. Humanoid.MoveToFinished:Connect(function()
  738. stop = true
  739. end)
  740. local a = tick()
  741. while (stop == false)do
  742. Humanoid.WalkSpeed = 100
  743. wait()
  744. if act6temp then
  745. Humanoid:Move(Vector3.new(0, 0, 0))
  746. stop = true
  747.  
  748. end
  749. Dig()
  750. if tick()-a>=5 then
  751. Humanoid:Move(Vector3.new(0, 0, 0))
  752. Character.HumanoidRootPart.CFrame = t
  753. stop = true
  754. --wait(1)
  755. end
  756. end
  757.  
  758. end
  759. end
  760. end
  761.  
  762.  
  763. end
  764.  
  765. --Properties:
  766. DarkCyberMainGUI.Name = "[DarkCyber]MainGUI"
  767. ProtectUI(DarkCyberMainGUI)
  768.  
  769. TweenBtn.Name = "TweenBtn"
  770. TweenBtn.Parent = SettingPage
  771. TweenBtn.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  772. TweenBtn.BorderSizePixel = 0
  773. TweenBtn.Position = UDim2.new(0.3264150947, 0, 0.0853963569, 0)
  774. TweenBtn.Size = UDim2.new(0, 98, 0, 20)
  775. TweenBtn.Font = Enum.Font.GothamBold
  776. TweenBtn.Text = "Tween Farm"
  777. TweenBtn.TextColor3 = Color3.new(1, 1, 1)
  778. TweenBtn.TextSize = 14
  779.  
  780.  
  781. TpBtn.Name = "TpBtn"
  782. TpBtn.Parent = SettingPage
  783. TpBtn.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  784. TpBtn.BorderSizePixel = 0
  785. TpBtn.Position = UDim2.new(0.5264150947, 0, 0.0853963569, 0)
  786. TpBtn.Size = UDim2.new(0, 98, 0, 20)
  787. TpBtn.Font = Enum.Font.GothamBold
  788. TpBtn.Text = "Tp Farm"
  789. TpBtn.TextColor3 = Color3.new(1, 1, 1)
  790. TpBtn.TextSize = 14
  791.  
  792. WalkBtn.Name = "WalkBtn"
  793. WalkBtn.Parent = SettingPage
  794. WalkBtn.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  795. WalkBtn.BorderSizePixel = 0
  796. WalkBtn.Position = UDim2.new(0.7264150947, 0, 0.0853963569, 0)
  797. WalkBtn.Size = UDim2.new(0, 98, 0, 20)
  798. WalkBtn.Font = Enum.Font.GothamBold
  799. WalkBtn.Text = "Walk Farm"
  800. WalkBtn.TextColor3 = Color3.new(1, 1, 1)
  801. WalkBtn.TextSize = 14
  802.  
  803. WalkBtn2.Name = "WalkBtn2"
  804. WalkBtn2.Parent = SettingPage
  805. WalkBtn2.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  806. WalkBtn2.BorderSizePixel = 0
  807. WalkBtn2.Position = UDim2.new(0.3264150947, 0, 0.2853963569, 0)
  808. WalkBtn2.Size = UDim2.new(0, 98, 0, 20)
  809. WalkBtn2.Font = Enum.Font.GothamBold
  810. WalkBtn2.Text = "Walk Farm Fast"
  811. WalkBtn2.TextColor3 = Color3.new(1, 1, 1)
  812. WalkBtn2.TextSize = 14
  813.  
  814.  
  815.  
  816. TypeF.Name = "TypeF"
  817. TypeF.Parent = SettingPage
  818. TypeF.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  819. TypeF.BorderSizePixel = 0
  820. TypeF.Position = UDim2.new(0.0264150947, 0, 0.2853963569, 0)
  821. TypeF.Size = UDim2.new(0, 98, 0, 20)
  822. TypeF.Font = Enum.Font.GothamBold
  823. TypeF.Text = "Type farming: Tween"
  824. TypeF.TextColor3 = Color3.new(1, 1, 1)
  825. TypeF.TextSize = 14
  826.  
  827.  
  828. -- TweenBtn.Name = "TweenBtn"
  829. -- TweenBtn.Parent = SettingPage
  830. -- TweenBtn.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  831. -- TweenBtn.BorderSizePixel = 0
  832. -- TweenBtn.Position = UDim2.new(0.3264150947, 0, 0.0853963569, 0)
  833. -- TweenBtn.Size = UDim2.new(0, 98, 0, 20)
  834. -- TweenBtn.Font = Enum.Font.GothamBold
  835. -- TweenBtn.Text = "Tween Farm"
  836. -- TweenBtn.TextColor3 = Color3.new(1, 1, 1)
  837. -- TweenBtn.TextSize = 14
  838.  
  839.  
  840. Ingnore.Name = "Ingnore"
  841. Ingnore.Parent = ExtraPage
  842. Ingnore.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  843. Ingnore.BorderSizePixel = 0
  844. Ingnore.Position = UDim2.new(0.016, 0, 0.319999999, 0)
  845. Ingnore.Size = UDim2.new(0, 200, 0, 20)
  846. Ingnore.Font = Enum.Font.GothamBold
  847. Ingnore.Text = "Ingnore honey token"
  848. Ingnore.TextColor3 = Color3.new(1, 1, 1)
  849. Ingnore.TextSize = 14
  850.  
  851. Mobbtn.Name = "Mobbtn"
  852. Mobbtn.Parent = ExtraPage
  853. Mobbtn.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  854. Mobbtn.BorderSizePixel = 0
  855. Mobbtn.Position = UDim2.new(0.4, 0, 0.37, 0)
  856. Mobbtn.Size = UDim2.new(0, 200, 0, 20)
  857. Mobbtn.Font = Enum.Font.GothamBold
  858. Mobbtn.Text = "Auto mob"
  859. Mobbtn.TextColor3 = Color3.new(1, 1, 1)
  860. Mobbtn.TextSize = 14
  861.  
  862. AutoPolar.Name = "AutoPolar"
  863. AutoPolar.Parent = ExtraPage
  864. AutoPolar.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  865. AutoPolar.BorderSizePixel = 0
  866. AutoPolar.Position = UDim2.new(0.016, 0, 0.42, 0)
  867. AutoPolar.Size = UDim2.new(0, 400, 0, 20)
  868. AutoPolar.Font = Enum.Font.GothamBold
  869. AutoPolar.Text = "Auto Farm Polar Quest (Quest menu must open)"
  870. AutoPolar.TextColor3 = Color3.new(1, 1, 1)
  871. AutoPolar.TextSize = 14
  872. --AutoPolar.TextWrap = true
  873.  
  874. HideTok.Name = "HideTok"
  875. HideTok.Parent = ExtraPage
  876. HideTok.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  877. HideTok.BorderSizePixel = 0
  878. HideTok.Position = UDim2.new(0.016, 0, 0.47, 0)
  879. HideTok.Size = UDim2.new(0, 200, 0, 20)
  880. HideTok.Font = Enum.Font.GothamBold
  881. HideTok.Text = "Hide Tokens"
  882. HideTok.TextColor3 = Color3.new(1, 1, 1)
  883. HideTok.TextSize = 14
  884.  
  885. HideB.Name = "HideB"
  886. HideB.Parent = ExtraPage
  887. HideB.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  888. HideB.BorderSizePixel = 0
  889. HideB.Position = UDim2.new(0.4, 0, 0.47, 0)
  890. HideB.Size = UDim2.new(0, 200, 0, 20)
  891. HideB.Font = Enum.Font.GothamBold
  892. HideB.Text = "Hide Bees"
  893. HideB.TextColor3 = Color3.new(1, 1, 1)
  894. HideB.TextSize = 14
  895. HideB.Visible = false
  896.  
  897. func.Hide = false
  898. HideTok.MouseButton1Down:Connect(function()
  899. if func.Hide then
  900. func.Hide = false
  901. HideTok.BackgroundColor3 = blue
  902. else
  903. func.Hide = true
  904. HideTok.BackgroundColor3 = red
  905. end
  906. end)
  907.  
  908. func.Hideb = false
  909. HideB.MouseButton1Down:Connect(function()
  910. if func.Hideb then
  911. func.Hideb = false
  912. HideB.BackgroundColor3 = blue
  913. else
  914. func.Hideb = true
  915. HideB.BackgroundColor3 = red
  916. end
  917. end)
  918.  
  919. func.HideT = coroutine.wrap(function()
  920. while wait() do
  921. if func.Hide then
  922. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  923. v.Transparency = 1
  924. if v:FindFirstChild("FrontDecal") then
  925. v.FrontDecal.Transparency = 1
  926. end
  927. if v:FindFirstChild("BackDecal") then
  928. v.BackDecal.Transparency = 1
  929. end
  930.  
  931. end
  932.  
  933. end
  934. end
  935.  
  936. end)
  937. --func.HideT()
  938. OnlyHoney.Name = "OnlyHoney"
  939. OnlyHoney.Parent = ExtraPage
  940. OnlyHoney.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  941. OnlyHoney.BorderSizePixel = 0
  942. OnlyHoney.Position = UDim2.new(0.4, 0, 0.319999999, 0)
  943. OnlyHoney.Size = UDim2.new(0, 200, 0, 20)
  944. OnlyHoney.Font = Enum.Font.GothamBold
  945. OnlyHoney.Text = "Only honey token"
  946. OnlyHoney.TextColor3 = Color3.new(1, 1, 1)
  947. OnlyHoney.TextSize = 14
  948.  
  949. FarmBublle.Name = "FarmBublle"
  950. FarmBublle.Parent = ExtraPage
  951. FarmBublle.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  952. FarmBublle.BorderSizePixel = 0
  953. FarmBublle.Position = UDim2.new(0.016, 0, 0.37, 0)
  954. FarmBublle.Size = UDim2.new(0, 200, 0, 20)
  955. FarmBublle.Font = Enum.Font.GothamBold
  956. FarmBublle.Text = "Auto Farm Bubble Bloat"
  957. FarmBublle.TextColor3 = Color3.new(1, 1, 1)
  958. FarmBublle.TextSize = 14
  959.  
  960. MiniPage.Name = "MiniPage"
  961. MiniPage.Parent = DarkCyberMainGUI
  962. MiniPage.BackgroundColor3 = Color3.new(0.321569, 0.462745, 1)
  963. MiniPage.BorderSizePixel = 0
  964. MiniPage.Position = UDim2.new(0.361979187, 0, -0.7, 0)
  965. MiniPage.Size = UDim2.new(0, 530, 0, 25)
  966.  
  967. Destroy.Name = "Destroy"
  968. Destroy.Parent = MiniPage
  969. Destroy.BackgroundColor3 = Color3.new(1, 1, 1)
  970. Destroy.BackgroundTransparency = 1
  971. Destroy.Position = UDim2.new(0.950854659, 0, 0, 0)
  972. Destroy.Size = UDim2.new(0, 25, 0, 25)
  973. Destroy.Font = Enum.Font.GothamBold
  974. Destroy.Text = "X"
  975. Destroy.TextColor3 = Color3.new(1, 1, 1)
  976. Destroy.TextSize = 20
  977.  
  978. GameText.Name = "GameText"
  979. GameText.Parent = MiniPage
  980. GameText.BackgroundColor3 = Color3.new(1, 1, 1)
  981. GameText.BackgroundTransparency = 1
  982. GameText.Position = UDim2.new(0.337588102, 0, -0.0399999991, 0)
  983. GameText.Size = UDim2.new(0.324587107, 0, 0.999999702, 0)
  984. GameText.Font = Enum.Font.GothamBold
  985. GameText.Text = "Bee Swarm Simulator (Kiet script)"
  986. GameText.TextColor3 = Color3.new(1, 1, 1)
  987. GameText.TextSize = 16
  988.  
  989. MainPage.Name = "MainPage"
  990. MainPage.Parent = MiniPage
  991. MainPage.Active = true
  992. MainPage.BackgroundColor3 = Color3.new(0.321569, 0.462745, 1)
  993. MainPage.BorderSizePixel = 0
  994. MainPage.Position = UDim2.new(0, 0, 1.0016675, 0)
  995. MainPage.Selectable = true
  996. MainPage.Size = UDim2.new(1, 0, 8.9163208, 0)
  997.  
  998. VersionText.Name = "VersionText"
  999. VersionText.Parent = MainPage
  1000. VersionText.BackgroundColor3 = Color3.new(1, 1, 1)
  1001. VersionText.BackgroundTransparency = 1
  1002. VersionText.Position = UDim2.new(-0.00158959627, 0, 0.914668798, 0)
  1003. VersionText.Size = UDim2.new(0.213481352, 0, 0.08324752, 0)
  1004. VersionText.Font = Enum.Font.GothamBold
  1005. VersionText.Text = "Version: 1.0.0"
  1006. VersionText.TextColor3 = Color3.new(1, 1, 1)
  1007. VersionText.TextSize = 16
  1008.  
  1009. HomePage.Name = "HomePage"
  1010. HomePage.Parent = MainPage
  1011. HomePage.BackgroundColor3 = Color3.new(1, 1, 1)
  1012. HomePage.BackgroundTransparency = 1
  1013. HomePage.BorderSizePixel = 0
  1014. HomePage.Position = UDim2.new(0, 0, 0.132234111, 0)
  1015. HomePage.Size = UDim2.new(1, 0, 0.782434821, 0)
  1016.  
  1017. ImageGang.Name = "ImageGang"
  1018. ImageGang.Parent = HomePage
  1019. ImageGang.BackgroundColor3 = Color3.new(1, 1, 1)
  1020. ImageGang.Position = UDim2.new(0.0295857992, 0, 0.0601093024, 0)
  1021. ImageGang.Size = UDim2.new(0, 70, 0, 70)
  1022. ImageGang.Image = "http://www.roblox.com/asset/?id=3766691866"
  1023.  
  1024. CreditText.Name = "CreditText"
  1025. CreditText.Parent = HomePage
  1026. CreditText.BackgroundColor3 = Color3.new(1, 1, 1)
  1027. CreditText.BackgroundTransparency = 1
  1028. CreditText.Position = UDim2.new(0.188195452, 0, 0.0601093657, 0)
  1029. CreditText.Size = UDim2.new(0.809829473, 0, 0.382513672, 0)
  1030. CreditText.Font = Enum.Font.GothamBold
  1031. CreditText.Text = "Gui Create : DarkCyber (Edited by Kiet1308)"
  1032. CreditText.TextColor3 = Color3.new(1, 1, 1)
  1033. CreditText.TextSize = 20
  1034.  
  1035. JoinText.Name = "JoinText"
  1036. JoinText.Parent = HomePage
  1037. JoinText.BackgroundColor3 = Color3.new(1, 1, 1)
  1038. JoinText.BackgroundTransparency = 1
  1039. JoinText.Position = UDim2.new(0, 0, 0.453551859, 0)
  1040. JoinText.Size = UDim2.new(0.998024881, 0, 0.146612123, 0)
  1041. JoinText.Font = Enum.Font.GothamBold
  1042. JoinText.Text = "Join Discord for more Update"
  1043. JoinText.TextColor3 = Color3.new(1, 1, 1)
  1044. JoinText.TextSize = 17
  1045.  
  1046. DiscordlinkTest.Name = "DiscordlinkTest"
  1047. DiscordlinkTest.Parent = HomePage
  1048. DiscordlinkTest.BackgroundColor3 = Color3.new(1, 1, 1)
  1049. DiscordlinkTest.BackgroundTransparency = 1
  1050. DiscordlinkTest.Position = UDim2.new(0, 0, 0.601092875, 0)
  1051. DiscordlinkTest.Size = UDim2.new(0.998024881, 0, 0.146612123, 0)
  1052. DiscordlinkTest.Font = Enum.Font.GothamBold
  1053. DiscordlinkTest.Text = "Link: https://discord.gg/pNAcBsdbBB"
  1054. DiscordlinkTest.TextColor3 = Color3.new(1, 1, 1)
  1055. DiscordlinkTest.TextSize = 17
  1056.  
  1057. Copylinkdiscord.Name = "Copylinkdiscord"
  1058. Copylinkdiscord.Parent = HomePage
  1059. Copylinkdiscord.BackgroundColor3 = Color3.new(0.454902, 0.137255, 1)
  1060. Copylinkdiscord.BorderSizePixel = 0
  1061. Copylinkdiscord.Position = UDim2.new(0.0295858085, 0, 0.79781419, 0)
  1062. Copylinkdiscord.Size = UDim2.new(0.476331353, 0, 0.131147563, 0)
  1063. Copylinkdiscord.Font = Enum.Font.GothamBold
  1064. Copylinkdiscord.Text = "COPY LINK DISCORD"
  1065. Copylinkdiscord.TextColor3 = Color3.new(1, 1, 1)
  1066. Copylinkdiscord.TextSize = 14
  1067.  
  1068. FarmingPage.Name = "FarmingPage"
  1069. FarmingPage.Parent = MainPage
  1070. FarmingPage.BackgroundColor3 = Color3.new(1, 1, 1)
  1071. FarmingPage.BackgroundTransparency = 1
  1072. FarmingPage.Position = UDim2.new(-5.75803369e-08, 0, 0.127000019, 0)
  1073. FarmingPage.Size = UDim2.new(0.999777615, 0, 0.787668824, 0)
  1074. FarmingPage.Visible = false
  1075.  
  1076. FieldSelectPage.Name = "FieldSelectPage"
  1077. FieldSelectPage.Parent = FarmingPage
  1078. FieldSelectPage.BackgroundColor3 = Color3.new(0.482353, 0.447059, 1)
  1079. FieldSelectPage.BorderSizePixel = 0
  1080. FieldSelectPage.Position = UDim2.new(0.0228317082, 0, 0.16433613, 0)
  1081. FieldSelectPage.Size = UDim2.new(0.400000006, 0, 0.835663855, 0)
  1082. FieldSelectPage.ScrollBarThickness = 5
  1083.  
  1084. SunflowerButton.Name = "SunflowerButton"
  1085. SunflowerButton.Parent = FieldSelectPage
  1086. SunflowerButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1087. SunflowerButton.BorderSizePixel = 0
  1088. SunflowerButton.Position = UDim2.new(0.108427808, 0, 0.0228219759, 0)
  1089. SunflowerButton.Size = UDim2.new(0, 160, 0, 20)
  1090. SunflowerButton.Font = Enum.Font.GothamBold
  1091. SunflowerButton.Text = "Sunflower Field"
  1092. SunflowerButton.TextColor3 = Color3.new(1, 1, 1)
  1093. SunflowerButton.TextSize = 14
  1094.  
  1095. MushroomButton.Name = "MushroomButton"
  1096. MushroomButton.Parent = FieldSelectPage
  1097. MushroomButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1098. MushroomButton.BorderSizePixel = 0
  1099. MushroomButton.Position = UDim2.new(0.108427808, 0, 0.0791205987, 0)
  1100. MushroomButton.Size = UDim2.new(0, 160, 0, 20)
  1101. MushroomButton.Font = Enum.Font.GothamBold
  1102. MushroomButton.Text = "Mushroom Field"
  1103. MushroomButton.TextColor3 = Color3.new(1, 1, 1)
  1104. MushroomButton.TextSize = 14
  1105.  
  1106. SpiderButton.Name = "SpiderButton"
  1107. SpiderButton.Parent = FieldSelectPage
  1108. SpiderButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1109. SpiderButton.BorderSizePixel = 0
  1110. SpiderButton.Position = UDim2.new(0.108427808, 0, 0.412541032, 0)
  1111. SpiderButton.Size = UDim2.new(0, 160, 0, 20)
  1112. SpiderButton.Font = Enum.Font.GothamBold
  1113. SpiderButton.Text = "Spider Field"
  1114. SpiderButton.TextColor3 = Color3.new(1, 1, 1)
  1115. SpiderButton.TextSize = 14
  1116.  
  1117. BambooButton.Name = "BambooButton"
  1118. BambooButton.Parent = FieldSelectPage
  1119. BambooButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1120. BambooButton.BorderSizePixel = 0
  1121. BambooButton.Position = UDim2.new(0.108427808, 0, 0.355216533, 0)
  1122. BambooButton.Size = UDim2.new(0, 160, 0, 20)
  1123. BambooButton.Font = Enum.Font.GothamBold
  1124. BambooButton.Text = "Bamboo Field"
  1125. BambooButton.TextColor3 = Color3.new(1, 1, 1)
  1126. BambooButton.TextSize = 14
  1127.  
  1128. RoseButton.Name = "RoseButton"
  1129. RoseButton.Parent = FieldSelectPage
  1130. RoseButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1131. RoseButton.BorderSizePixel = 0
  1132. RoseButton.Position = UDim2.new(0.108427808, 0, 0.524258256, 0)
  1133. RoseButton.Size = UDim2.new(0, 160, 0, 20)
  1134. RoseButton.Font = Enum.Font.GothamBold
  1135. RoseButton.Text = "Rose Field"
  1136. RoseButton.TextColor3 = Color3.new(1, 1, 1)
  1137. RoseButton.TextSize = 14
  1138.  
  1139. PineTreeButton.Name = "PineTreeButton"
  1140. PineTreeButton.Parent = FieldSelectPage
  1141. PineTreeButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1142. PineTreeButton.BorderSizePixel = 0
  1143. PineTreeButton.Position = UDim2.new(0.108427808, 0, 0.467443049, 0)
  1144. PineTreeButton.Size = UDim2.new(0, 160, 0, 20)
  1145. PineTreeButton.Font = Enum.Font.GothamBold
  1146. PineTreeButton.Text = "Pine Tree Field"
  1147. PineTreeButton.TextColor3 = Color3.new(1, 1, 1)
  1148. PineTreeButton.TextSize = 14
  1149.  
  1150. CactusButton.Name = "CactusButton"
  1151. CactusButton.Parent = FieldSelectPage
  1152. CactusButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1153. CactusButton.BorderSizePixel = 0
  1154. CactusButton.Position = UDim2.new(0.108427808, 0, 0.579347968, 0)
  1155. CactusButton.Size = UDim2.new(0, 160, 0, 20)
  1156. CactusButton.Font = Enum.Font.GothamBold
  1157. CactusButton.Text = "Cactus Field"
  1158. CactusButton.TextColor3 = Color3.new(1, 1, 1)
  1159. CactusButton.TextSize = 14
  1160.  
  1161. PumpkinButton.Name = "PumpkinButton"
  1162. PumpkinButton.Parent = FieldSelectPage
  1163. PumpkinButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1164. PumpkinButton.BorderSizePixel = 0
  1165. PumpkinButton.Position = UDim2.new(0.108427808, 0, 0.633908749, 0)
  1166. PumpkinButton.Size = UDim2.new(0, 160, 0, 20)
  1167. PumpkinButton.Font = Enum.Font.GothamBold
  1168. PumpkinButton.Text = "Pumpkin Field"
  1169. PumpkinButton.TextColor3 = Color3.new(1, 1, 1)
  1170. PumpkinButton.TextSize = 14
  1171.  
  1172. PineappleButton.Name = "PineappleButton"
  1173. PineappleButton.Parent = FieldSelectPage
  1174. PineappleButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1175. PineappleButton.BorderSizePixel = 0
  1176. PineappleButton.Position = UDim2.new(0.108427808, 0, 0.688469529, 0)
  1177. PineappleButton.Size = UDim2.new(0, 160, 0, 20)
  1178. PineappleButton.Font = Enum.Font.GothamBold
  1179. PineappleButton.Text = "Pineapple Field"
  1180. PineappleButton.TextColor3 = Color3.new(1, 1, 1)
  1181. PineappleButton.TextSize = 14
  1182.  
  1183. StumpButton.Name = "StumpButton"
  1184. StumpButton.Parent = FieldSelectPage
  1185. StumpButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1186. StumpButton.BorderSizePixel = 0
  1187. StumpButton.Position = UDim2.new(0.108427808, 0, 0.74303031, 0)
  1188. StumpButton.Size = UDim2.new(0, 160, 0, 20)
  1189. StumpButton.Font = Enum.Font.GothamBold
  1190. StumpButton.Text = "Stump Field"
  1191. StumpButton.TextColor3 = Color3.new(1, 1, 1)
  1192. StumpButton.TextSize = 14
  1193.  
  1194. MountainTopButton.Name = "MountainTopButton"
  1195. MountainTopButton.Parent = FieldSelectPage
  1196. MountainTopButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1197. MountainTopButton.BorderSizePixel = 0
  1198. MountainTopButton.Position = UDim2.new(0.108427808, 0, 0.797487676, 0)
  1199. MountainTopButton.Size = UDim2.new(0, 160, 0, 20)
  1200. MountainTopButton.Font = Enum.Font.GothamBold
  1201. MountainTopButton.Text = "Mountain Top Field"
  1202. MountainTopButton.TextColor3 = Color3.new(1, 1, 1)
  1203. MountainTopButton.TextSize = 14
  1204.  
  1205. CoconutButton.Name = "CoconutButton"
  1206. CoconutButton.Parent = FieldSelectPage
  1207. CoconutButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1208. CoconutButton.BorderSizePixel = 0
  1209. CoconutButton.Position = UDim2.new(0.108427808, 0, 0.852136731, 0)
  1210. CoconutButton.Size = UDim2.new(0, 160, 0, 20)
  1211. CoconutButton.Font = Enum.Font.GothamBold
  1212. CoconutButton.Text = "Coconut Field"
  1213. CoconutButton.TextColor3 = Color3.new(1, 1, 1)
  1214. CoconutButton.TextSize = 14
  1215.  
  1216. PepperButton.Name = "PepperButton"
  1217. PepperButton.Parent = FieldSelectPage
  1218. PepperButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1219. PepperButton.BorderSizePixel = 0
  1220. PepperButton.Position = UDim2.new(0.108427808, 0, 0.908951104, 0)
  1221. PepperButton.Size = UDim2.new(0, 160, 0, 20)
  1222. PepperButton.Font = Enum.Font.GothamBold
  1223. PepperButton.Text = "Pepper Field"
  1224. PepperButton.TextColor3 = Color3.new(1, 1, 1)
  1225. PepperButton.TextSize = 14
  1226.  
  1227. StawberryButton.Name = "StawberryButton"
  1228. StawberryButton.Parent = FieldSelectPage
  1229. StawberryButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1230. StawberryButton.BorderSizePixel = 0
  1231. StawberryButton.Position = UDim2.new(0.108427808, 0, 0.300172061, 0)
  1232. StawberryButton.Size = UDim2.new(0, 160, 0, 20)
  1233. StawberryButton.Font = Enum.Font.GothamBold
  1234. StawberryButton.Text = "Strawberry Field"
  1235. StawberryButton.TextColor3 = Color3.new(1, 1, 1)
  1236. StawberryButton.TextSize = 14
  1237.  
  1238. BlueflowerButton.Name = "BlueflowerButton"
  1239. BlueflowerButton.Parent = FieldSelectPage
  1240. BlueflowerButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1241. BlueflowerButton.BorderSizePixel = 0
  1242. BlueflowerButton.Position = UDim2.new(0.108427808, 0, 0.135357112, 0)
  1243. BlueflowerButton.Size = UDim2.new(0, 160, 0, 20)
  1244. BlueflowerButton.Font = Enum.Font.GothamBold
  1245. BlueflowerButton.Text = "Blue Folower Field"
  1246. BlueflowerButton.TextColor3 = Color3.new(1, 1, 1)
  1247. BlueflowerButton.TextSize = 14
  1248.  
  1249. DanrButton.Name = "DanrButton"
  1250. DanrButton.Parent = FieldSelectPage
  1251. DanrButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1252. DanrButton.BorderSizePixel = 0
  1253. DanrButton.Position = UDim2.new(0.108427808, 0, 0.189853355, 0)
  1254. DanrButton.Size = UDim2.new(0, 160, 0, 20)
  1255. DanrButton.Font = Enum.Font.GothamBold
  1256. DanrButton.Text = "Dandelion Field"
  1257. DanrButton.TextColor3 = Color3.new(1, 1, 1)
  1258. DanrButton.TextSize = 14
  1259.  
  1260. DanrButton_2.Name = "DanrButton"
  1261. DanrButton_2.Parent = FieldSelectPage
  1262. DanrButton_2.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1263. DanrButton_2.BorderSizePixel = 0
  1264. DanrButton_2.Position = UDim2.new(0.108427808, 0, 0.244349569, 0)
  1265. DanrButton_2.Size = UDim2.new(0, 160, 0, 20)
  1266. DanrButton_2.Font = Enum.Font.GothamBold
  1267. DanrButton_2.Text = "Clover Field"
  1268. DanrButton_2.TextColor3 = Color3.new(1, 1, 1)
  1269. DanrButton_2.TextSize = 14
  1270.  
  1271. FieldSelectText.Name = "FieldSelectText"
  1272. FieldSelectText.Parent = FarmingPage
  1273. FieldSelectText.BackgroundColor3 = Color3.new(1, 1, 1)
  1274. FieldSelectText.BackgroundTransparency = 1
  1275. FieldSelectText.Position = UDim2.new(0.0247862451, 0, 0.0436922573, 0)
  1276. FieldSelectText.Size = UDim2.new(0.398045629, 0, 0.114787988, 0)
  1277. FieldSelectText.Font = Enum.Font.GothamBlack
  1278. FieldSelectText.Text = "Field Select"
  1279. FieldSelectText.TextColor3 = Color3.new(1, 1, 1)
  1280. FieldSelectText.TextSize = 16
  1281.  
  1282. FieldText.Name = "FieldText"
  1283. FieldText.Parent = FarmingPage
  1284. FieldText.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1285. FieldText.BorderSizePixel = 0
  1286. FieldText.Position = UDim2.new(0.446999997, 0, 0.170000002, 0)
  1287. FieldText.Size = UDim2.new(0.530130506, 0, 0.100000001, 0)
  1288. FieldText.Font = Enum.Font.GothamBold
  1289. FieldText.Text = " Field Select: Loading..."
  1290. FieldText.TextColor3 = Color3.new(1, 1, 1)
  1291. FieldText.TextSize = 14
  1292. FieldText.TextXAlignment = Enum.TextXAlignment.Left
  1293.  
  1294. StartButton.Name = "StartButton"
  1295. StartButton.Parent = FarmingPage
  1296. StartButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1297. StartButton.BorderSizePixel = 0
  1298. StartButton.Position = UDim2.new(0.446999997, 0, 0.300000012, 0)
  1299. StartButton.Size = UDim2.new(0.530328393, 0, 0.100000001, 0)
  1300. StartButton.Font = Enum.Font.GothamBold
  1301. StartButton.Text = "Start Farming"
  1302. StartButton.TextColor3 = Color3.new(1, 1, 1)
  1303. StartButton.TextSize = 14
  1304.  
  1305. FieldSelectText_2.Name = "FieldSelectText"
  1306. FieldSelectText_2.Parent = FarmingPage
  1307. FieldSelectText_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1308. FieldSelectText_2.BackgroundTransparency = 1
  1309. FieldSelectText_2.Position = UDim2.new(0.447186798, 0, 0.0436922573, 0)
  1310. FieldSelectText_2.Size = UDim2.new(0.530446231, 0, 0.114787988, 0)
  1311. FieldSelectText_2.Font = Enum.Font.GothamBlack
  1312. FieldSelectText_2.Text = "Farming Status"
  1313. FieldSelectText_2.TextColor3 = Color3.new(1, 1, 1)
  1314. FieldSelectText_2.TextSize = 14
  1315.  
  1316. WaypointPage.Name = "WaypointPage"
  1317. WaypointPage.Parent = MainPage
  1318. WaypointPage.BackgroundColor3 = Color3.new(1, 1, 1)
  1319. WaypointPage.BackgroundTransparency = 1
  1320. WaypointPage.Position = UDim2.new(0, 0, 0.127000034, 0)
  1321. WaypointPage.Size = UDim2.new(0, 530, 0, 174)
  1322. WaypointPage.Visible = false
  1323. WaypointPage.CanvasSize = UDim2.new(0, 0, 3, 0)
  1324. WaypointPage.ScrollBarThickness = 5
  1325.  
  1326. Suntp.Name = "Suntp"
  1327. Suntp.Parent = WaypointPage
  1328. Suntp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1329. Suntp.BorderSizePixel = 0
  1330. Suntp.Position = UDim2.new(0.0160000008, 0, 0.0199999996, 0)
  1331. Suntp.Size = UDim2.new(0, 120, 0, 20)
  1332. Suntp.Font = Enum.Font.GothamBold
  1333. Suntp.Text = "Sunflower Field"
  1334. Suntp.TextColor3 = Color3.new(1, 1, 1)
  1335. Suntp.TextSize = 14
  1336.  
  1337. Mushtp.Name = "Mushtp"
  1338. Mushtp.Parent = WaypointPage
  1339. Mushtp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1340. Mushtp.BorderSizePixel = 0
  1341. Mushtp.Position = UDim2.new(0.261000007, 0, 0.0199999996, 0)
  1342. Mushtp.Size = UDim2.new(0, 120, 0, 20)
  1343. Mushtp.Font = Enum.Font.GothamBold
  1344. Mushtp.Text = "Mushroom Field"
  1345. Mushtp.TextColor3 = Color3.new(1, 1, 1)
  1346. Mushtp.TextSize = 14
  1347.  
  1348. Dantp.Name = "Dantp"
  1349. Dantp.Parent = WaypointPage
  1350. Dantp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1351. Dantp.BorderSizePixel = 0
  1352. Dantp.Position = UDim2.new(0.510999978, 0, 0.0199999996, 0)
  1353. Dantp.Size = UDim2.new(0, 120, 0, 20)
  1354. Dantp.Font = Enum.Font.GothamBold
  1355. Dantp.Text = "Dandelion Field"
  1356. Dantp.TextColor3 = Color3.new(1, 1, 1)
  1357. Dantp.TextSize = 14
  1358.  
  1359. Blueftp.Name = "Blueftp"
  1360. Blueftp.Parent = WaypointPage
  1361. Blueftp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1362. Blueftp.BorderSizePixel = 0
  1363. Blueftp.Position = UDim2.new(0.755999982, 0, 0.0199999996, 0)
  1364. Blueftp.Size = UDim2.new(0, 120, 0, 20)
  1365. Blueftp.Font = Enum.Font.GothamBold
  1366. Blueftp.Text = "Blueflower Field"
  1367. Blueftp.TextColor3 = Color3.new(1, 1, 1)
  1368. Blueftp.TextSize = 14
  1369.  
  1370. Clovertp.Name = "Clovertp"
  1371. Clovertp.Parent = WaypointPage
  1372. Clovertp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1373. Clovertp.BorderSizePixel = 0
  1374. Clovertp.Position = UDim2.new(0.0160000008, 0, 0.0599999987, 0)
  1375. Clovertp.Size = UDim2.new(0, 120, 0, 20)
  1376. Clovertp.Font = Enum.Font.GothamBold
  1377. Clovertp.Text = "Clover Field"
  1378. Clovertp.TextColor3 = Color3.new(1, 1, 1)
  1379. Clovertp.TextSize = 14
  1380.  
  1381. Bambootp.Name = "Bambootp"
  1382. Bambootp.Parent = WaypointPage
  1383. Bambootp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1384. Bambootp.BorderSizePixel = 0
  1385. Bambootp.Position = UDim2.new(0.261000007, 0, 0.0599999987, 0)
  1386. Bambootp.Size = UDim2.new(0, 120, 0, 20)
  1387. Bambootp.Font = Enum.Font.GothamBold
  1388. Bambootp.Text = "Bamboo Field"
  1389. Bambootp.TextColor3 = Color3.new(1, 1, 1)
  1390. Bambootp.TextSize = 14
  1391.  
  1392. Spidertp.Name = "Spidertp"
  1393. Spidertp.Parent = WaypointPage
  1394. Spidertp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1395. Spidertp.BorderSizePixel = 0
  1396. Spidertp.Position = UDim2.new(0.510999978, 0, 0.0599999987, 0)
  1397. Spidertp.Size = UDim2.new(0, 120, 0, 20)
  1398. Spidertp.Font = Enum.Font.GothamBold
  1399. Spidertp.Text = "Spider Field"
  1400. Spidertp.TextColor3 = Color3.new(1, 1, 1)
  1401. Spidertp.TextSize = 14
  1402.  
  1403. Strawtp.Name = "Strawtp"
  1404. Strawtp.Parent = WaypointPage
  1405. Strawtp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1406. Strawtp.BorderSizePixel = 0
  1407. Strawtp.Position = UDim2.new(0.755999982, 0, 0.0599999987, 0)
  1408. Strawtp.Size = UDim2.new(0, 120, 0, 20)
  1409. Strawtp.Font = Enum.Font.GothamBold
  1410. Strawtp.Text = "Strawbery Field"
  1411. Strawtp.TextColor3 = Color3.new(1, 1, 1)
  1412. Strawtp.TextSize = 14
  1413.  
  1414. Castustp.Name = "Castustp"
  1415. Castustp.Parent = WaypointPage
  1416. Castustp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1417. Castustp.BorderSizePixel = 0
  1418. Castustp.Position = UDim2.new(0.0160000008, 0, 0.100354269, 0)
  1419. Castustp.Size = UDim2.new(0, 120, 0, 20)
  1420. Castustp.Font = Enum.Font.GothamBold
  1421. Castustp.Text = "Cactus Field"
  1422. Castustp.TextColor3 = Color3.new(1, 1, 1)
  1423. Castustp.TextSize = 14
  1424.  
  1425. Pumtp.Name = "Pumtp"
  1426. Pumtp.Parent = WaypointPage
  1427. Pumtp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1428. Pumtp.BorderSizePixel = 0
  1429. Pumtp.Position = UDim2.new(0.261000007, 0, 0.100354269, 0)
  1430. Pumtp.Size = UDim2.new(0, 120, 0, 20)
  1431. Pumtp.Font = Enum.Font.GothamBold
  1432. Pumtp.Text = "Pumpkin Field"
  1433. Pumtp.TextColor3 = Color3.new(1, 1, 1)
  1434. Pumtp.TextSize = 14
  1435.  
  1436. Pintreetp.Name = "Pintreetp"
  1437. Pintreetp.Parent = WaypointPage
  1438. Pintreetp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1439. Pintreetp.BorderSizePixel = 0
  1440. Pintreetp.Position = UDim2.new(0.510999978, 0, 0.100354269, 0)
  1441. Pintreetp.Size = UDim2.new(0, 120, 0, 20)
  1442. Pintreetp.Font = Enum.Font.GothamBold
  1443. Pintreetp.Text = "Pine Tree Field"
  1444. Pintreetp.TextColor3 = Color3.new(1, 1, 1)
  1445. Pintreetp.TextSize = 14
  1446.  
  1447. Rosetp.Name = "Rosetp"
  1448. Rosetp.Parent = WaypointPage
  1449. Rosetp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1450. Rosetp.BorderSizePixel = 0
  1451. Rosetp.Position = UDim2.new(0.755999982, 0, 0.100354269, 0)
  1452. Rosetp.Size = UDim2.new(0, 120, 0, 20)
  1453. Rosetp.Font = Enum.Font.GothamBold
  1454. Rosetp.Text = "Rose Field"
  1455. Rosetp.TextColor3 = Color3.new(1, 1, 1)
  1456. Rosetp.TextSize = 14
  1457.  
  1458. Toptp.Name = "Toptp"
  1459. Toptp.Parent = WaypointPage
  1460. Toptp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1461. Toptp.BorderSizePixel = 0
  1462. Toptp.Position = UDim2.new(0.755999982, 0, 0.140000001, 0)
  1463. Toptp.Size = UDim2.new(0, 120, 0, 20)
  1464. Toptp.Font = Enum.Font.GothamBold
  1465. Toptp.Text = "Mountain Field"
  1466. Toptp.TextColor3 = Color3.new(1, 1, 1)
  1467. Toptp.TextSize = 14
  1468.  
  1469. Coconuttp.Name = "Coconuttp"
  1470. Coconuttp.Parent = WaypointPage
  1471. Coconuttp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1472. Coconuttp.BorderSizePixel = 0
  1473. Coconuttp.Position = UDim2.new(0.510999978, 0, 0.140000001, 0)
  1474. Coconuttp.Size = UDim2.new(0, 120, 0, 20)
  1475. Coconuttp.Font = Enum.Font.GothamBold
  1476. Coconuttp.Text = "Coconut Field"
  1477. Coconuttp.TextColor3 = Color3.new(1, 1, 1)
  1478. Coconuttp.TextSize = 14
  1479.  
  1480. Stumptp.Name = "Stumptp"
  1481. Stumptp.Parent = WaypointPage
  1482. Stumptp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1483. Stumptp.BorderSizePixel = 0
  1484. Stumptp.Position = UDim2.new(0.261000007, 0, 0.140000001, 0)
  1485. Stumptp.Size = UDim2.new(0, 120, 0, 20)
  1486. Stumptp.Font = Enum.Font.GothamBold
  1487. Stumptp.Text = "Stump Field"
  1488. Stumptp.TextColor3 = Color3.new(1, 1, 1)
  1489. Stumptp.TextSize = 14
  1490.  
  1491. Pineappletp.Name = "Pineappletp"
  1492. Pineappletp.Parent = WaypointPage
  1493. Pineappletp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1494. Pineappletp.BorderSizePixel = 0
  1495. Pineappletp.Position = UDim2.new(0.0160000008, 0, 0.140000001, 0)
  1496. Pineappletp.Size = UDim2.new(0, 120, 0, 20)
  1497. Pineappletp.Font = Enum.Font.GothamBold
  1498. Pineappletp.Text = "Pineapple Field"
  1499. Pineappletp.TextColor3 = Color3.new(1, 1, 1)
  1500. Pineappletp.TextSize = 14
  1501.  
  1502. Peppertp.Name = "Peppertp"
  1503. Peppertp.Parent = WaypointPage
  1504. Peppertp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1505. Peppertp.BorderSizePixel = 0
  1506. Peppertp.Position = UDim2.new(0.0160000008, 0, 0.180000007, 0)
  1507. Peppertp.Size = UDim2.new(0, 120, 0, 20)
  1508. Peppertp.Font = Enum.Font.GothamBold
  1509. Peppertp.Text = "Pepper Field"
  1510. Peppertp.TextColor3 = Color3.new(1, 1, 1)
  1511. Peppertp.TextSize = 14
  1512.  
  1513. SummonSprouttp.Name = "SummonSprouttp"
  1514. SummonSprouttp.Parent = WaypointPage
  1515. SummonSprouttp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1516. SummonSprouttp.BorderSizePixel = 0
  1517. SummonSprouttp.Position = UDim2.new(0.263000011, 0, 0.180000007, 0)
  1518. SummonSprouttp.Size = UDim2.new(0, 120, 0, 20)
  1519. SummonSprouttp.Font = Enum.Font.GothamBold
  1520. SummonSprouttp.Text = "Sprout"
  1521. SummonSprouttp.TextColor3 = Color3.new(1, 1, 1)
  1522. SummonSprouttp.TextSize = 14
  1523.  
  1524. Coconutshoptp.Name = "Coconutshoptp"
  1525. Coconutshoptp.Parent = WaypointPage
  1526. Coconutshoptp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1527. Coconutshoptp.BorderSizePixel = 0
  1528. Coconutshoptp.Position = UDim2.new(0.513000011, 0, 0.180000007, 0)
  1529. Coconutshoptp.Size = UDim2.new(0, 120, 0, 20)
  1530. Coconutshoptp.Font = Enum.Font.GothamBold
  1531. Coconutshoptp.Text = "Coconut Shop"
  1532. Coconutshoptp.TextColor3 = Color3.new(1, 1, 1)
  1533. Coconutshoptp.TextSize = 14
  1534.  
  1535. Petaltp.Name = "Petaltp"
  1536. Petaltp.Parent = WaypointPage
  1537. Petaltp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1538. Petaltp.BorderSizePixel = 0
  1539. Petaltp.Position = UDim2.new(0.755999982, 0, 0.180000007, 0)
  1540. Petaltp.Size = UDim2.new(0, 120, 0, 20)
  1541. Petaltp.Font = Enum.Font.GothamBold
  1542. Petaltp.Text = "Petal Shop"
  1543. Petaltp.TextColor3 = Color3.new(1, 1, 1)
  1544. Petaltp.TextSize = 14
  1545.  
  1546. Shopproctp.Name = "Shopproctp"
  1547. Shopproctp.Parent = WaypointPage
  1548. Shopproctp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1549. Shopproctp.BorderSizePixel = 0
  1550. Shopproctp.Position = UDim2.new(0.263000011, 0, 0.219999999, 0)
  1551. Shopproctp.Size = UDim2.new(0, 120, 0, 20)
  1552. Shopproctp.Font = Enum.Font.GothamBold
  1553. Shopproctp.Text = "Pro Shop"
  1554. Shopproctp.TextColor3 = Color3.new(1, 1, 1)
  1555. Shopproctp.TextSize = 14
  1556.  
  1557. Shoptoptp.Name = "Shoptoptp"
  1558. Shoptoptp.Parent = WaypointPage
  1559. Shoptoptp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1560. Shoptoptp.BorderSizePixel = 0
  1561. Shoptoptp.Position = UDim2.new(0.513000011, 0, 0.219999999, 0)
  1562. Shoptoptp.Size = UDim2.new(0, 120, 0, 20)
  1563. Shoptoptp.Font = Enum.Font.GothamBold
  1564. Shoptoptp.Text = "Master Shop"
  1565. Shoptoptp.TextColor3 = Color3.new(1, 1, 1)
  1566. Shoptoptp.TextSize = 14
  1567.  
  1568. Shopmoontp.Name = "Shopmoontp"
  1569. Shopmoontp.Parent = WaypointPage
  1570. Shopmoontp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1571. Shopmoontp.BorderSizePixel = 0
  1572. Shopmoontp.Position = UDim2.new(0.755999982, 0, 0.219999999, 0)
  1573. Shopmoontp.Size = UDim2.new(0, 120, 0, 20)
  1574. Shopmoontp.Font = Enum.Font.GothamBold
  1575. Shopmoontp.Text = "Moon Charm"
  1576. Shopmoontp.TextColor3 = Color3.new(1, 1, 1)
  1577. Shopmoontp.TextSize = 14
  1578.  
  1579. Shopbasictp.Name = "Shopbasictp"
  1580. Shopbasictp.Parent = WaypointPage
  1581. Shopbasictp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1582. Shopbasictp.BorderSizePixel = 0
  1583. Shopbasictp.Position = UDim2.new(0.0160000008, 0, 0.219999999, 0)
  1584. Shopbasictp.Size = UDim2.new(0, 120, 0, 20)
  1585. Shopbasictp.Font = Enum.Font.GothamBold
  1586. Shopbasictp.Text = "Noob Shop"
  1587. Shopbasictp.TextColor3 = Color3.new(1, 1, 1)
  1588. Shopbasictp.TextSize = 14
  1589.  
  1590. Shopsprinklertp.Name = "Shopsprinklertp"
  1591. Shopsprinklertp.Parent = WaypointPage
  1592. Shopsprinklertp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1593. Shopsprinklertp.BorderSizePixel = 0
  1594. Shopsprinklertp.Position = UDim2.new(0.0160000008, 0, 0.25999999, 0)
  1595. Shopsprinklertp.Size = UDim2.new(0, 120, 0, 20)
  1596. Shopsprinklertp.Font = Enum.Font.GothamBold
  1597. Shopsprinklertp.Text = "Sprinkler Shop"
  1598. Shopsprinklertp.TextColor3 = Color3.new(1, 1, 1)
  1599. Shopsprinklertp.TextSize = 14
  1600.  
  1601. InstantConversiontp.Name = "InstantConversiontp"
  1602. InstantConversiontp.Parent = WaypointPage
  1603. InstantConversiontp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1604. InstantConversiontp.BorderSizePixel = 0
  1605. InstantConversiontp.Position = UDim2.new(0.264773577, 0, 0.259568214, 0)
  1606. InstantConversiontp.Size = UDim2.new(0, 120, 0, 20)
  1607. InstantConversiontp.Font = Enum.Font.GothamBold
  1608. InstantConversiontp.Text = "Instant Sell"
  1609. InstantConversiontp.TextColor3 = Color3.new(1, 1, 1)
  1610. InstantConversiontp.TextSize = 14
  1611.  
  1612. MegaMemorytp.Name = "MegaMemorytp"
  1613. MegaMemorytp.Parent = WaypointPage
  1614. MegaMemorytp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1615. MegaMemorytp.BorderSizePixel = 0
  1616. MegaMemorytp.Position = UDim2.new(0.514773548, 0, 0.259568214, 0)
  1617. MegaMemorytp.Size = UDim2.new(0, 120, 0, 20)
  1618. MegaMemorytp.Font = Enum.Font.GothamBold
  1619. MegaMemorytp.Text = "Mega Memory"
  1620. MegaMemorytp.TextColor3 = Color3.new(1, 1, 1)
  1621. MegaMemorytp.TextSize = 14
  1622.  
  1623. NightMemorytp.Name = "NightMemorytp"
  1624. NightMemorytp.Parent = WaypointPage
  1625. NightMemorytp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1626. NightMemorytp.BorderSizePixel = 0
  1627. NightMemorytp.Position = UDim2.new(0.755999982, 0, 0.259568214, 0)
  1628. NightMemorytp.Size = UDim2.new(0, 120, 0, 20)
  1629. NightMemorytp.Font = Enum.Font.GothamBold
  1630. NightMemorytp.Text = "Night Memory"
  1631. NightMemorytp.TextColor3 = Color3.new(1, 1, 1)
  1632. NightMemorytp.TextSize = 14
  1633.  
  1634. ExtremeMemorytp.Name = "ExtremeMemorytp"
  1635. ExtremeMemorytp.Parent = WaypointPage
  1636. ExtremeMemorytp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1637. ExtremeMemorytp.BorderSizePixel = 0
  1638. ExtremeMemorytp.Position = UDim2.new(0.0160000008, 0, 0.300000012, 0)
  1639. ExtremeMemorytp.Size = UDim2.new(0, 120, 0, 20)
  1640. ExtremeMemorytp.Font = Enum.Font.GothamBold
  1641. ExtremeMemorytp.Text = "Extreme Memory"
  1642. ExtremeMemorytp.TextColor3 = Color3.new(1, 1, 1)
  1643. ExtremeMemorytp.TextSize = 14
  1644.  
  1645. StartHalltp.Name = "StartHalltp"
  1646. StartHalltp.Parent = WaypointPage
  1647. StartHalltp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1648. StartHalltp.BorderSizePixel = 0
  1649. StartHalltp.Position = UDim2.new(0.264999986, 0, 0.300000012, 0)
  1650. StartHalltp.Size = UDim2.new(0, 120, 0, 20)
  1651. StartHalltp.Font = Enum.Font.GothamBold
  1652. StartHalltp.Text = "Star Hall"
  1653. StartHalltp.TextColor3 = Color3.new(1, 1, 1)
  1654. StartHalltp.TextSize = 14
  1655.  
  1656. Anttp.Name = "Anttp"
  1657. Anttp.Parent = WaypointPage
  1658. Anttp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1659. Anttp.BorderSizePixel = 0
  1660. Anttp.Position = UDim2.new(0.514999986, 0, 0.300000012, 0)
  1661. Anttp.Size = UDim2.new(0, 120, 0, 20)
  1662. Anttp.Font = Enum.Font.GothamBold
  1663. Anttp.Text = "Ant"
  1664. Anttp.TextColor3 = Color3.new(1, 1, 1)
  1665. Anttp.TextSize = 14
  1666.  
  1667. Demonmasktp.Name = "Demonmasktp"
  1668. Demonmasktp.Parent = WaypointPage
  1669. Demonmasktp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1670. Demonmasktp.BorderSizePixel = 0
  1671. Demonmasktp.Position = UDim2.new(0.0160000008, 0, 0.379999995, 0)
  1672. Demonmasktp.Size = UDim2.new(0, 120, 0, 20)
  1673. Demonmasktp.Font = Enum.Font.GothamBold
  1674. Demonmasktp.Text = "Demon Mask"
  1675. Demonmasktp.TextColor3 = Color3.new(1, 1, 1)
  1676. Demonmasktp.TextSize = 14
  1677.  
  1678. TunelBeartp.Name = "TunelBeartp"
  1679. TunelBeartp.Parent = WaypointPage
  1680. TunelBeartp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1681. TunelBeartp.BorderSizePixel = 0
  1682. TunelBeartp.Position = UDim2.new(0.0140000004, 0, 0.340000004, 0)
  1683. TunelBeartp.Size = UDim2.new(0, 120, 0, 20)
  1684. TunelBeartp.Font = Enum.Font.GothamBold
  1685. TunelBeartp.Text = "Tunel Bear"
  1686. TunelBeartp.TextColor3 = Color3.new(1, 1, 1)
  1687. TunelBeartp.TextSize = 14
  1688.  
  1689. WindyBeetp.Name = "WindyBeetp"
  1690. WindyBeetp.Parent = WaypointPage
  1691. WindyBeetp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1692. WindyBeetp.BorderSizePixel = 0
  1693. WindyBeetp.Position = UDim2.new(0.263000011, 0, 0.340000004, 0)
  1694. WindyBeetp.Size = UDim2.new(0, 120, 0, 20)
  1695. WindyBeetp.Font = Enum.Font.GothamBold
  1696. WindyBeetp.Text = "WindyBee"
  1697. WindyBeetp.TextColor3 = Color3.new(1, 1, 1)
  1698. WindyBeetp.TextSize = 14
  1699.  
  1700. Diamondmasktp.Name = "Diamondmasktp"
  1701. Diamondmasktp.Parent = WaypointPage
  1702. Diamondmasktp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1703. Diamondmasktp.BorderSizePixel = 0
  1704. Diamondmasktp.Position = UDim2.new(0.513999999, 0, 0.340000004, 0)
  1705. Diamondmasktp.Size = UDim2.new(0, 120, 0, 20)
  1706. Diamondmasktp.Font = Enum.Font.GothamBold
  1707. Diamondmasktp.Text = "Diamond Mask"
  1708. Diamondmasktp.TextColor3 = Color3.new(1, 1, 1)
  1709. Diamondmasktp.TextSize = 14
  1710.  
  1711. Soon.Name = "Soon"
  1712. Soon.Parent = WaypointPage
  1713. Soon.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1714. Soon.BorderSizePixel = 0
  1715. Soon.Position = UDim2.new(0.755999982, 0, 0.379999995, 0)
  1716. Soon.Size = UDim2.new(0, 120, 0, 20)
  1717. Soon.Font = Enum.Font.GothamBold
  1718. Soon.Text = "SOON"
  1719. Soon.TextColor3 = Color3.new(1, 1, 1)
  1720. Soon.TextSize = 14
  1721.  
  1722. GummyMask.Name = "GummyMask"
  1723. GummyMask.Parent = WaypointPage
  1724. GummyMask.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1725. GummyMask.BorderSizePixel = 0
  1726. GummyMask.Position = UDim2.new(0.755999982, 0, 0.340000004, 0)
  1727. GummyMask.Size = UDim2.new(0, 120, 0, 20)
  1728. GummyMask.Font = Enum.Font.GothamBold
  1729. GummyMask.Text = "Gummy Mask"
  1730. GummyMask.TextColor3 = Color3.new(1, 1, 1)
  1731. GummyMask.TextSize = 14
  1732.  
  1733. Afkstumptp.Name = "Afkstumptp"
  1734. Afkstumptp.Parent = WaypointPage
  1735. Afkstumptp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1736. Afkstumptp.BorderSizePixel = 0
  1737. Afkstumptp.Position = UDim2.new(0.513999999, 0, 0.379999995, 0)
  1738. Afkstumptp.Size = UDim2.new(0, 120, 0, 20)
  1739. Afkstumptp.Font = Enum.Font.GothamBold
  1740. Afkstumptp.Text = "AFK Stumnail"
  1741. Afkstumptp.TextColor3 = Color3.new(1, 1, 1)
  1742. Afkstumptp.TextSize = 14
  1743.  
  1744. Stinger.Name = "Stinger"
  1745. Stinger.Parent = WaypointPage
  1746. Stinger.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1747. Stinger.BorderSizePixel = 0
  1748. Stinger.Position = UDim2.new(0.263000011, 0, 0.379999995, 0)
  1749. Stinger.Size = UDim2.new(0, 120, 0, 20)
  1750. Stinger.Font = Enum.Font.GothamBold
  1751. Stinger.Text = "Stinger"
  1752. Stinger.TextColor3 = Color3.new(1, 1, 1)
  1753. Stinger.TextSize = 14
  1754.  
  1755. Kingamulettp.Name = "Kingamulettp"
  1756. Kingamulettp.Parent = WaypointPage
  1757. Kingamulettp.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1758. Kingamulettp.BorderSizePixel = 0
  1759. Kingamulettp.Position = UDim2.new(0.754622638, 0, 0.300000012, 0)
  1760. Kingamulettp.Size = UDim2.new(0, 120, 0, 20)
  1761. Kingamulettp.Font = Enum.Font.GothamBold
  1762. Kingamulettp.Text = "King Amulet"
  1763. Kingamulettp.TextColor3 = Color3.new(1, 1, 1)
  1764. Kingamulettp.TextSize = 14
  1765.  
  1766. ExtraPage.Name = "ExtraPage"
  1767. ExtraPage.Parent = MainPage
  1768. ExtraPage.BackgroundColor3 = Color3.new(1, 1, 1)
  1769. ExtraPage.BackgroundTransparency = 1
  1770. ExtraPage.Position = UDim2.new(0, 0, 0.127000034, 0)
  1771. ExtraPage.Size = UDim2.new(0, 530, 0, 174)
  1772. ExtraPage.Visible = false
  1773. ExtraPage.CanvasSize = UDim2.new(0, 0, 3, 0)
  1774. ExtraPage.ScrollBarThickness = 5
  1775.  
  1776. Autodig.Name = "Autodig"
  1777. Autodig.Parent = ExtraPage
  1778. Autodig.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1779. Autodig.BorderSizePixel = 0
  1780. Autodig.Position = UDim2.new(0.0160000008, 0, 0.0199999996, 0)
  1781. Autodig.Size = UDim2.new(0, 120, 0, 20)
  1782. Autodig.Font = Enum.Font.GothamBold
  1783. Autodig.Text = "Auto Dig"
  1784. Autodig.TextColor3 = Color3.new(1, 1, 1)
  1785. Autodig.TextSize = 14
  1786.  
  1787. Autobuffitem.Name = "Autobuffitem"
  1788. Autobuffitem.Parent = ExtraPage
  1789. Autobuffitem.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1790. Autobuffitem.BorderSizePixel = 0
  1791. Autobuffitem.Position = UDim2.new(0.261000007, 0, 0.0199999996, 0)
  1792. Autobuffitem.Size = UDim2.new(0, 120, 0, 20)
  1793. Autobuffitem.Font = Enum.Font.GothamBold
  1794. Autobuffitem.Text = "Auto Item Buff"
  1795. Autobuffitem.TextColor3 = Color3.new(1, 1, 1)
  1796. Autobuffitem.TextSize = 14
  1797.  
  1798. Killcoconutcrab.Name = "Killcoconutcrab"
  1799. Killcoconutcrab.Parent = ExtraPage
  1800. Killcoconutcrab.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1801. Killcoconutcrab.BorderSizePixel = 0
  1802. Killcoconutcrab.Position = UDim2.new(0.510999978, 0, 0.0199999996, 0)
  1803. Killcoconutcrab.Size = UDim2.new(0, 120, 0, 20)
  1804. Killcoconutcrab.Font = Enum.Font.GothamBold
  1805. Killcoconutcrab.Text = "Kill Coconut Crab"
  1806. Killcoconutcrab.TextColor3 = Color3.new(1, 1, 1)
  1807. Killcoconutcrab.TextScaled = true
  1808. Killcoconutcrab.TextSize = 14
  1809. Killcoconutcrab.TextWrapped = true
  1810.  
  1811. KillTunnel.Name = "KillTunnel"
  1812. KillTunnel.Parent = ExtraPage
  1813. KillTunnel.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1814. KillTunnel.BorderSizePixel = 0
  1815. KillTunnel.Position = UDim2.new(0.755999982, 0, 0.0199999996, 0)
  1816. KillTunnel.Size = UDim2.new(0, 120, 0, 20)
  1817. KillTunnel.Font = Enum.Font.GothamBold
  1818. KillTunnel.Text = "Kill Tunnel"
  1819. KillTunnel.TextColor3 = Color3.new(1, 1, 1)
  1820. KillTunnel.TextSize = 14
  1821.  
  1822. Usenightbell.Name = "Usenightbell"
  1823. Usenightbell.Parent = ExtraPage
  1824. Usenightbell.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1825. Usenightbell.BorderSizePixel = 0
  1826. Usenightbell.Position = UDim2.new(0.0160000008, 0, 0.0599999987, 0)
  1827. Usenightbell.Size = UDim2.new(0, 120, 0, 20)
  1828. Usenightbell.Font = Enum.Font.GothamBold
  1829. Usenightbell.Text = "Use Night Bell"
  1830. Usenightbell.TextColor3 = Color3.new(1, 1, 1)
  1831. Usenightbell.TextSize = 14
  1832.  
  1833. Usefielddice.Name = "Usefielddice"
  1834. Usefielddice.Parent = ExtraPage
  1835. Usefielddice.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1836. Usefielddice.BorderSizePixel = 0
  1837. Usefielddice.Position = UDim2.new(0.261000007, 0, 0.0599999987, 0)
  1838. Usefielddice.Size = UDim2.new(0, 120, 0, 20)
  1839. Usefielddice.Font = Enum.Font.GothamBold
  1840. Usefielddice.Text = "Use Field Dice"
  1841. Usefielddice.TextColor3 = Color3.new(1, 1, 1)
  1842. Usefielddice.TextSize = 14
  1843.  
  1844. Autokillvicious.Name = "Autokillvicious"
  1845. Autokillvicious.Parent = ExtraPage
  1846. Autokillvicious.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1847. Autokillvicious.BorderSizePixel = 0
  1848. Autokillvicious.Position = UDim2.new(0.510999978, 0, 0.0599999987, 0)
  1849. Autokillvicious.Size = UDim2.new(0, 120, 0, 20)
  1850. Autokillvicious.Font = Enum.Font.GothamBold
  1851. Autokillvicious.Text = "Auto Kill Vicious"
  1852. Autokillvicious.TextColor3 = Color3.new(1, 1, 1)
  1853. Autokillvicious.TextSize = 14
  1854.  
  1855. Autokillwindy.Name = "Autokillwindy"
  1856. Autokillwindy.Parent = ExtraPage
  1857. Autokillwindy.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1858. Autokillwindy.BorderSizePixel = 0
  1859. Autokillwindy.Position = UDim2.new(0.755999982, 0, 0.0599999987, 0)
  1860. Autokillwindy.Size = UDim2.new(0, 120, 0, 20)
  1861. Autokillwindy.Font = Enum.Font.GothamBold
  1862. Autokillwindy.Text = "Auto Kill Windy "
  1863. Autokillwindy.TextColor3 = Color3.new(1, 1, 1)
  1864. Autokillwindy.TextSize = 14
  1865.  
  1866. Autokillmonster.Name = "Autokillmonster"
  1867. Autokillmonster.Parent = ExtraPage
  1868. Autokillmonster.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1869. Autokillmonster.BorderSizePixel = 0
  1870. Autokillmonster.Position = UDim2.new(0.755999982, 0, 0.100000001, 0)
  1871. Autokillmonster.Size = UDim2.new(0, 120, 0, 20)
  1872. Autokillmonster.Font = Enum.Font.GothamBold
  1873. Autokillmonster.Text = "Auto Night Bell"
  1874. Autokillmonster.TextColor3 = Color3.new(1, 1, 1)
  1875. Autokillmonster.TextSize = 14
  1876.  
  1877. RemoteQuest.Name = "RemoteQuest"
  1878. RemoteQuest.Parent = ExtraPage
  1879. RemoteQuest.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1880. RemoteQuest.BorderSizePixel = 0
  1881. RemoteQuest.Position = UDim2.new(0.510999978, 0, 0.100000001, 0)
  1882. RemoteQuest.Size = UDim2.new(0, 120, 0, 20)
  1883. RemoteQuest.Font = Enum.Font.GothamBold
  1884. RemoteQuest.Text = "Auto Quest"
  1885. RemoteQuest.TextColor3 = Color3.new(1, 1, 1)
  1886. RemoteQuest.TextSize = 14
  1887.  
  1888. Autogumdrop.Name = "Autogumdrop"
  1889. Autogumdrop.Parent = ExtraPage
  1890. Autogumdrop.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1891. Autogumdrop.BorderSizePixel = 0
  1892. Autogumdrop.Position = UDim2.new(0.261000007, 0, 0.100000001, 0)
  1893. Autogumdrop.Size = UDim2.new(0, 120, 0, 20)
  1894. Autogumdrop.Font = Enum.Font.GothamBold
  1895. Autogumdrop.Text = "Auto Gumdrop"
  1896. Autogumdrop.TextColor3 = Color3.new(1, 1, 1)
  1897. Autogumdrop.TextSize = 14
  1898.  
  1899. FindWindBee.Name = "FindWindBee"
  1900. FindWindBee.Parent = ExtraPage
  1901. FindWindBee.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1902. FindWindBee.BorderSizePixel = 0
  1903. FindWindBee.Position = UDim2.new(0.0160000008, 0, 0.100000001, 0)
  1904. FindWindBee.Size = UDim2.new(0, 120, 0, 20)
  1905. FindWindBee.Font = Enum.Font.GothamBold
  1906. FindWindBee.Text = "Find Windy Bee"
  1907. FindWindBee.TextColor3 = Color3.new(1, 1, 1)
  1908. FindWindBee.TextSize = 14
  1909.  
  1910. Useglitter.Name = "Useglitter"
  1911. Useglitter.Parent = ExtraPage
  1912. Useglitter.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1913. Useglitter.BorderSizePixel = 0
  1914. Useglitter.Position = UDim2.new(0.755999982, 0, 0.140375406, 0)
  1915. Useglitter.Size = UDim2.new(0, 120, 0, 20)
  1916. Useglitter.Font = Enum.Font.GothamBold
  1917. Useglitter.Text = "Auto Farm Sparkles"
  1918. Useglitter.TextColor3 = Color3.new(1, 1, 1)
  1919. Useglitter.TextSize = 14
  1920.  
  1921. Autogliter.Name = "Autogliter"
  1922. Autogliter.Parent = ExtraPage
  1923. Autogliter.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1924. Autogliter.BorderSizePixel = 0
  1925. Autogliter.Position = UDim2.new(0.510999978, 0, 0.140375406, 0)
  1926. Autogliter.Size = UDim2.new(0, 120, 0, 20)
  1927. Autogliter.Font = Enum.Font.GothamBold
  1928. Autogliter.Text = "Auto Glitter"
  1929. Autogliter.TextColor3 = Color3.new(1, 1, 1)
  1930. Autogliter.TextSize = 14
  1931.  
  1932. Autococonut.Name = "Autococonut"
  1933. Autococonut.Parent = ExtraPage
  1934. Autococonut.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1935. Autococonut.BorderSizePixel = 0
  1936. Autococonut.Position = UDim2.new(0.0160000008, 0, 0.140375406, 0)
  1937. Autococonut.Size = UDim2.new(0, 120, 0, 20)
  1938. Autococonut.Font = Enum.Font.GothamBold
  1939. Autococonut.Text = "Auto Coconut"
  1940. Autococonut.TextColor3 = Color3.new(1, 1, 1)
  1941. Autococonut.TextSize = 14
  1942.  
  1943. Autostinger.Name = "Autostinger"
  1944. Autostinger.Parent = ExtraPage
  1945. Autostinger.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1946. Autostinger.BorderSizePixel = 0
  1947. Autostinger.Position = UDim2.new(0.261000007, 0, 0.140375406, 0)
  1948. Autostinger.Size = UDim2.new(0, 120, 0, 20)
  1949. Autostinger.Font = Enum.Font.GothamBold
  1950. Autostinger.Text = "Auto Stinger"
  1951. Autostinger.TextColor3 = Color3.new(1, 1, 1)
  1952. Autostinger.TextSize = 14
  1953.  
  1954. Eqipdemonmask.Name = "Eqipdemonmask"
  1955. Eqipdemonmask.Parent = ExtraPage
  1956. Eqipdemonmask.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1957. Eqipdemonmask.BorderSizePixel = 0
  1958. Eqipdemonmask.Position = UDim2.new(0.755999982, 0, 0.180000007, 0)
  1959. Eqipdemonmask.Size = UDim2.new(0, 120, 0, 20)
  1960. Eqipdemonmask.Font = Enum.Font.GothamBold
  1961. Eqipdemonmask.Text = "Equip Diamond Mask"
  1962. Eqipdemonmask.TextColor3 = Color3.new(1, 1, 1)
  1963. Eqipdemonmask.TextScaled = true
  1964. Eqipdemonmask.TextSize = 14
  1965. Eqipdemonmask.TextWrapped = true
  1966.  
  1967. Equipdemonmask.Name = "Equipdemonmask"
  1968. Equipdemonmask.Parent = ExtraPage
  1969. Equipdemonmask.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1970. Equipdemonmask.BorderSizePixel = 0
  1971. Equipdemonmask.Position = UDim2.new(0.510999978, 0, 0.180000007, 0)
  1972. Equipdemonmask.Size = UDim2.new(0, 120, 0, 20)
  1973. Equipdemonmask.Font = Enum.Font.GothamBold
  1974. Equipdemonmask.Text = "Equip Demon Mask"
  1975. Equipdemonmask.TextColor3 = Color3.new(1, 1, 1)
  1976. Equipdemonmask.TextScaled = true
  1977. Equipdemonmask.TextSize = 14
  1978. Equipdemonmask.TextWrapped = true
  1979.  
  1980. Equipgummymask.Name = "Equipgummymask"
  1981. Equipgummymask.Parent = ExtraPage
  1982. Equipgummymask.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1983. Equipgummymask.BorderSizePixel = 0
  1984. Equipgummymask.Position = UDim2.new(0.261000007, 0, 0.180000007, 0)
  1985. Equipgummymask.Size = UDim2.new(0, 120, 0, 20)
  1986. Equipgummymask.Font = Enum.Font.GothamBold
  1987. Equipgummymask.Text = "Equip Gummy Mask"
  1988. Equipgummymask.TextColor3 = Color3.new(1, 1, 1)
  1989. Equipgummymask.TextScaled = true
  1990. Equipgummymask.TextSize = 14
  1991. Equipgummymask.TextWrapped = true
  1992.  
  1993. Automagicbean.Name = "Automagicbean"
  1994. Automagicbean.Parent = ExtraPage
  1995. Automagicbean.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  1996. Automagicbean.BorderSizePixel = 0
  1997. Automagicbean.Position = UDim2.new(0.0160000008, 0, 0.180000007, 0)
  1998. Automagicbean.Size = UDim2.new(0, 120, 0, 20)
  1999. Automagicbean.Font = Enum.Font.GothamBold
  2000. Automagicbean.Text = "Auto Magic Bean"
  2001. Automagicbean.TextColor3 = Color3.new(1, 1, 1)
  2002. Automagicbean.TextSize = 14
  2003.  
  2004. Bringtornado.Name = "Bringtornado"
  2005. Bringtornado.Parent = ExtraPage
  2006. Bringtornado.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2007. Bringtornado.BorderSizePixel = 0
  2008. Bringtornado.Position = UDim2.new(0.755999982, 0, 0.219999999, 0)
  2009. Bringtornado.Size = UDim2.new(0, 120, 0, 20)
  2010. Bringtornado.Font = Enum.Font.GothamBold
  2011. Bringtornado.Text = "Bring Tornado"
  2012. Bringtornado.TextColor3 = Color3.new(1, 1, 1)
  2013. Bringtornado.TextSize = 14
  2014.  
  2015. Killstumnail.Name = "Killstumnail"
  2016. Killstumnail.Parent = ExtraPage
  2017. Killstumnail.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2018. Killstumnail.BorderSizePixel = 0
  2019. Killstumnail.Position = UDim2.new(0.510999978, 0, 0.219999999, 0)
  2020. Killstumnail.Size = UDim2.new(0, 120, 0, 20)
  2021. Killstumnail.Font = Enum.Font.GothamBold
  2022. Killstumnail.Text = "Auto Farm Leaves"
  2023. Killstumnail.TextColor3 = Color3.new(1, 1, 1)
  2024. Killstumnail.TextSize = 14
  2025.  
  2026. Dropweapon.Name = "Dropweapon"
  2027. Dropweapon.Parent = ExtraPage
  2028. Dropweapon.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2029. Dropweapon.BorderSizePixel = 0
  2030. Dropweapon.Position = UDim2.new(0.261000007, 0, 0.219999999, 0)
  2031. Dropweapon.Size = UDim2.new(0, 120, 0, 20)
  2032. Dropweapon.Font = Enum.Font.GothamBold
  2033. Dropweapon.Text = "Auto snowflake"
  2034. Dropweapon.TextColor3 = Color3.new(1, 1, 1)
  2035. Dropweapon.TextSize = 14
  2036.  
  2037. Noclip.Name = "Noclip"
  2038. Noclip.Parent = ExtraPage
  2039. Noclip.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2040. Noclip.BorderSizePixel = 0
  2041. Noclip.Position = UDim2.new(0.0160000008, 0, 0.219999999, 0)
  2042. Noclip.Size = UDim2.new(0, 120, 0, 20)
  2043. Noclip.Font = Enum.Font.GothamBold
  2044. Noclip.Text = "Noclip"
  2045. Noclip.TextColor3 = Color3.new(1, 1, 1)
  2046. Noclip.TextSize = 14
  2047.  
  2048. AutoDispenser.Name = "AutoDispenser"
  2049. AutoDispenser.Parent = ExtraPage
  2050. AutoDispenser.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2051. AutoDispenser.BorderSizePixel = 0
  2052. AutoDispenser.Position = UDim2.new(0.0144905448, 0, 0.261870772, 0)
  2053. AutoDispenser.Size = UDim2.new(0, 120, 0, 20)
  2054. AutoDispenser.Font = Enum.Font.GothamBold
  2055. AutoDispenser.Text = "Auto Dispenser"
  2056. AutoDispenser.TextColor3 = Color3.new(1, 1, 1)
  2057. AutoDispenser.TextSize = 14
  2058.  
  2059. Autotop.Name = "Autotop"
  2060. Autotop.Parent = ExtraPage
  2061. Autotop.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2062. Autotop.BorderSizePixel = 0
  2063. Autotop.Position = UDim2.new(0.259773552, 0, 0.261870772, 0)
  2064. Autotop.Size = UDim2.new(0, 120, 0, 20)
  2065. Autotop.Font = Enum.Font.GothamBold
  2066. Autotop.Text = "Auto Dispenser"
  2067. Autotop.TextColor3 = Color3.new(1, 1, 1)
  2068. Autotop.TextSize = 14
  2069.  
  2070. AutoDispenser_2.Name = "AutoDispenser"
  2071. AutoDispenser_2.Parent = ExtraPage
  2072. AutoDispenser_2.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2073. AutoDispenser_2.BorderSizePixel = 0
  2074. AutoDispenser_2.Position = UDim2.new(0.259773552, 0, 0.261870772, 0)
  2075. AutoDispenser_2.Size = UDim2.new(0, 120, 0, 20)
  2076. AutoDispenser_2.Font = Enum.Font.GothamBold
  2077. AutoDispenser_2.Text = "Auto Top Booster"
  2078. AutoDispenser_2.TextColor3 = Color3.new(1, 1, 1)
  2079. AutoDispenser_2.TextSize = 14
  2080.  
  2081. Autored.Name = "Autored"
  2082. Autored.Parent = ExtraPage
  2083. Autored.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2084. Autored.BorderSizePixel = 0
  2085. Autored.Position = UDim2.new(0.510716915, 0, 0.261870772, 0)
  2086. Autored.Size = UDim2.new(0, 120, 0, 20)
  2087. Autored.Font = Enum.Font.GothamBold
  2088. Autored.Text = "Auto Red Booster"
  2089. Autored.TextColor3 = Color3.new(1, 1, 1)
  2090. Autored.TextScaled = true
  2091. Autored.TextSize = 14
  2092. Autored.TextWrapped = true
  2093.  
  2094. Autoblue.Name = "Autoblue"
  2095. Autoblue.Parent = ExtraPage
  2096. Autoblue.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2097. Autoblue.BorderSizePixel = 0
  2098. Autoblue.Position = UDim2.new(0.755999923, 0, 0.261870772, 0)
  2099. Autoblue.Size = UDim2.new(0, 120, 0, 20)
  2100. Autoblue.Font = Enum.Font.GothamBold
  2101. Autoblue.Text = "Auto Blue Booster"
  2102. Autoblue.TextColor3 = Color3.new(1, 1, 1)
  2103. Autoblue.TextScaled = true
  2104. Autoblue.TextSize = 14
  2105. Autoblue.TextWrapped = true
  2106.  
  2107. ExtrasButton.Name = "ExtrasButton"
  2108. ExtrasButton.Parent = MainPage
  2109. ExtrasButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2110. ExtrasButton.BorderSizePixel = 0
  2111. ExtrasButton.Position = UDim2.new(0.538195491, 0, 0.0399999991, 0)
  2112. ExtrasButton.Size = UDim2.new(0.159999996, 0, 0.0869999975, 0)
  2113. ExtrasButton.Font = Enum.Font.GothamBold
  2114. ExtrasButton.Text = "Extras"
  2115. ExtrasButton.TextColor3 = Color3.new(1, 1, 1)
  2116. ExtrasButton.TextSize = 14
  2117.  
  2118. FarmingButton.Name = "FarmingButton"
  2119. FarmingButton.Parent = MainPage
  2120. FarmingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2121. FarmingButton.BorderSizePixel = 0
  2122. FarmingButton.Position = UDim2.new(0.198195487, 0, 0.0399999991, 0)
  2123. FarmingButton.Size = UDim2.new(0.159999996, 0, 0.0869999975, 0)
  2124. FarmingButton.Font = Enum.Font.GothamBold
  2125. FarmingButton.Text = "Farming"
  2126. FarmingButton.TextColor3 = Color3.new(1, 1, 1)
  2127. FarmingButton.TextSize = 14
  2128.  
  2129. HomeButton.Name = "HomeButton"
  2130. HomeButton.Parent = MainPage
  2131. HomeButton.BackgroundColor3 = Color3.new(0.345098, 0.14902, 1)
  2132. HomeButton.BorderSizePixel = 0
  2133. HomeButton.Position = UDim2.new(0.0281954892, 0, 0.0399999991, 0)
  2134. HomeButton.Size = UDim2.new(0.159999996, 0, 0.0869999975, 0)
  2135. HomeButton.Font = Enum.Font.GothamBold
  2136. HomeButton.Text = "Home"
  2137. HomeButton.TextColor3 = Color3.new(1, 1, 1)
  2138. HomeButton.TextSize = 14
  2139.  
  2140. SettingButton.Name = "SettingButton"
  2141. SettingButton.Parent = MainPage
  2142. SettingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2143. SettingButton.BorderSizePixel = 0
  2144. SettingButton.Position = UDim2.new(0.708195508, 0, 0.0399999991, 0)
  2145. SettingButton.Size = UDim2.new(0.159999996, 0, 0.0869999975, 0)
  2146. SettingButton.Font = Enum.Font.GothamBold
  2147. SettingButton.Text = "Settings"
  2148. SettingButton.TextColor3 = Color3.new(1, 1, 1)
  2149. SettingButton.TextSize = 14
  2150.  
  2151. WaypointsButton.Name = "WaypointsButton"
  2152. WaypointsButton.Parent = MainPage
  2153. WaypointsButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2154. WaypointsButton.BorderSizePixel = 0
  2155. WaypointsButton.Position = UDim2.new(0.368195474, 0, 0.0399999991, 0)
  2156. WaypointsButton.Size = UDim2.new(0.159999996, 0, 0.0869999975, 0)
  2157. WaypointsButton.Font = Enum.Font.GothamBold
  2158. WaypointsButton.Text = "Waypoints"
  2159. WaypointsButton.TextColor3 = Color3.new(1, 1, 1)
  2160. WaypointsButton.TextSize = 14
  2161.  
  2162. SettingPage.Name = "SettingPage"
  2163. SettingPage.Parent = MainPage
  2164. SettingPage.BackgroundColor3 = Color3.new(1, 1, 1)
  2165. SettingPage.BackgroundTransparency = 1
  2166. SettingPage.Position = UDim2.new(-0, 0, 0.127000004, 0)
  2167. SettingPage.Size = UDim2.new(1, 0, 0.787999988, 0)
  2168. SettingPage.Visible = false
  2169.  
  2170. Antiafk.Name = "Antiafk"
  2171. Antiafk.Parent = SettingPage
  2172. Antiafk.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2173. Antiafk.BorderSizePixel = 0
  2174. Antiafk.Position = UDim2.new(0.0264150947, 0, 0.0853963569, 0)
  2175. Antiafk.Size = UDim2.new(0, 98, 0, 20)
  2176. Antiafk.Font = Enum.Font.GothamBold
  2177. Antiafk.Text = "Anti AFK"
  2178. Antiafk.TextColor3 = Color3.new(1, 1, 1)
  2179. Antiafk.TextSize = 14
  2180.  
  2181. Antiafkbutton.Name = "Antiafkbutton"
  2182. Antiafkbutton.Parent = Antiafk
  2183. Antiafkbutton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2184. Antiafkbutton.BorderSizePixel = 0
  2185. Antiafkbutton.Position = UDim2.new(1.08163261, 0, 0, 0)
  2186. Antiafkbutton.Size = UDim2.new(0, 20, 0, 20)
  2187. Antiafkbutton.Font = Enum.Font.GothamBold
  2188. Antiafkbutton.Text = "X"
  2189. Antiafkbutton.TextColor3 = Color3.new(1, 1, 1)
  2190. Antiafkbutton.TextScaled = true
  2191. Antiafkbutton.TextSize = 14
  2192. Antiafkbutton.TextWrapped = true
  2193.  
  2194. Close.Name = "Close"
  2195. Close.Parent = MiniPage
  2196. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  2197. Close.BackgroundTransparency = 1
  2198. Close.Position = UDim2.new(0.00760612637, 0, 0.0016666688, 0)
  2199. Close.Size = UDim2.new(0, 25, 0, 25)
  2200. Close.Font = Enum.Font.GothamBold
  2201. Close.Text = "-"
  2202. Close.TextColor3 = Color3.new(1, 1, 1)
  2203. Close.TextSize = 20
  2204.  
  2205. DarkCyberLoadingGUI.Name = "[DarkCyber]LoadingGUI"
  2206. DarkCyberLoadingGUI.Parent = game.CoreGui
  2207.  
  2208. LoadingFrame.Name = "Loading Frame"
  2209. LoadingFrame.Parent = DarkCyberLoadingGUI
  2210. LoadingFrame.BackgroundColor3 = Color3.new(0.321569, 0.462745, 1)
  2211. LoadingFrame.BorderSizePixel = 0
  2212. LoadingFrame.Position = UDim2.new(0.410933673, 0, 0.416230351, 0)
  2213. LoadingFrame.Size = UDim2.new(0, 342, 0, 127)
  2214.  
  2215. Createtitle.Name = "Createtitle"
  2216. Createtitle.Parent = LoadingFrame
  2217. Createtitle.BackgroundColor3 = Color3.new(1, 1, 1)
  2218. Createtitle.BackgroundTransparency = 1
  2219. Createtitle.Size = UDim2.new(0, 108, 0, 25)
  2220. Createtitle.Font = Enum.Font.GothamBlack
  2221. Createtitle.Text = "Dark Cyber"
  2222. Createtitle.TextColor3 = Color3.new(1, 1, 1)
  2223. Createtitle.TextSize = 14
  2224.  
  2225. NameTitle.Name = "NameTitle"
  2226. NameTitle.Parent = Createtitle
  2227. NameTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  2228. NameTitle.BackgroundTransparency = 1
  2229. NameTitle.Position = UDim2.new(1, 0, 0, 0)
  2230. NameTitle.Size = UDim2.new(0, 233, 0, 25)
  2231. NameTitle.Font = Enum.Font.GothamBold
  2232. NameTitle.Text = "Bee Swarm Simulator (Kiet script)"
  2233. NameTitle.TextColor3 = Color3.new(1, 1, 1)
  2234. NameTitle.TextSize = 14
  2235.  
  2236. Loadingimage.Name = "Loadingimage"
  2237. Loadingimage.Parent = LoadingFrame
  2238. Loadingimage.BackgroundColor3 = Color3.new(1, 1, 1)
  2239. Loadingimage.BackgroundTransparency = 1
  2240. Loadingimage.BorderSizePixel = 0
  2241. Loadingimage.Position = UDim2.new(0.112938613, 0, 0.29838711, 0)
  2242. Loadingimage.Size = UDim2.new(0, 50, 0, 50)
  2243. Loadingimage.Image = "http://www.roblox.com/asset/?id=3953349579"
  2244.  
  2245. Loadingtext.Name = "Loadingtext"
  2246. Loadingtext.Parent = LoadingFrame
  2247. Loadingtext.BackgroundColor3 = Color3.new(1, 1, 1)
  2248. Loadingtext.BackgroundTransparency = 1
  2249. Loadingtext.Position = UDim2.new(0.3004677, 0, 0.307086617, 0)
  2250. Loadingtext.Size = UDim2.new(0, 200, 0, 50)
  2251. Loadingtext.Font = Enum.Font.GothamBold
  2252. Loadingtext.Text = "Loading Place"
  2253. Loadingtext.TextColor3 = Color3.new(0, 0, 0)
  2254. Loadingtext.TextSize = 17
  2255. Loadingtext.TextXAlignment = Enum.TextXAlignment.Left
  2256.  
  2257. DarkCyberSynapshitGUI.Name = "[DarkCyber]SynapshitGUI"
  2258. DarkCyberSynapshitGUI.Parent = game.CoreGui
  2259.  
  2260. SynapShitPage.Name = "SynapShitPage"
  2261. SynapShitPage.Parent = DarkCyberSynapshitGUI
  2262. SynapShitPage.BackgroundColor3 = Color3.new(0.321569, 0.462745, 1)
  2263. SynapShitPage.BorderSizePixel = 0
  2264. SynapShitPage.Position = UDim2.new(0.416354954, 0, 0.417690426, 0)
  2265. SynapShitPage.Size = UDim2.new(0, 267, 0, 134)
  2266. SynapShitPage.Visible = false
  2267.  
  2268. local Createtitle2 = Instance.new("TextLabel")
  2269.  
  2270. Createtitle2.Name = "Createtitle"
  2271. Createtitle2.Parent = SynapShitPage
  2272. Createtitle2.BackgroundColor3 = Color3.new(1, 1, 1)
  2273. Createtitle2.BackgroundTransparency = 1
  2274. Createtitle2.Size = UDim2.new(0, 108, 0, 25)
  2275. Createtitle2.Font = Enum.Font.GothamBlack
  2276. Createtitle2.Text = "Dark Cyber"
  2277. Createtitle2.TextColor3 = Color3.new(1, 1, 1)
  2278. Createtitle2.TextSize = 14
  2279.  
  2280. NameTitle2 = Instance.new("TextLabel")
  2281.  
  2282. NameTitle2.Name = "NameTitle"
  2283. NameTitle2.Parent = Createtitle2
  2284. NameTitle2.BackgroundColor3 = Color3.new(1, 1, 1)
  2285. NameTitle2.BackgroundTransparency = 1
  2286. NameTitle2.Position = UDim2.new(0.997087002, 0, 0, 0)
  2287. NameTitle2.Size = UDim2.new(0, 159, 0, 25)
  2288. NameTitle2.Font = Enum.Font.GothamBold
  2289. NameTitle2.Text = "Bee Swarm Simulator"
  2290. NameTitle2.TextColor3 = Color3.new(1, 1, 1)
  2291. NameTitle2.TextSize = 14
  2292.  
  2293. Welcome.Name = "Welcome"
  2294. Welcome.Parent = SynapShitPage
  2295. Welcome.BackgroundColor3 = Color3.new(1, 1, 1)
  2296. Welcome.BackgroundTransparency = 1
  2297. Welcome.Position = UDim2.new(0, 0, 0.313432842, 0)
  2298. Welcome.Size = UDim2.new(0, 266, 0, 50)
  2299. Welcome.Font = Enum.Font.GothamBold
  2300. Welcome.Text = "WELCOME TO MY GUI SYNAPSHIT USER"
  2301. Welcome.TextColor3 = Color3.new(1, 1, 1)
  2302. Welcome.TextSize = 25
  2303. Welcome.TextWrapped = true
  2304.  
  2305. -- Scripts:
  2306.  
  2307.  
  2308. Ingnore.MouseButton1Down:Connect(function()
  2309. if nothoney then
  2310. Ingnore.BackgroundColor3 = blue
  2311. nothoney = false
  2312. else
  2313. Ingnore.BackgroundColor3 = red
  2314. nothoney = true
  2315. end
  2316.  
  2317.  
  2318.  
  2319. end)
  2320.  
  2321. FarmBublle.MouseButton1Down:Connect(function()
  2322. if farmbubble then
  2323. FarmBublle.BackgroundColor3 = blue
  2324. farmbubble = false
  2325. else
  2326. FarmBublle.BackgroundColor3 = red
  2327. farmbubble = true
  2328. end
  2329.  
  2330.  
  2331.  
  2332. end)
  2333.  
  2334. OnlyHoney.MouseButton1Down:Connect(function()
  2335. if onlyhoney then
  2336. OnlyHoney.BackgroundColor3 = blue
  2337. onlyhoney = false
  2338. else
  2339. OnlyHoney.BackgroundColor3 = red
  2340. onlyhoney = true
  2341. end
  2342.  
  2343.  
  2344.  
  2345. end)
  2346. Mobbtn.MouseButton1Down:Connect(function()
  2347. if automob then
  2348. Mobbtn.BackgroundColor3 = blue
  2349. automob = false
  2350. else
  2351. Mobbtn.BackgroundColor3 = red
  2352. automob = true
  2353. end
  2354.  
  2355.  
  2356.  
  2357. end)
  2358. AutoPolar.MouseButton1Down:Connect(function()
  2359. if autopolar then
  2360. AutoPolar.BackgroundColor3 = blue
  2361. autopolar = false
  2362. else
  2363. AutoPolar.BackgroundColor3 = red
  2364. autopolar = true
  2365. end
  2366.  
  2367.  
  2368.  
  2369. end)
  2370. TweenBtn.MouseButton1Down:Connect(function()
  2371. TypeFarming = "Tween"
  2372. TypeF.Text = "Type farming: Tween"
  2373. end)
  2374.  
  2375. TpBtn.MouseButton1Down:Connect(function()
  2376. TypeFarming = "Tp"
  2377. TypeF.Text = "Type farming: Tp"
  2378.  
  2379. end)
  2380.  
  2381. WalkBtn.MouseButton1Down:Connect(function()
  2382. TypeFarming = "Walking"
  2383. TypeF.Text = "Type farming: Walking"
  2384.  
  2385. end)
  2386. WalkBtn2.MouseButton1Down:Connect(function()
  2387. TypeFarming = "Walking2"
  2388. TypeF.Text = "Type farming: Walking Fast"
  2389.  
  2390. end)
  2391.  
  2392. MiniPage.Selectable = true
  2393. MiniPage.Draggable = true
  2394. MiniPage.Active = true
  2395.  
  2396. local repss = 0
  2397. local xoay = 0
  2398.  
  2399. spawn(function()
  2400. for i=1,50 do wait(.005)
  2401. xoay = xoay - 10
  2402. Loadingimage.Rotation = xoay
  2403. end
  2404. end)
  2405.  
  2406. for c=1,5 do wait(.01)
  2407. Loadingtext.Text = "Loading Place"..string.rep('.',repss%3+1)
  2408. repss = repss + 1
  2409. end
  2410.  
  2411. Loadingtext.Text = "Loading Place: Success"
  2412. wait(0.2)
  2413.  
  2414. local repss = 0
  2415.  
  2416. for d=1,5 do wait(.01)
  2417. Loadingtext.Text = "Loading UI"..string.rep('.',repss%3+1)
  2418. repss = repss + 1
  2419. end
  2420.  
  2421. if game.PlaceId == 1537690962 or game.PlaceId == 4079902982 then
  2422. Loadingtext.Text = "Loading UI: Success"
  2423. if syn then
  2424. LoadingFrame:TweenPosition(UDim2.new(0.410933673, 0, -0.7, 0))
  2425. wait(0.2)
  2426. DarkCyberLoadingGUI:Destroy()
  2427. SynapShitPage.Visible = true
  2428. wait(.2)
  2429. SynapShitPage:TweenPosition(UDim2.new(0.416354954, 0, -0.717690426, 0))
  2430. wait(.2)
  2431. DarkCyberSynapshitGUI:Destroy()
  2432. wait(.2)
  2433. MiniPage:TweenPosition(UDim2.new(0.361979187, 0, 0.34183538, 0)) --0.361979187, 0, 0.34183538, 0
  2434. else
  2435. LoadingFrame:TweenPosition(UDim2.new(0.410933673, 0, -0.7, 0))
  2436. wait(.2)
  2437. DarkCyberLoadingGUI:Destroy()
  2438. MiniPage:TweenPosition(UDim2.new(0.361979187, 0, 0.34183538, 0)) --0.361979187, 0, 0.34183538, 0
  2439. end
  2440. end
  2441.  
  2442. Copylinkdiscord.MouseButton1Down:Connect(function()
  2443. setclipboard("https://discord.gg/pNAcBsdbBB")
  2444. end)
  2445.  
  2446. HomeButton.MouseButton1Down:Connect(function()
  2447. HomeButton.BackgroundColor3 = Color3.new(0.345098, 0.14902, 1)
  2448. FarmingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2449. WaypointsButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2450. ExtrasButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2451. SettingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2452. HomePage.Visible = true
  2453. FarmingPage.Visible = false
  2454. WaypointPage.Visible = false
  2455. ExtraPage.Visible = false
  2456. SettingPage.Visible = false
  2457. end)
  2458.  
  2459. FarmingButton.MouseButton1Down:Connect(function()
  2460. HomeButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2461. FarmingButton.BackgroundColor3 = Color3.new(0.345098, 0.14902, 1)
  2462. WaypointsButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2463. ExtrasButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2464. SettingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2465. HomePage.Visible = false
  2466. FarmingPage.Visible = true
  2467. WaypointPage.Visible = false
  2468. ExtraPage.Visible = false
  2469. SettingPage.Visible = false
  2470. end)
  2471.  
  2472. WaypointsButton.MouseButton1Down:Connect(function()
  2473. HomeButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2474. FarmingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2475. WaypointsButton.BackgroundColor3 = Color3.new(0.345098, 0.14902, 1)
  2476. ExtrasButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2477. SettingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2478. HomePage.Visible = false
  2479. FarmingPage.Visible = false
  2480. WaypointPage.Visible = true
  2481. ExtraPage.Visible = false
  2482. SettingPage.Visible = false
  2483. end)
  2484.  
  2485.  
  2486. local UserInputService = game:GetService("UserInputService")
  2487.  
  2488. local function onInputEnded(inputObject, gameProcessedEvent)
  2489. -- First check if the 'gameProcessedEvent' is true
  2490. -- This indicates that another script had already processed the input, so this one can be ignored
  2491. if gameProcessedEvent then return end
  2492. -- Next, check that the input was a keyboard event
  2493. if inputObject.UserInputType == Enum.UserInputType.Keyboard then
  2494. if inputObject.KeyCode == Enum.KeyCode.Home then --Nút home đóng m? ui
  2495. if MiniPage.Visible == true then
  2496. MiniPage.Visible = false
  2497. elseif MiniPage.Visible == false then
  2498. MiniPage.Visible = true
  2499. end
  2500. end
  2501. end
  2502. end
  2503. UserInputService.InputEnded:Connect(onInputEnded)
  2504.  
  2505.  
  2506. ExtrasButton.MouseButton1Down:Connect(function()
  2507. HomeButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2508. FarmingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2509. WaypointsButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2510. ExtrasButton.BackgroundColor3 = Color3.new(0.345098, 0.14902, 1)
  2511. SettingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2512. HomePage.Visible = false
  2513. FarmingPage.Visible = false
  2514. WaypointPage.Visible = false
  2515. ExtraPage.Visible = true
  2516. SettingPage.Visible = false
  2517. end)
  2518.  
  2519. SettingButton.MouseButton1Down:Connect(function()
  2520. HomeButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2521. FarmingButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2522. WaypointsButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2523. ExtrasButton.BackgroundColor3 = Color3.new(0.34902, 0.32549, 1)
  2524. SettingButton.BackgroundColor3 = Color3.new(0.345098, 0.14902, 1)
  2525. HomePage.Visible = false
  2526. FarmingPage.Visible = false
  2527. WaypointPage.Visible = false
  2528. ExtraPage.Visible = false
  2529. SettingPage.Visible = true
  2530. end)
  2531.  
  2532. Destroy.MouseButton1Down:Connect(function()
  2533. MiniPage:TweenPosition(UDim2.new(0.361979187, 0, -0.7, 0))
  2534. wait(1)
  2535. DarkCyberMainGUI:Destroy()
  2536. end)
  2537.  
  2538. Destroy.MouseEnter:Connect(function()
  2539. Destroy.TextColor3 = Color3.new(255,0,0)
  2540. end)
  2541.  
  2542. Destroy.MouseLeave:Connect(function()
  2543. Destroy.TextColor3 = Color3.new(255,255,255)
  2544. end)
  2545.  
  2546. Close.MouseButton1Down:Connect(function()
  2547. if Close.Text == "-" then
  2548. MainPage.Visible = false
  2549. Close.Text ="+"
  2550. else
  2551. MainPage.Visible = true
  2552. Close.Text = "-"
  2553. end
  2554. end)
  2555.  
  2556. local Waypoints = {
  2557.  
  2558. ["Tunnel Bear"] = CFrame.new(507.3, 5.7, -45.7),
  2559. ["Redfield Boost"] = CFrame.new(-332, 20, 244),
  2560. ["Bluefield Boost"] = CFrame.new(319, 58, 103),
  2561. ["MountainTop Boost"] = CFrame.new(-40, 176, -191.7),
  2562. ["Bee Shop"] = CFrame.new(-136.8, 4.6, 243.4),
  2563. ["Tool Shop"] = CFrame.new(86, 4.6, 294),
  2564. ["Tool Shop 2"] = CFrame.new(165, 69, -161),
  2565. ["MountainTop Shop"] = CFrame.new(-18, 176, -137),
  2566. ["Red Clubhouse"] = CFrame.new(-334, 21, 216),
  2567. ["Blue Clubhouse"] = CFrame.new(292, 4, 98),
  2568. ["Ticket Shop"] = CFrame.new(-12.8, 184, -222.2),
  2569. ["Club Honey"] = CFrame.new(44.8, 5, 319.6),
  2570. ["RoyalJelly Shop"] = CFrame.new(-297, 53, 68),
  2571. ["Ticket RoyalJelly Shop"] = CFrame.new(81, 18, 240),
  2572. ["Honeystorm Dispensor"] = CFrame.new(238.4, 33.3, 165.6),
  2573. ["Blueberry Dispenser"] = CFrame.new(313.3, 58, 86.9),
  2574. ["Strawberry Dispenser"] = CFrame.new(-320.5, 46, 272.5),
  2575. ["Sprout Dispenser"] = CFrame.new(-269.26, 26.56, 267.31),
  2576. ["Instant Honey Convertor"] = CFrame.new(282, 68, -62),
  2577. ["King Beetles Lair"] = CFrame.new(218, 3, 140),
  2578. ["Clover Field"] = CFrame.new(174, 34, 189),
  2579. ["Mushroom Field"] = CFrame.new(-258.1, 5, 299.7),
  2580. ["Spider Field"] = CFrame.new(-57.2, 20, -5.3),
  2581. ["Blue Field"] = CFrame.new(113.7, 4, 101.5),
  2582. ["Sunflower Field"] = CFrame.new(-208, 4, 185),
  2583. ["StrawBerry Field"] = CFrame.new(-169.3, 20, -3.2),
  2584. ["Red Field"] = CFrame.new(-258.1, 5, 299.7),
  2585. ["Dandelion Field"] = CFrame.new(-30, 4, 225),
  2586. ["BamBoo Field"] = CFrame.new(93, 20, -25),
  2587. ["Rose Field"] = CFrame.new(-322, 20, 124),
  2588. ["Mushroom Field"] = CFrame.new(-94, 5, 116),
  2589. ["Cactus Field"] = CFrame.new(-194, 68, -107),
  2590. ["Pumpkin Field"] = CFrame.new(-194, 68, -182),
  2591. ["MountainTop Field"] = CFrame.new(76, 176, -181),
  2592. ["PineTree Field"] = CFrame.new(-318, 68, -150),
  2593. ["Pineapple Field"] = CFrame.new(262, 68, -201),
  2594. ["Onett"] = CFrame.new(-8.4, 234, -517.9),
  2595. ["Gumdrop Dispenser"] = CFrame.new(63, 20.7, 38.7),
  2596. ["Treat Dispenser"] = CFrame.new(193.9, 68, -123),
  2597. ["Treat Shop"] = CFrame.new(-228.2, 5, 89.4),
  2598. ["Star Hut"] = CFrame.new(135.9, 64.6, 322.1),
  2599. ["Wealth Clock"] = CFrame.new(310.5, 47.6, 190),
  2600. ["Coconut Field"] = CFrame.new(-255,72,459),
  2601. ["Pepper Patch"] = CFrame.new(-486,124,517),
  2602. ["CCN"] = CFrame.new(-176,71,534),
  2603. ["Nuoc"] = CFrame.new(-426,70,38),
  2604. ["Moon"] = CFrame.new(21,88,-54),
  2605. ["Kill Snail"] = CFrame.new(420,117,-178),
  2606. ["CC"] = CFrame.new(270,25260,-718),
  2607. ["CC1"] = CFrame.new(-147,5,195),
  2608. ["CC2"] = CFrame.new(-431,70,-53),
  2609. ["CC3"] = CFrame.new(-23,318,-270),
  2610. ["CC4"] = CFrame.new(-405,110,545),
  2611. ["CC5"] = CFrame.new(136,66,322),
  2612. ["CC6"] = CFrame.new(-270,28,267),
  2613. ["CC7"] = CFrame.new(312,49,189),
  2614. ["CC8"] = CFrame.new(218,5,140),
  2615. ["Ant"] = CFrame.new(112,32,477),
  2616. ["CC9"] = CFrame.new(592,7,-46),
  2617. ["CC12"] = CFrame.new(-500,52,458),
  2618. ["CC13"] = CFrame.new(291,28,271),
  2619. ["CC14"] = CFrame.new(272,25268,-773),
  2620. ["CC15"] = CFrame.new(-336,133,-387),
  2621. ["CC16"] = CFrame.new(218,5,140),
  2622. ["CC17"] = CFrame.new(218,5,140),
  2623. ["CC19"] = CFrame.new(-486,142,410),
  2624. ["CC18"] = CFrame.new(218,5,140)
  2625. }
  2626.  
  2627. local nightbell = false
  2628. Autokillmonster.MouseButton1Down:connect(function()
  2629. if nightbell == false then
  2630. Autokillmonster.BackgroundColor3 = red
  2631. MainPage.Visible = false
  2632. Close.Text ="+"
  2633. nightbell = true
  2634. while nightbell do
  2635. wait(5)
  2636. local A = {
  2637.  
  2638. ["Name"] = "Night Bell"
  2639. }
  2640. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  2641. Event:FireServer(A)
  2642. end
  2643. else
  2644. nightbell = false
  2645. Autokillmonster.BackgroundColor3 = blue
  2646. end
  2647.  
  2648. end)
  2649. WindyBeetp.MouseButton1Down:connect(function()
  2650. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2651. uTorso.CFrame = Waypoints["CC19"]
  2652. MainPage.Visible = false
  2653. Close.Text ="+"
  2654. end)
  2655. Diamondmasktp.MouseButton1Down:connect(function()
  2656. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2657. uTorso.CFrame = Waypoints["CC15"]
  2658.  
  2659.  
  2660. end)
  2661. Demonmasktp.MouseButton1Down:connect(function()
  2662. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2663. uTorso.CFrame = Waypoints["CC13"]
  2664.  
  2665.  
  2666. end)
  2667. Stinger.MouseButton1Down:connect(function()
  2668. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2669. uTorso.CFrame = Waypoints["Ant"]
  2670.  
  2671.  
  2672. end)
  2673.  
  2674. TunelBeartp.MouseButton1Down:connect(function()
  2675. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2676. uTorso.CFrame = Waypoints["Tunnel Bear"]
  2677.  
  2678.  
  2679. end)
  2680. GummyMask.MouseButton1Down:connect(function()
  2681. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2682. uTorso.CFrame = Waypoints["CC14"]
  2683.  
  2684.  
  2685. end)
  2686. Coconutshoptp.MouseButton1Down:connect(function()
  2687. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2688. uTorso.CFrame = Waypoints["CCN"]
  2689.  
  2690.  
  2691. end)
  2692. Petaltp.MouseButton1Down:connect(function()
  2693. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2694. uTorso.CFrame = Waypoints["CC12"]
  2695.  
  2696.  
  2697. end)
  2698. Stumptp.MouseButton1Down:connect(function()
  2699. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2700. uTorso.CFrame = Waypoints["Kill Snail"]
  2701.  
  2702.  
  2703. end)
  2704. Suntp.MouseButton1Down:connect(function()
  2705. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2706. uTorso.CFrame = Waypoints["Sunflower Field"]
  2707.  
  2708.  
  2709. end)
  2710. Dantp.MouseButton1Down:connect(function()
  2711. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2712. uTorso.CFrame = Waypoints["Dandelion Field"]
  2713.  
  2714.  
  2715. end)
  2716. Clovertp.MouseButton1Down:connect(function()
  2717. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2718. uTorso.CFrame = Waypoints["Clover Field"]
  2719.  
  2720.  
  2721. end)
  2722. Bambootp.MouseButton1Down:connect(function()
  2723. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2724. uTorso.CFrame = Waypoints["BamBoo Field"]
  2725.  
  2726.  
  2727. end)
  2728. Blueftp.MouseButton1Down:connect(function()
  2729. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2730. uTorso.CFrame = Waypoints["Blue Field"]
  2731.  
  2732.  
  2733. end)
  2734. Mushtp.MouseButton1Down:connect(function()
  2735. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2736. uTorso.CFrame = Waypoints["Mushroom Field"]
  2737.  
  2738.  
  2739. end)
  2740. Spidertp.MouseButton1Down:connect(function()
  2741. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2742. uTorso.CFrame = Waypoints["Spider Field"]
  2743.  
  2744.  
  2745. end)
  2746. Strawtp.MouseButton1Down:connect(function()
  2747. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2748. uTorso.CFrame = Waypoints["StrawBerry Field"]
  2749.  
  2750.  
  2751. end)
  2752. Pineappletp.MouseButton1Down:connect(function()
  2753. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2754. uTorso.CFrame = Waypoints["Pineapple Field"]
  2755.  
  2756.  
  2757. end)
  2758. Rosetp.MouseButton1Down:connect(function()
  2759. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2760. uTorso.CFrame = Waypoints["Rose Field"]
  2761.  
  2762.  
  2763. end)
  2764. Castustp.MouseButton1Down:connect(function()
  2765. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2766. uTorso.CFrame = Waypoints["Cactus Field"]
  2767.  
  2768.  
  2769. end)
  2770. Pumtp.MouseButton1Down:connect(function()
  2771. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2772. uTorso.CFrame = Waypoints["Pumpkin Field"]
  2773.  
  2774.  
  2775. end)
  2776. Pintreetp.MouseButton1Down:connect(function()
  2777. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2778. uTorso.CFrame = Waypoints["PineTree Field"]
  2779.  
  2780.  
  2781. end)
  2782. Toptp.MouseButton1Down:connect(function()
  2783. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2784. uTorso.CFrame = Waypoints["MountainTop Field"]
  2785.  
  2786.  
  2787. end)
  2788. Coconuttp.MouseButton1Down:connect(function()
  2789. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2790. uTorso.CFrame = Waypoints["Coconut Field"]
  2791.  
  2792.  
  2793. end)
  2794. Peppertp.MouseButton1Down:connect(function()
  2795. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2796. uTorso.CFrame = Waypoints["Pepper Patch"]
  2797.  
  2798.  
  2799. end)
  2800.  
  2801.  
  2802. Autored.MouseButton1Down:connect(function()
  2803.  
  2804.  
  2805. local a = "Red Field Booster"
  2806. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2807. Event:FireServer(a)
  2808. while wait(10) do
  2809. local a = "Red Field Booster"
  2810. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2811. Event:FireServer(a)
  2812. end
  2813. end)
  2814. Autoblue.MouseButton1Down:connect(function()
  2815.  
  2816.  
  2817. local a = "Blue Field Booster"
  2818. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2819. Event:FireServer(a)
  2820. while wait(10) do
  2821. local a = "Blue Field Booster"
  2822. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2823. Event:FireServer(a)
  2824. end
  2825. end)
  2826.  
  2827. AutoDispenser_2.MouseButton1Down:connect(function()
  2828.  
  2829.  
  2830.  
  2831. local a = "Field Booster"
  2832. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2833. Event:FireServer(a)
  2834. while wait(10) do
  2835. local a = "Field Booster"
  2836. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2837. Event:FireServer(a)
  2838. end
  2839.  
  2840. end)
  2841.  
  2842. local afksnail = false
  2843. Afkstumptp.MouseButton1Down:connect(function(l)
  2844. if afksnail == false then
  2845. afksnail = true
  2846. Afkstumptp.BackgroundColor3 = red
  2847.  
  2848.  
  2849. noclip = true
  2850. while afksnail do
  2851.  
  2852.  
  2853. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2854. uTorso.CFrame = CFrame.new(405,72.7,-176)
  2855. wait()
  2856. end
  2857. else
  2858. afksnail = false
  2859. noclip = false
  2860. --wait()
  2861. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2862. uTorso.CFrame = Waypoints["Kill Snail"]
  2863. Afkstumptp.BackgroundColor3 = blue
  2864. end
  2865. end)
  2866.  
  2867.  
  2868.  
  2869.  
  2870. Shopbasictp.MouseButton1Down:connect(function()
  2871.  
  2872. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2873. uTorso.CFrame = Waypoints["Tool Shop"]
  2874.  
  2875.  
  2876. end)
  2877. Shopproctp.MouseButton1Down:connect(function()
  2878.  
  2879. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2880. uTorso.CFrame = Waypoints["Tool Shop 2"]
  2881.  
  2882.  
  2883. end)
  2884. Shoptoptp.MouseButton1Down:connect(function()
  2885.  
  2886. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2887. uTorso.CFrame = Waypoints["MountainTop Shop"]
  2888.  
  2889.  
  2890. end)
  2891. Shopsprinklertp.MouseButton1Down:connect(function()
  2892.  
  2893. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2894. uTorso.CFrame = Waypoints["Nuoc"]
  2895.  
  2896.  
  2897. end)
  2898. Shopmoontp.MouseButton1Down:connect(function()
  2899.  
  2900. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2901. uTorso.CFrame = Waypoints["Moon"]
  2902.  
  2903.  
  2904. end)
  2905.  
  2906.  
  2907. InstantConversiontp.MouseButton1Down:connect(function()
  2908.  
  2909. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2910. uTorso.CFrame = Waypoints["CC1"]
  2911.  
  2912.  
  2913. end)
  2914. MegaMemorytp.MouseButton1Down:connect(function()
  2915.  
  2916. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2917. uTorso.CFrame = Waypoints["CC2"]
  2918.  
  2919.  
  2920. end)
  2921. NightMemorytp.MouseButton1Down:connect(function()
  2922.  
  2923. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2924. uTorso.CFrame = Waypoints["CC3"]
  2925.  
  2926.  
  2927. end)
  2928. ExtremeMemorytp.MouseButton1Down:connect(function()
  2929.  
  2930. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2931. uTorso.CFrame = Waypoints["CC4"]
  2932.  
  2933.  
  2934. end)
  2935. StartHalltp.MouseButton1Down:connect(function()
  2936.  
  2937. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2938. uTorso.CFrame = Waypoints["CC5"]
  2939.  
  2940.  
  2941. end)
  2942. SummonSprouttp.MouseButton1Down:connect(function()
  2943.  
  2944. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2945. uTorso.CFrame = Waypoints["CC6"]
  2946.  
  2947.  
  2948. end)
  2949. Anttp.MouseButton1Down:connect(function()
  2950.  
  2951. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2952. uTorso.CFrame = Waypoints["Ant"]
  2953.  
  2954.  
  2955. end)
  2956. Kingamulettp.MouseButton1Down:connect(function()
  2957.  
  2958. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2959. uTorso.CFrame = Waypoints["CC8"]
  2960.  
  2961.  
  2962. end)
  2963.  
  2964. --auto
  2965.  
  2966.  
  2967. local dispenser = false
  2968. AutoDispenser.MouseButton1Down:connect(function()
  2969. if dispenser == false then
  2970. dispenser = true
  2971. AutoDispenser.BackgroundColor3 = red
  2972.  
  2973.  
  2974. while dispenser do
  2975. wait(5)
  2976.  
  2977. local A_1 = "Glue Dispenser"
  2978. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2979. Event:FireServer(A_1)
  2980. local A_1 = "Wealth Clock"
  2981. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2982. Event:FireServer(A_1)
  2983. local A_1 = "Coconut Dispenser"
  2984. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2985. Event:FireServer(A_1)
  2986. local A_1 = "Strawberry Dispenser"
  2987. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2988. Event:FireServer(A_1)
  2989. local A_1 = "Treat Dispenser"
  2990. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2991. Event:FireServer(A_1)
  2992. local A_1 = "Free Ant Pass Dispenser"
  2993. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2994. Event:FireServer(A_1)
  2995. local A_1 = "Blueberry Dispenser"
  2996. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  2997. Event:FireServer(A_1)
  2998. local A_1 = "Honey Dispenser"
  2999. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  3000. Event:FireServer(A_1)
  3001. local A_1 = "Free Royal Jelly Dispenser"
  3002. local Event = game:GetService("ReplicatedStorage").Events.ToyEvent
  3003. Event:FireServer(A_1)
  3004. end
  3005. else
  3006. dispenser = false
  3007. AutoDispenser.BackgroundColor3 = blue
  3008. end
  3009. end)
  3010.  
  3011.  
  3012.  
  3013.  
  3014.  
  3015. local t = coroutine.wrap(function()
  3016. local snowflakes = TokenId["Snowflake"]
  3017. while wait() do
  3018. if snowflake then
  3019. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  3020. if v:FindFirstChild("FrontDecal") then
  3021. if v.FrontDecal.Texture == snowflakes then
  3022. if snowflake==true then
  3023. -- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position.X,v.Position.Y,v.Position.Z)
  3024. --wait(1)
  3025. tpT(CFrame.new(v.Position.X,v.Position.Y,v.Position.Z),0.2)
  3026. wait(.3)
  3027. end
  3028. end
  3029.  
  3030. end
  3031.  
  3032. end
  3033.  
  3034. end
  3035.  
  3036.  
  3037. end
  3038.  
  3039.  
  3040. end)
  3041. t()
  3042. Dropweapon.MouseButton1Down:connect(function()
  3043. if snowflake then
  3044. Dropweapon.BackgroundColor3 = blue
  3045. snowflake = false
  3046. else
  3047. snowflake = true
  3048. Dropweapon.BackgroundColor3 = red
  3049.  
  3050.  
  3051.  
  3052. end
  3053.  
  3054. end)
  3055.  
  3056.  
  3057.  
  3058.  
  3059. local killtunell = false
  3060. KillTunnel.MouseButton1Down:connect(function(j)
  3061. if killtunell == false then
  3062.  
  3063.  
  3064. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  3065. uTorso.CFrame = Waypoints["Tunnel Bear"]
  3066. killtunell = true
  3067. KillTunnel.BackgroundColor3 = red
  3068. noclip = true
  3069. for _,v in pairs(game.workspace.Decorations.TrapTunnel:GetChildren()) do
  3070. if string.find(v.Name,"") then
  3071. v:Destroy()
  3072.  
  3073. end
  3074. end
  3075. wait(6)
  3076. while killtunell do
  3077. wait()
  3078. for _,v in pairs(game.Workspace.Monsters:GetChildren()) do
  3079. if string.find(v.Name,"Tunnel") then
  3080. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,20.5,0)
  3081.  
  3082. end
  3083. end
  3084. end
  3085. else
  3086. noclip = false
  3087. killtunell = false
  3088. KillTunnel.BackgroundColor3 = blue
  3089. end
  3090. end)
  3091.  
  3092.  
  3093.  
  3094.  
  3095.  
  3096. noclip = false
  3097. game:GetService('RunService').Stepped:connect(function()
  3098. if func.Hide then
  3099. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  3100. v.Transparency = 1
  3101. if v:FindFirstChild("FrontDecal") then
  3102. v.FrontDecal.Transparency = 1
  3103. end
  3104. if v:FindFirstChild("BackDecal") then
  3105. v.BackDecal.Transparency = 1
  3106. end
  3107.  
  3108. end
  3109.  
  3110. end
  3111. if func.Hideb then
  3112. for k,v in pairs(game.Workspace.Bees:GetChildren()) do
  3113. v.Transparency = 1
  3114. if v:FindFirstChild("BottomTexture") then
  3115. v.BottomTexture.Transparency = 1
  3116. end
  3117. if v:FindFirstChild("FaceTexture") then
  3118. v.FaceTexture.Transparency = 1
  3119. end
  3120. if v:FindFirstChild("LeftTexture") then
  3121. v.LeftTexture.Transparency = 1
  3122.  
  3123. end
  3124. if v:FindFirstChild("RightTexture") then
  3125. v.RightTexture.Transparency = 1
  3126. end
  3127. if v:FindFirstChild("TopTexture") then
  3128. v.TopTexture.Transparency = 1
  3129.  
  3130. end
  3131. if v:FindFirstChild("Wings") then
  3132. v.Wings.Transparency = 1
  3133. if v.Wings:FindFirstChild("Decal") then v.Wings.Decal.Transparency = 1 end
  3134.  
  3135. end
  3136. if v:FindFirstChild("Trail") then
  3137. v.Trail:Destroy()
  3138. end
  3139. if v:FindFirstChild("Spoiler") then
  3140. v.Spoiler.Transparency = 1
  3141.  
  3142. end
  3143. if v:FindFirstChild("Horns") then
  3144. v.Horns.Transparency = 1
  3145.  
  3146. end
  3147. if v:FindFirstChild("Mane") then
  3148. v.Mane.Transparency = 1
  3149.  
  3150. end
  3151. if v:FindFirstChild("Tailpipe") then
  3152. v.Tailpipe.Transparency = 1
  3153.  
  3154. end
  3155. if v:FindFirstChild("Fin") then
  3156. v.Fin.Transparency = 1
  3157.  
  3158. end
  3159. if v:FindFirstChild("Sun") then
  3160. v.Sun.Transparency = 1
  3161.  
  3162. end
  3163. if v:FindFirstChild("Hammer") then
  3164. v.Hammer.Transparency = 1
  3165.  
  3166. end
  3167. if v:FindFirstChild("Tail") then
  3168. v.Tail.Transparency = 1
  3169.  
  3170. end
  3171. if v:FindFirstChild("Ear") then
  3172. v.Ear.Transparency = 1
  3173.  
  3174. end
  3175. if v:FindFirstChild("Note") then
  3176. v.Note.Transparency = 1
  3177.  
  3178. end
  3179. end
  3180. end
  3181. if noclip then
  3182. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  3183. end
  3184. end)
  3185.  
  3186.  
  3187.  
  3188.  
  3189.  
  3190.  
  3191. local killcoconut = false
  3192. Killcoconutcrab.MouseButton1Down:connect(function()
  3193. if killcoconut == false then
  3194.  
  3195.  
  3196. Killcoconutcrab.BackgroundColor3 = red
  3197. killcoconut = true
  3198. noclip = true
  3199. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-256.375092, 112.547897, 500.457794, 0.998952866, -0.0450557806, 0.00794458669, -8.64538929e-09, 0.173648775, 0.98480767, -0.0457508452, -0.98377645, 0.173466951)
  3200. else
  3201. killcoconut = false
  3202. noclip = false
  3203. Killcoconutcrab.BackgroundColor3 = blue
  3204. end
  3205. end)
  3206.  
  3207.  
  3208. local vu = game:GetService("VirtualUser")
  3209. game:GetService("Players").LocalPlayer.Idled:connect(function()
  3210. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3211. wait(1)
  3212. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3213. print ("Afk 15m")
  3214. end)
  3215.  
  3216.  
  3217.  
  3218.  
  3219. local stinger = false
  3220. Autostinger.MouseButton1Down:connect(function(b)
  3221. if stinger == false then
  3222.  
  3223.  
  3224. stinger = true
  3225. Autostinger.BackgroundColor3 = red
  3226. local A = {
  3227.  
  3228. ["Name"] = "Stinger"
  3229. }
  3230. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3231. Event:FireServer(A)
  3232. while stinger do
  3233. wait(30)
  3234.  
  3235. local A = {
  3236.  
  3237. ["Name"] = "Stinger"
  3238. }
  3239. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3240. Event:FireServer(A)
  3241. end
  3242. else
  3243. stinger = false
  3244. Autostinger.BackgroundColor3 = blue
  3245. end
  3246.  
  3247. end)
  3248.  
  3249.  
  3250.  
  3251. local item = false
  3252. Autobuffitem.MouseButton1Down:connect(function(c)
  3253. if item == false then
  3254.  
  3255.  
  3256. item = true
  3257. Autobuffitem.BackgroundColor3 = red
  3258. local A = {
  3259.  
  3260. ["Name"] = "Blue Extract"
  3261. }
  3262. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3263. Event:FireServer(A)
  3264. local A = {
  3265.  
  3266. ["Name"] = "Red Extract"
  3267. }
  3268. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3269. Event:FireServer(A)
  3270. local A = {
  3271.  
  3272. ["Name"] = "Oil"
  3273. }
  3274. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3275. Event:FireServer(A)
  3276. local A = {
  3277.  
  3278. ["Name"] = "Enzymes"
  3279. }
  3280. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3281. Event:FireServer(A)
  3282. local A = {
  3283.  
  3284. ["Name"] = "Glue"
  3285. }
  3286. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3287. Event:FireServer(A)
  3288. local A = {
  3289.  
  3290. ["Name"] = "Glitter"
  3291. }
  3292. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3293. Event:FireServer(A)
  3294. local A = {
  3295.  
  3296. ["Name"] = "Tropical Drink"
  3297. }
  3298. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3299. Event:FireServer(A)
  3300. while item do
  3301. wait(600)
  3302.  
  3303. local A = {
  3304.  
  3305. ["Name"] = "Blue Extract"
  3306. }
  3307. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3308. Event:FireServer(A)
  3309. local A = {
  3310.  
  3311. ["Name"] = "Red Extract"
  3312. }
  3313. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3314. Event:FireServer(A)
  3315. local A = {
  3316.  
  3317. ["Name"] = "Oil"
  3318. }
  3319. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3320. Event:FireServer(A)
  3321. local A = {
  3322.  
  3323. ["Name"] = "Enzymes"
  3324. }
  3325. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3326. Event:FireServer(A)
  3327. local A = {
  3328.  
  3329. ["Name"] = "Glue"
  3330. }
  3331. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3332. Event:FireServer(A)
  3333. local A = {
  3334.  
  3335. ["Name"] = "Glitter"
  3336. }
  3337. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3338. Event:FireServer(A)
  3339. local A = {
  3340.  
  3341. ["Name"] = "Tropical Drink"
  3342. }
  3343. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3344. Event:FireServer(A)
  3345.  
  3346. end
  3347.  
  3348. else
  3349. item = false
  3350. Autobuffitem.BackgroundColor3 = blue
  3351. end
  3352. end)
  3353.  
  3354.  
  3355.  
  3356. local gliter = false
  3357. Autogliter.MouseButton1Down:connect(function(d)
  3358. if gliter == false then
  3359.  
  3360.  
  3361. gliter = true
  3362. Autogliter.BackgroundColor3 = red
  3363. local A = {
  3364.  
  3365. ["Name"] = "Glitter"
  3366. }
  3367. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3368. Event:FireServer(A)
  3369. while gliter do
  3370. wait(920)
  3371.  
  3372. local A = {
  3373.  
  3374. ["Name"] = "Glitter"
  3375. }
  3376. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3377. Event:FireServer(A)
  3378.  
  3379.  
  3380. end
  3381. else
  3382. gliter = false
  3383. Autogliter.BackgroundColor3 = blue
  3384. end
  3385. end)
  3386.  
  3387.  
  3388.  
  3389. local coconut = false
  3390. Autococonut.MouseButton1Down:connect(function(e)
  3391. if coconut == false then
  3392.  
  3393.  
  3394. coconut = true
  3395. Autococonut.BackgroundColor3 = red
  3396. local A = {
  3397.  
  3398. ["Name"] = "Coconut"
  3399. }
  3400. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3401. Event:FireServer(A)
  3402. while coconut do
  3403. wait(11)
  3404.  
  3405. local A = {
  3406.  
  3407. ["Name"] = "Coconut"
  3408. }
  3409. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3410. Event:FireServer(A)
  3411.  
  3412. end
  3413. else
  3414. coconut = false
  3415. Autococonut.BackgroundColor3 = blue
  3416. end
  3417. end)
  3418.  
  3419.  
  3420.  
  3421.  
  3422.  
  3423.  
  3424. local AutoDig = false
  3425. Autodig.MouseButton1Down:connect(function()
  3426. if AutoDig == false then
  3427.  
  3428.  
  3429. AutoDig = true
  3430. Autodig.BackgroundColor3 = red
  3431. while AutoDig do
  3432. wait(0.1)
  3433.  
  3434. Dig()
  3435. end
  3436. else
  3437. AutoDig = false
  3438. Autodig.BackgroundColor3 = blue
  3439. end
  3440. end)
  3441.  
  3442.  
  3443.  
  3444. local Sparkles = false
  3445. Useglitter.MouseButton1Down:connect(function()
  3446.  
  3447. if Sparkles == false then
  3448.  
  3449.  
  3450. Sparkles = true
  3451. Useglitter.BackgroundColor3 = red
  3452. local test = "C"
  3453. local tweenservice = game:GetService("TweenService")
  3454. local plr = game.Players.LocalPlayer
  3455. local info = TweenInfo.new(0.1) -- change to how long it takes to get to the item (in seconds)
  3456. local item = {}
  3457. while Sparkles do
  3458. wait(0.5)
  3459. for _,v in pairs(game.workspace.Flowers:GetDescendants()) do
  3460. if string.find(v.Name,"Sparkles") then
  3461. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  3462. end
  3463. end
  3464. for k,v in pairs(workspace.Collectibles:GetChildren()) do
  3465. if tostring(v) == tostring(game.Players.LocalPlayer.Name) or tostring(v) == test then
  3466. if (v.Position-plr.Character.HumanoidRootPart.Position).magnitude <= 60 then
  3467. item.CFrame = CFrame.new(v.Position.x,plr.Character.HumanoidRootPart.Position.y,v.Position.z)
  3468. local Tween = tweenservice:Create(plr.Character.HumanoidRootPart, info, item)
  3469. Tween:Play()
  3470. end
  3471. end
  3472. end
  3473. end
  3474.  
  3475. else
  3476. Sparkles = false
  3477. Useglitter.BackgroundColor3 = blue
  3478. end
  3479. end)
  3480.  
  3481.  
  3482.  
  3483.  
  3484.  
  3485.  
  3486.  
  3487. local gumdrop = false
  3488. Autogumdrop.MouseButton1Down:connect(function(h)
  3489. if gumdrop == false then
  3490.  
  3491.  
  3492. gumdrop = true
  3493. Autogumdrop.BackgroundColor3 = red
  3494. while gumdrop do
  3495. wait(2)
  3496.  
  3497. local A = {
  3498.  
  3499. ["Name"] = "Gumdrops"
  3500. }
  3501. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3502. Event:FireServer(A)
  3503.  
  3504. end
  3505. else
  3506. gumdrop = false
  3507. Autogumdrop.BackgroundColor3 = blue
  3508. end
  3509. end)
  3510.  
  3511. Equipgummymask.MouseButton1Down:connect(function()
  3512.  
  3513.  
  3514. local A_1 = "Equip"
  3515. local A_2 =
  3516. {
  3517. ["Mute"] = true,
  3518. ["Type"] = "Gummy Mask",
  3519. ["Category"] = "Accessory"
  3520. }
  3521. local Event = game:GetService("ReplicatedStorage").Events.ItemPackageEvent
  3522. Event:InvokeServer(A_1, A_2)
  3523. end)
  3524.  
  3525. local tpwindy = false
  3526. Autokillwindy.MouseButton1Down:connect(function(o)
  3527.  
  3528. if tpwindy == false then
  3529. tpwindy = true
  3530.  
  3531.  
  3532. Autokillwindy.BackgroundColor3 =red
  3533. noclip = true
  3534. local player = game.Players.LocalPlayer
  3535. local sanghuman = player.Character.HumanoidRootPart
  3536.  
  3537. while tpwindy do
  3538. wait()
  3539.  
  3540. for _,v in pairs(game.workspace.Monsters:GetChildren()) do
  3541. if string.find(v.Name,"Windy") then
  3542. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Torso.CFrame * CFrame.new(0,25,0)
  3543. end
  3544. end
  3545. for k,r in pairs(workspace.Collectibles:GetChildren()) do
  3546. if tostring(r) == tostring(game.Players.LocalPlayer.Name) or tostring(r) == "C" then
  3547. if (r.Position-game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 25 then
  3548. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = r.CFrame
  3549. local intvalue = Instance.new("IntValue",r)
  3550. intvalue.Name = "Void"
  3551. end
  3552. end
  3553. end
  3554. end
  3555. else
  3556. tpwindy = false
  3557. noclip = false
  3558. Autokillwindy.BackgroundColor3 =blue
  3559. end
  3560. end)
  3561.  
  3562.  
  3563.  
  3564.  
  3565.  
  3566.  
  3567.  
  3568.  
  3569. local tornado = false
  3570. Bringtornado.MouseButton1Down:connect(function()
  3571. if tornado == false then
  3572.  
  3573.  
  3574. tornado = true
  3575. Bringtornado.BackgroundColor3 = red
  3576. while tornado do
  3577. wait(0.3)
  3578. local test = "Root"
  3579. local test2 = "Plane"
  3580. local tweenservice = game:GetService("TweenService")
  3581. local plr = game.Players.LocalPlayer
  3582. local info = TweenInfo.new(0.3) -- change to how long it takes to get to the item (in seconds)
  3583. local item = {}
  3584.  
  3585. for i,v in pairs(game.workspace.Particles:GetDescendants()) do
  3586. if v.Name == test or v.Name == test2 then
  3587. for _,i in pairs(game.workspace.Collectibles:GetChildren()) do
  3588. if tostring(i) == tostring(game.Players.LocalPlayer.Name) or tostring(i) == "C" then
  3589. if (i.Position-plr.Character.HumanoidRootPart.Position).magnitude <= 60 then
  3590.  
  3591. item.CFrame = CFrame.new(i.Position.x,plr.Character.HumanoidRootPart.Position.y,i.Position.z)
  3592.  
  3593. local Tween = tweenservice:Create(v, info, item)
  3594. Tween:Play()
  3595. end
  3596. end
  3597. end
  3598. end
  3599. end
  3600. end
  3601. else
  3602. tornado = false
  3603. Bringtornado.BackgroundColor3 = blue
  3604. end
  3605. end)
  3606.  
  3607.  
  3608.  
  3609. Equipdemonmask.MouseButton1Down:connect(function()
  3610.  
  3611.  
  3612. local A_1 = "Equip"
  3613. local A_2 =
  3614. {
  3615. ["Mute"] = true,
  3616. ["Type"] = "Demon Mask",
  3617. ["Category"] = "Accessory"
  3618. }
  3619. local Event = game:GetService("ReplicatedStorage").Events.ItemPackageEvent
  3620. Event:InvokeServer(A_1, A_2)
  3621. end)
  3622. Eqipdemonmask.MouseButton1Down:connect(function()
  3623.  
  3624.  
  3625. local A_1 = "Equip"
  3626. local A_2 =
  3627. {
  3628. ["Mute"] = true,
  3629. ["Type"] = "Diamond Mask",
  3630. ["Category"] = "Accessory"
  3631. }
  3632. local Event = game:GetService("ReplicatedStorage").Events.ItemPackageEvent
  3633. Event:InvokeServer(A_1, A_2)
  3634. end)
  3635.  
  3636.  
  3637.  
  3638. local Drop = false
  3639. Automagicbean.MouseButton1Down:connect(function(a)
  3640. if Drop == false then
  3641.  
  3642.  
  3643. Drop = true
  3644. Automagicbean.BackgroundColor3 =red
  3645. while Drop do
  3646. wait(0.3)
  3647.  
  3648. local A = {
  3649.  
  3650. ["Name"] = "Magic Bean"
  3651. }
  3652. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3653. Event:FireServer(A)
  3654. end
  3655. else
  3656. Drop = false
  3657. Automagicbean.BackgroundColor3 =blue
  3658. end
  3659. end)
  3660.  
  3661.  
  3662.  
  3663.  
  3664.  
  3665.  
  3666.  
  3667.  
  3668. Noclip.MouseButton1Down:Connect(function()
  3669. if noclip == false then
  3670. noclip = true
  3671.  
  3672.  
  3673. Noclip.BackgroundColor3 = red
  3674. else
  3675. noclip = false
  3676. Noclip.BackgroundColor3 = blue
  3677. end
  3678. end)
  3679.  
  3680.  
  3681.  
  3682.  
  3683.  
  3684. local Windy = false
  3685. FindWindBee.MouseButton1Down:connect(function(w)
  3686. if Windy == false then
  3687.  
  3688.  
  3689. Windy = true
  3690. FindWindBee.BackgroundColor3 =red
  3691. noclip = true
  3692. while Windy do
  3693. wait()
  3694. for _,v in pairs(game.workspace.NPCBees:GetChildren()) do
  3695. if v.Name == "Windy" then
  3696. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  3697. end
  3698. end
  3699. end
  3700. else
  3701. Windy = false
  3702. noclip = false
  3703. FindWindBee.BackgroundColor3 =blue
  3704. end
  3705. end)
  3706.  
  3707.  
  3708.  
  3709.  
  3710.  
  3711.  
  3712.  
  3713. Usenightbell.MouseButton1Down:connect(function()
  3714.  
  3715.  
  3716. local A = {
  3717.  
  3718. ["Name"] = "Night Bell"
  3719. }
  3720. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3721. Event:FireServer(A)
  3722. end)
  3723.  
  3724.  
  3725.  
  3726.  
  3727.  
  3728. Usefielddice.MouseButton1Down:connect(function()
  3729.  
  3730.  
  3731. local A = {
  3732.  
  3733. ["Name"] = "Field Dice"
  3734. }
  3735. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  3736. Event:FireServer(A)
  3737. end)
  3738.  
  3739.  
  3740.  
  3741. local killvici = false
  3742. local k = coroutine.wrap(function()
  3743. while wait() do
  3744. local fi = false
  3745. for k,v in pairs(game.Workspace.Monsters:GetChildren()) do
  3746. if string.find(v.Name,"Gifted") or string.find(v.Name,"Vici") then
  3747. fi = true
  3748. end
  3749. end
  3750. if fi == false and killvici then noclip = false end
  3751. end
  3752. end)
  3753. k()
  3754.  
  3755. Autokillvicious.MouseButton1Down:connect(function(q)
  3756. local old2 = farming
  3757. if killvici == false then
  3758.  
  3759.  
  3760. killvici = true
  3761. Autokillvicious.BackgroundColor3 =red
  3762.  
  3763. while killvici do
  3764. wait()
  3765. local old = farming
  3766.  
  3767. for _,i in pairs(game.workspace.Particles:GetChildren()) do
  3768. if string.find(i.Name,"Waiti") and not selling then
  3769. if killvici then
  3770. farming = false
  3771. noclip = true
  3772. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = i.CFrame
  3773. end
  3774. else
  3775. farming = old
  3776. end
  3777. end
  3778. for _,v in pairs(game.workspace.Monsters:GetChildren()) do
  3779. if string.find(v.Name,"Vici") and not selling then
  3780. if killvici then
  3781. farming = false
  3782. noclip = true
  3783. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Torso.CFrame * CFrame.new(0,13,0)
  3784. end
  3785. else farming = old
  3786. end
  3787. end
  3788. for _,r in pairs(game.workspace.Monsters:GetChildren()) do
  3789. if string.find(r.Name,"Gifted") and not selling then
  3790. if killvici then
  3791. farming = false
  3792. noclip = true
  3793. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = r.Torso.CFrame * CFrame.new(0,13,0)
  3794. end
  3795. else
  3796. farming = old
  3797. end
  3798.  
  3799. end
  3800. end
  3801. local fi = false
  3802. for k,v in pairs(game.Workspace.Monsters:GetChildren()) do
  3803. if string.find(v.Name,"Gifted") or string.find(v.Name,"Vici") then
  3804. fi = true
  3805. end
  3806. end
  3807. if fi == false then noclip = false end
  3808. if killvici == false then noclip = false end
  3809. else
  3810. killvici = false
  3811. noclip = false
  3812. farming = old2
  3813. Autokillvicious.BackgroundColor3 =blue
  3814. end
  3815. end)
  3816.  
  3817. SunflowerButton.MouseButton1Down:connect(function()
  3818. tuoidz = "Sunflower Field"
  3819. FieldText.Text = "Field Select: "..tuoidz
  3820. end)
  3821. MushroomButton.MouseButton1Down:connect(function()
  3822. tuoidz = "Mushroom Field"
  3823. FieldText.Text = "Field Select: "..tuoidz
  3824. end)
  3825. DanrButton.MouseButton1Down:connect(function()
  3826. tuoidz = "Dandelion Field"
  3827. FieldText.Text = "Field Select: "..tuoidz
  3828. end)
  3829. DanrButton_2.MouseButton1Down:connect(function()
  3830. tuoidz = "Clover Field"
  3831. FieldText.Text = "Field Select: "..tuoidz
  3832. end)
  3833. BlueflowerButton.MouseButton1Down:connect(function()
  3834. tuoidz = "Blue Flower Field"
  3835. FieldText.Text = "Field Select: "..tuoidz
  3836. end)
  3837. BambooButton.MouseButton1Down:connect(function()
  3838. tuoidz = "Bamboo Field"
  3839. FieldText.Text = "Field Select: "..tuoidz
  3840. end)
  3841. BambooButton.MouseButton1Down:connect(function()
  3842. tuoidz = "Bamboo Field"
  3843. FieldText.Text = "Field Select: "..tuoidz
  3844. end)
  3845. SpiderButton.MouseButton1Down:connect(function()
  3846. tuoidz = "Spider Field"
  3847. FieldText.Text = "Field Select: "..tuoidz
  3848. end)
  3849. StawberryButton.MouseButton1Down:connect(function()
  3850. tuoidz = "Strawberry Field"
  3851. FieldText.Text = "Field Select: "..tuoidz
  3852. end)
  3853. StawberryButton.MouseButton1Down:connect(function()
  3854. tuoidz = "Strawberry Field"
  3855. FieldText.Text = "Field Select: "..tuoidz
  3856. end)
  3857. PineappleButton.MouseButton1Down:connect(function()
  3858. tuoidz = "Pineapple Patch"
  3859. FieldText.Text = "Field Select: "..tuoidz
  3860. end)
  3861. StumpButton.MouseButton1Down:connect(function()
  3862. tuoidz = "Stump Field"
  3863. FieldText.Text = "Field Select: "..tuoidz
  3864. end)
  3865. RoseButton.MouseButton1Down:connect(function()
  3866. tuoidz = "Rose Field"
  3867. FieldText.Text = "Field Select: "..tuoidz
  3868. end)
  3869. CactusButton.MouseButton1Down:connect(function()
  3870. tuoidz = "Cactus Field"
  3871. FieldText.Text = "Field Select: "..tuoidz
  3872. end)
  3873. PumpkinButton.MouseButton1Down:connect(function()
  3874. tuoidz = "Pumpkin Patch"
  3875. FieldText.Text = "Field Select: "..tuoidz
  3876. end)
  3877. PineTreeButton.MouseButton1Down:connect(function()
  3878. tuoidz = "Pine Tree Forest"
  3879. FieldText.Text = "Field Select: "..tuoidz
  3880. end)
  3881. MountainTopButton.MouseButton1Down:connect(function()
  3882. tuoidz = "Mountain Top Field"
  3883. FieldText.Text = "Field Select: "..tuoidz
  3884. end)
  3885. CoconutButton.MouseButton1Down:connect(function()
  3886. tuoidz = "Coconut Field"
  3887. FieldText.Text = "Field Select: "..tuoidz
  3888. end)
  3889. PepperButton.MouseButton1Down:connect(function()
  3890. tuoidz = "Pepper Patch"
  3891. FieldText.Text = "Field Select: "..tuoidz
  3892. end)
  3893.  
  3894.  
  3895.  
  3896. local player = game.Players.LocalPlayer
  3897.  
  3898. local mouse = player:GetMouse()
  3899. local gui = Instance.new("ScreenGui",player.PlayerGui)
  3900. local frame = Instance.new("Frame",gui)
  3901. local act6 = false
  3902. local act6temp = false
  3903. local act5 = false
  3904.  
  3905.  
  3906. func.SellDig = coroutine.wrap(function()
  3907. while wait() do
  3908. if selling then
  3909. Dig()
  3910. end
  3911. end
  3912. end)
  3913. func.SellDig()
  3914. func.SellFix = coroutine.wrap(function()
  3915. while wait() do
  3916. if selling then
  3917. wait(.5)
  3918. local tpos = game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.ActivateButton
  3919. if tpos.AbsolutePosition.Y ~= 4 then
  3920. if farming then
  3921. --tpT(game:GetService("Players").LocalPlayer.SpawnPos.Value,0.2)
  3922. local sanghuman = player.Character.HumanoidRootPart
  3923.  
  3924. --game:GetService("Players").LocalPlayer.Character:MoveTo(game:GetService("Players").LocalPlayer.SpawnPos.Value.p)
  3925. local sp = game:GetService("Players").LocalPlayer.SpawnPos.Value.p
  3926. local p = CFrame.new(sp.X,sp.Y,sp.Z,-0.996,0,0.02,0,1,0,-0.02,0,-0.9) + Vector3.new(0,0,9)
  3927. --sanghuman.CFrame = p
  3928. WalkToHive(p)
  3929. --game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Players").LocalPlayer.SpawnPos.Value
  3930. end
  3931. end
  3932. wait(1)
  3933. if string.match(tpos.TextBox.Text,"Stop") then
  3934.  
  3935. else
  3936. if string.match(tpos.TextBox.Text,"Collect") then
  3937. else
  3938. if farming then
  3939. game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  3940. end
  3941.  
  3942. end
  3943. end
  3944.  
  3945.  
  3946. end
  3947. end
  3948.  
  3949. end)
  3950.  
  3951. func.SellFix()
  3952.  
  3953.  
  3954.  
  3955. function Voiddz(sanghuman,sangzboi)
  3956. local jimmy = coroutine.wrap(function()
  3957. repeat
  3958. local sanghuman = player.Character.HumanoidRootPart
  3959. local hotboi = sanghuman.CFrame
  3960. local sangzboi = workspace.FlowerZones[tuoidz].CFrame
  3961.  
  3962. if farmbubble then
  3963. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  3964. if v.ClassName=="Part" then
  3965. if (((v.Position-sangzboi.p).magnitude <= 60) and (sanghuman.Position-v.Position).magnitude<=60) then
  3966. if IsPopStar() then break end
  3967. if v:FindFirstChild("FrontDecal") then
  3968. if (v.FrontDecal.Texture == TokenId["BlueBomb"] and v.FrontDecal.Color3 == Color3.fromRGB(70, 126, 251)) or (v.FrontDecal.Texture == TokenId["BlueBomb+"] and v.FrontDecal.Color3 == Color3.fromRGB(70, 126, 251)) or v.FrontDecal.Texture == TokenId["TokenLink"] and farming then
  3969. sanghuman.CFrame = CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z)
  3970. wait(.2)
  3971.  
  3972. end
  3973. end
  3974. end
  3975. end
  3976. end
  3977. while IsPopStar() do
  3978.  
  3979. for k,v in pairs(game.Workspace.Collectibles:GetChildren()) do
  3980. if ((v.Position-sangzboi.p).magnitude <= 60) and (sanghuman.Position-v.Position).magnitude<=60 then
  3981. if v:FindFirstChild("FrontDecal") then
  3982. if v.FrontDecal.Texture == TokenId["Frog"] and farming then
  3983. sanghuman.CFrame = CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z)
  3984. wait(.3)
  3985.  
  3986. end
  3987.  
  3988. end
  3989. end
  3990.  
  3991.  
  3992. end
  3993.  
  3994. for k,v in pairs(game.Workspace.Particles:GetChildren()) do
  3995. if v.ClassName == "Part" then
  3996. if ((v.Position-sangzboi.p).magnitude <= 60) and (sanghuman.Position-v.Position).magnitude<=60 and farming then
  3997. if v.Name == "Bubble" then
  3998. sanghuman.CFrame = CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z)
  3999. wait(.1)
  4000. end
  4001.  
  4002. end
  4003. end
  4004. end
  4005. wait()
  4006. end
  4007.  
  4008. wait(.1)
  4009. else
  4010. Dig()
  4011. for k,v in pairs(GetTokenLink()) do
  4012. if act6temp then break; end
  4013. if onlyhoney then break; end
  4014. if ((v.Position-sangzboi.p).magnitude <= 60) and (sanghuman.Position-v.Position).magnitude<=60 and farming then
  4015. tp(CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z),0.2)
  4016. Dig()
  4017. end
  4018. end
  4019.  
  4020. for k,v in pairs(GetToken("Star")) do
  4021. if act6temp then break; end
  4022. if onlyhoney then break; end
  4023. if ((v.Position-sangzboi.p).magnitude <= 60) and (sanghuman.Position-v.Position).magnitude<=60 and farming then
  4024. tp(CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z),0.2)
  4025. Dig()
  4026. end
  4027. end
  4028. for k,v in pairs(workspace.Collectibles:GetChildren()) do
  4029. if act6temp then break; end
  4030. if tostring(v) == tostring(game.Players.LocalPlayer.Name) or tostring(v) == "C" then
  4031. if ((v.Position-sangzboi.p).magnitude <= 60) and (sanghuman.Position-v.Position).magnitude<=60 then
  4032.  
  4033. if v:FindFirstChild("FrontDecal") then
  4034. --if v.FrontDecal.Texture == HoneyBeeDecal then
  4035. --sanghuman.CFrame = CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z)
  4036. local times = 0.2
  4037. if nothoney then
  4038. if v.FrontDecal.Texture ~= HoneyBeeDecal and farming then
  4039. tp(CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z),times)
  4040. Dig()
  4041. end
  4042. else
  4043. if onlyhoney then
  4044. if v.FrontDecal.Texture == HoneyBeeDecal and farming then
  4045. tp(CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z),times)
  4046. end
  4047. else
  4048. if farming then
  4049. tp(CFrame.new(v.Position.x, sanghuman.Position.y, v.Position.z),times)
  4050. Dig()
  4051. end
  4052. end
  4053.  
  4054.  
  4055. end
  4056. wait(.05)
  4057. local intvalue = Instance.new("IntValue",v)
  4058. intvalue.Name = "Void"
  4059. --wait(.1)
  4060.  
  4061. end
  4062. end
  4063. --end
  4064. end
  4065. end
  4066. end
  4067. --wait(.1)
  4068. if (game.Workspace.FlowerZones[tuoidz].Position - player.Character.HumanoidRootPart.Position).magnitude >= 50 then
  4069. --tp(sangzboi * CFrame.new(0,0,0))
  4070. if farming then
  4071. --sanghuman.CFrame = sangzboi * CFrame.new(0,0,0)
  4072. WalkToHive(sangzboi * CFrame.new(0,0,0))
  4073. wait(1)
  4074. game.ReplicatedStorage.Events.PlayerActivesCommand:FireServer(
  4075. {
  4076. ["Name"] = "Sprinkler Builder"
  4077. }
  4078. )
  4079. --sanghuman.CFrame = sangzboi * CFrame.new(0,0,0)
  4080. end
  4081. end
  4082. wait(.1)
  4083. until not act6 or act6temp
  4084. end)
  4085.  
  4086. jimmy()
  4087.  
  4088. end
  4089. StartButton.MouseButton1Down:connect(function()
  4090. if act6 == true then
  4091. act6 = false
  4092. farming = false
  4093. StartButton.BackgroundColor3 = blue
  4094. StartButton.Text = "START FARMING"
  4095. else
  4096. act6 = true
  4097. StartButton.BackgroundColor3 = red
  4098. StartButton.Text = "STOP FARMING"
  4099. farming = true
  4100.  
  4101.  
  4102. local jimmy3 = coroutine.wrap(function()
  4103. repeat
  4104. wait()
  4105. for k,v in pairs(workspace[player.Name]:GetChildren()) do
  4106. if v:FindFirstChild("Display") then
  4107. if player.CoreStats.Pollen.Value>= player.CoreStats.Capacity.Value then
  4108. act6temp = true
  4109. selling = true
  4110. wait(4)
  4111. local sanghuman = player.Character.HumanoidRootPart
  4112. local hotboi = sanghuman.CFrame
  4113. local sangzboi = workspace.FlowerZones[tuoidz].CFrame
  4114.  
  4115. --game:GetService("Players").LocalPlayer.Character:MoveTo(game:GetService("Players").LocalPlayer.SpawnPos.Value.p)
  4116. local sp = game:GetService("Players").LocalPlayer.SpawnPos.Value.p
  4117. local p = CFrame.new(sp.X,sp.Y,sp.Z,-0.996,0,0.02,0,1,0,-0.02,0,-0.9) + Vector3.new(0,0,9)
  4118. --sanghuman.CFrame = p
  4119. WalkToHive(p)
  4120. wait(3)
  4121. game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  4122. local ticks = tick()
  4123. repeat wait(.1) until (player.CoreStats.Pollen.Value <= 1 and ticks-tick()<30) or farming==false
  4124. wait(1)
  4125. selling = false
  4126. --sanghuman.CFrame = sangzboi * CFrame.new(0,0,0)
  4127. wait(1)
  4128. local A = {
  4129. ["Name"] = "Sprinkler Builder"
  4130. }
  4131. local Event = game:GetService("ReplicatedStorage").Events.PlayerActivesCommand
  4132. Event:FireServer(A)
  4133. wait(1)
  4134. Voiddz(sanghuman,sangzboi)
  4135. act6temp = false
  4136. end
  4137. end
  4138. wait()
  4139. end
  4140. wait(1)
  4141. until not act6
  4142. end)
  4143. Voiddz(sanghuman,sangzboi)
  4144. jimmy3()
  4145. end
  4146. end)
  4147. RemoteQuest.MouseButton1Down:connect(function()
  4148. if act5 == true then
  4149. act5 = false
  4150. RemoteQuest.BackgroundColor3 = blue
  4151. RemoteQuest.Text = "Auto Quest"
  4152. else
  4153. act5 = true
  4154. RemoteQuest.BackgroundColor3 = red
  4155. RemoteQuest.Text = "Auto Quest"
  4156. repeat
  4157. wait(5)
  4158. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Pepper")
  4159. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Coconut")
  4160. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Playtime")
  4161. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Honey")
  4162. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Quest")
  4163. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Battle")
  4164. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Ability")
  4165. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Goo")
  4166. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Sunflower")
  4167. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Dandelion")
  4168. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Mushroom")
  4169. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Blue Flower")
  4170. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Clover")
  4171. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Spider")
  4172. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Bamboo")
  4173. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Strawberry")
  4174. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Pineapple")
  4175. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Pumpkin")
  4176. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Cactus")
  4177. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Rose")
  4178. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Pine Tree")
  4179. game.ReplicatedStorage.Events.BadgeEvent:FireServer("Collect", "Stump")
  4180. game.ReplicatedStorage.Events.ToyEvent:FireServer("Glue Dispenser")
  4181. game.ReplicatedStorage.Events.ToyEvent:FireServer("Free Royal Jelly Dispenser")
  4182. game.ReplicatedStorage.Events.ToyEvent:FireServer("Blueberry Dispenser")
  4183. game.ReplicatedStorage.Events.ToyEvent:FireServer("Strawberry Dispenser")
  4184. game.ReplicatedStorage.Events.ToyEvent:FireServer("Treat Dispenser")
  4185. game.ReplicatedStorage.Events.ToyEvent:FireServer("Wealth Clock")
  4186. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Brown Bear")
  4187. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Polar Bear")
  4188. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Honey Bee")
  4189. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Black Bear")
  4190. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Bucko Bee")
  4191. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Riley Bee")
  4192. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Brown Bear")
  4193. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Polar Bear")
  4194. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Honey Bee")
  4195. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Black Bear")
  4196. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Bucko Bee")
  4197. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Riley Bee")
  4198.  
  4199. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Black Bear 2")
  4200. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Black Bear 2")
  4201. game.ReplicatedStorage.Events.GiveQuestFromPool:FireServer("Brown Bear 2")
  4202. game.ReplicatedStorage.Events.CompleteQuestFromPool:FireServer("Brown Bear 2")
  4203.  
  4204.  
  4205.  
  4206.  
  4207. until not act5
  4208. end
  4209. end)
  4210.  
  4211. Killstumnail.MouseButton1Down:connect(function()
  4212. if afksnail == false then
  4213. afksnail = true
  4214. Killstumnail.BackgroundColor3 = red
  4215.  
  4216.  
  4217. local test = "C"
  4218. local tweenservice = game:GetService("TweenService")
  4219. local plr = game.Players.LocalPlayer
  4220. local info = TweenInfo.new(0.1) -- change to how long it takes to get to the item (in seconds)
  4221. local item = {}
  4222. while afksnail do
  4223. wait(1)
  4224. for _,v in pairs(game.workspace:GetDescendants()) do
  4225. if string.find(v.Name,"LeafBurst") then
  4226. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Parent.CFrame * CFrame.new(0,0,0)
  4227. end
  4228. end
  4229. for k,v in pairs(workspace.Collectibles:GetChildren()) do
  4230. if tostring(v) == tostring(game.Players.LocalPlayer.Name) or tostring(v) == test then
  4231. if (v.Position-plr.Character.HumanoidRootPart.Position).magnitude <= 60 then
  4232. item.CFrame = CFrame.new(v.Position.x,plr.Character.HumanoidRootPart.Position.y,v.Position.z)
  4233. local Tween = tweenservice:Create(plr.Character.HumanoidRootPart, info, item)
  4234. Tween:Play()
  4235. end
  4236. end
  4237. end
  4238. end
  4239. else
  4240. afksnail = false
  4241. Killstumnail.BackgroundColor3 = blue
  4242. end
  4243. end)
  4244.  
  4245. end
  4246.  
  4247. KLDC()
  4248.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement