takuyahd

Script Ninja Legends GUI 2-0

Nov 3rd, 2019
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.08 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eECjCsip",true))()
  3. library.options.underlinecolor = "rainbow"
  4.  
  5. -- Farming tab
  6. local Farming = library:CreateWindow("Farming")
  7. Farming:Section("-= Farming =-")
  8. local Swing = Farming:Toggle("👉Auto Swing ⚔️", {flag = "Swing"}) -- Farming.flags.Swing
  9. local Sell = Farming:Toggle("👉Auto Sell 💰", {flag = "Sell"}) -- Farming.flags.Sell
  10. local BackpackFull = Farming:Toggle("👉Auto Full Sell 💰", {flag = "FullSell"}) --Farming.flags.FullBackpack
  11. local EAR = Farming:Toggle("👉Auto Pet Levels 🐾", {flag = "L"})
  12. local Chi = Farming:Toggle("👉Auto Chi ☯", {flag = "Chi"})
  13. local Coin = Farming:Toggle("👉Auto Coin 💰", {flag = "Coin"})
  14. Farming:Section("-= Boss Farms =-")
  15. local Boss = Farming:Toggle("👉Auto Robot Boss", {flag = "Boss"}) -- Farming.flags.Boss
  16. local ETBoss = Farming:Toggle("👉Auto Eternal Boss", {flag = "EBoss"}) -- Farming.flags.Boss
  17. local AMBoss = Farming:Toggle("👉Auto Ancient Boss", {flag = "ABoss"}) -- Farming.flags.Boss
  18. local SNB = Farming:Toggle("👉Auto Santa Boss", {flag = "SBoss"})
  19. local AllBoss = Farming:Toggle("👉Auto All Bosses", {flag = "AllBosses"}) -- Farming.flags.Boss
  20. Farming:Section("-= Karma Farms =-")
  21. local GK = Farming:Toggle("👉Auto Good Karma 😇", {flag = "GK"})
  22. local BK = Farming:Toggle("👉Auto Bad Karma 👿", {flag = "BK"})
  23.  
  24. -- Big Head All (Mainly Used for Auto-Kill/Karma)
  25. local head = Farming:Button("👹Big Head All 👹", function()
  26. while wait(1) do
  27. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  28. if v.Name ~= game:GetService("Players").LocalPlayer.Name then
  29. v.Character.Head.CanCollide = false
  30. v.Character.Head.Size = Vector3.new(5, 5, 5)
  31. v.Character.Head.Transparency = 0
  32. end
  33. end
  34. end
  35. end)
  36.  
  37. local Kat = Farming:Button("👉Auto Koth/Boss/Kill", function()
  38. loadstring(game:HttpGet("https://pastebin.com/raw/8eeTdf32",true))()
  39. end)
  40.  
  41. local Hi = Farming:Button("👉Auto Hoops 💰", function()
  42. _G.Hoops = true
  43. while _G.Hoops do
  44. local stuff = workspace.Hoops:getChildren()
  45. for i = 1, #stuff do
  46. if _G.Hoops then
  47. for i = 1, 10 do
  48. stuff[i].touchPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  49. wait()
  50. end
  51. end
  52. wait()
  53. end
  54. end
  55. end)
  56.  
  57. local Hi2 = Farming:Button("👉Disable Auto Hoops 💰", function()
  58. _G.Hoops = false
  59. end)
  60.  
  61. local PetGlitch = Farming:Button("👉Pet Glitch ☯", function()
  62. _G.Glitch = true
  63. while _G.Glitch == true do
  64. wait(.03)
  65. for i,v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  66. if v.Name == "Blue Chi Crate" then
  67. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  68. wait(.16)
  69. end
  70. end
  71. end
  72. end)
  73.  
  74. local PetGlitch2 = Farming:Button("👉Disable Pet Glitch ☯", function()
  75. _G.Glitch = false
  76. end)
  77.  
  78. -- Misc Tab
  79. local Misc = library:CreateWindow("Misc")
  80. Misc:Section("-= AutoBuy =-")
  81. local Sword = Misc:Toggle("👉Auto Sword", {flag = "Sword"}) -- AutoBuy.flags.Sword
  82. local Belt = Misc:Toggle("👉Auto Belt", {flag = "Belt"}) -- AutoBuy.flags.Belt
  83. local Rank = Misc:Toggle("👉Auto Rank", {flag = "Rank"}) -- AutoBuy.flags.Rank
  84. local Skill = Misc:Toggle("👉Auto Skills", {flag = "Skill"}) -- AutoBuy.flags.Skill
  85. local Shuriken = Misc:Toggle("👉Auto Shurikens", {flag = "Shurikens"}) --AutoBuy.flags.Shurikens
  86. _G.Enabled = Misc.flags.Purchase
  87. _G.Sword = Misc.flags.Sword
  88. _G.Belt = Misc.flags.Belt
  89. _G.Rank = Misc.flags.Rank
  90. _G.Skill = Misc.flags.Skill
  91.  
  92. Misc:Section("-= Other Stuff =-")
  93. local Shuriken2 = Misc:Toggle("👉Slow Shuriken", {flag = "Slow"})
  94. local FastThing = Misc:Toggle("👉Fast Shuriken", {flag = "Fast"})
  95. local Invis = Misc:Toggle("👉Invisibility 👻", {flag = "Invis"})
  96.  
  97. -- Max Jump
  98. local MaxJP = Misc:Button("🆙Max Jumps", function()
  99. while wait(.0001) do
  100. game.Players.LocalPlayer.multiJumpCount.Value = "50"
  101. end
  102. end)
  103.  
  104. -- Hide Name
  105. local HideName = Misc:Button("🃏Hide Name", function()
  106. local plrname = game.Players.LocalPlayer.Name
  107. workspace[plrname].Head.nameGui:Destroy()
  108. end)
  109.  
  110. local Heads = Misc:Button("Bring Player Heads", function()
  111. local pos = 5, 0, 5
  112. local player = game.Players:GetChildren()
  113. for i = 1, #player do
  114. if player[i].Name ~= game.Players.LocalPlayer.Name then
  115. local part = player[i].Character.Head
  116. part.Transparency = 0
  117. part.Material = "Neon"
  118. part.CanCollide = false
  119. part.Anchored = true
  120. part.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(pos)
  121. end
  122. end
  123. end)
  124.  
  125. -- ESP
  126. local ESP = Misc:Button("👁ESP", function()
  127. function isnil(thing)
  128. return (thing == nil)
  129. end
  130. local function round(n)
  131. return math.floor(tonumber(n) + 0.5)
  132. end
  133. function UpdatePlayerChams()
  134. for i,v in pairs(game:GetService'Players':GetChildren()) do
  135. pcall(function()
  136. if not isnil(v.Character) then
  137. for _,k in pairs(v.Character:GetChildren()) do
  138. if k:IsA'BasePart' and not k:FindFirstChild'Cham' then
  139. local cham = Instance.new('BoxHandleAdornment',k)
  140. cham.ZIndex= 10
  141. cham.Adornee=k
  142. cham.AlwaysOnTop=true
  143. cham.Size=k.Size
  144. cham.Transparency=.8
  145. cham.Color3=Color3.new(0,0,1)
  146. cham.Name = 'Cham'
  147. end
  148. end
  149. if not isnil(v.Character.Head) and not v.Character.Head:FindFirstChild'NameEsp' then
  150. local bill = Instance.new('BillboardGui',v.Character.Head)
  151. bill.Name = 'NameEsp'
  152. bill.Size=UDim2.new(1,200,1,30)
  153. bill.Adornee=v.Character.Head
  154. bill.AlwaysOnTop=true
  155. local name = Instance.new('TextLabel',bill)
  156. name.TextWrapped=true
  157. name.Text = (v.Name ..' '.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..'m')
  158. name.Size = UDim2.new(1,0,1,0)
  159. name.TextYAlignment='Top'
  160. name.TextColor3=Color3.new(1,1,1)
  161. name.BackgroundTransparency=1
  162. else
  163. v.Character.Head.NameEsp.TextLabel.Text = (v.Name ..' '.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..'m')
  164. end
  165. end
  166. end)
  167. end
  168. end
  169. while wait() do
  170. UpdatePlayerChams()
  171. end
  172. end)
  173.  
  174. -- Unlock All Islands
  175. local UnlockIsland = Misc:Button("Unlock All Islands", function()
  176. for i,v in next, game.workspace.islandUnlockParts:GetChildren() do
  177. if v then
  178. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.islandSignPart.CFrame;
  179. wait(2.5)
  180. end
  181. end
  182. end)
  183.  
  184. Misc:Section("-= 🛠️Settings 🛠️ =-")
  185.  
  186. -- Destroy GUI
  187. local Kill = Misc:Button("❌Destroy GUI ❌", function()
  188. game:GetService("CoreGui").ScreenGui:Destroy()
  189. end)
  190.  
  191. -- Toggle Popups (Chi/Coin thigns)
  192. local StatEffects = Misc:Button("🔕Toggle StatEffects (Popups)", function()
  193. game:GetService("Players").LocalPlayer.PlayerGui.statEffectsGui.Enabled = not game:GetService("Players").LocalPlayer.PlayerGui.statEffectsGui.Enabled
  194. game:GetService("Players").LocalPlayer.PlayerGui.hoopGui.Enabled = not
  195. game:GetService("Players").LocalPlayer.PlayerGui.hoopGui.Enabled
  196. end)
  197.  
  198. -- Toggable GUI Key
  199. Misc:Bind("▶Toggle Gui",
  200. {flag = "Toggle", kbonly = true, default = Enum.KeyCode.RightControl},
  201. function()
  202. game:GetService("CoreGui").ScreenGui.Container.Visible = not game:GetService("CoreGui").ScreenGui.Container.Visible
  203. end)
  204.  
  205. -- Teleports
  206. local Teleports = library:CreateWindow("Teleports")
  207.  
  208. Teleports:Section("-= 🌀Utilitys 🌀 =-")
  209.  
  210. local KOTH = Teleports:Button("👑King Of The Hill", function()
  211. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").kingOfTheHillPart.CFrame
  212. end)
  213.  
  214. local Skills1 = Teleports:Button("⛪Light Skills Shop", function()
  215. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.49514, 3.24800324, 0.0838552266)
  216. end)
  217.  
  218. local Skills2 = Teleports:Button("⛪Dark Skills Shop", function()
  219. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.549767, 3.24800324, 58.087841)
  220. end)
  221.  
  222. local Skills = Teleports:Button("⛪Skills Shop", function()
  223. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").skillAreaCircles["skillsAreaCircle11"].circleInner.CFrame
  224. end)
  225.  
  226. local Shop = Teleports:Button("⛪Shop", function()
  227. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").shopAreaCircles["shopAreaCircle11"].circleInner.CFrame
  228. end)
  229.  
  230. -- Training Area Teleports
  231. Teleports:Section("-= 🌀Training Areas 🌀 =-")
  232. local a1 = Teleports:Button("😇Mystical Waters (Good)", function()
  233. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(347.74881, 8824.53809, 114.271019)
  234. end)
  235.  
  236. local a2 = Teleports:Button("😇Sword of Legends (Good)", function()
  237. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1834.15967, 38.704483, -141.375641)
  238. end)
  239.  
  240. local a5 = Teleports:Button("😇Elemental Tornado (Good)", function()
  241. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(299.758484, 30383.0957, -90.1542206)
  242. end)
  243.  
  244. local a3 = Teleports:Button("👿Lava Pit (Bad)", function()
  245. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.631485, 12952.5381, 271.14624)
  246. end)
  247.  
  248. local a4 = Teleports:Button("👿Tornado (Bad)", function()
  249. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(325.641174, 16872.0938, -9.9906435)
  250. end)
  251.  
  252. local a6 = Teleports:Button("👿Swords Of Ancients (Bad)", function()
  253. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(648.365662, 38.704483, 2409.72266)
  254. end)
  255.  
  256. -- World/Island Teleports 1
  257. Teleports:Section("-= 🌀Worlds Islands 🌀 =-")
  258. local Islands = {}
  259. for i,v in next, game.workspace.islandUnlockParts:GetChildren() do
  260. if v then
  261. table.insert(Islands, v.Name)
  262. end
  263. end
  264. Teleports:Dropdown('Teleports', {list = Islands}, function(a)
  265. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.islandUnlockParts[a].islandSignPart.CFrame
  266. end)
  267.  
  268. -- World/Island Teleports 2
  269. Teleports:Section("-= 🌀Worlds 🌀 =-")
  270.  
  271. local Ground = Teleports:Button("Spawn Island", function()
  272. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-7.51416588, 3.19600391, 70.7879868)
  273. end)
  274.  
  275. local EnchantedIsland = Teleports:Button("Enchanted Island", function()
  276. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Enchanted Island"].CFrame
  277. end)
  278.  
  279. local AstralIsland = Teleports:Button("Astral Island", function()
  280. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Astral Island"].CFrame
  281. end)
  282.  
  283. local MysticalIsland = Teleports:Button("Mystical Island", function()
  284. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Mystical Island"].CFrame
  285. end)
  286.  
  287. local SpaceIsland = Teleports:Button("Space Island", function()
  288. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Space Island"].CFrame
  289. end)
  290.  
  291. local TundraIsland = Teleports:Button("Tundra Island", function()
  292. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Tundra Island"].CFrame
  293. end)
  294.  
  295. local EternalIsland = Teleports:Button("Eternal Island", function()
  296. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Eternal Island"].CFrame
  297. end)
  298.  
  299. local Sandstorm = Teleports:Button("Sandstorm Island", function()
  300. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Sandstorm"].CFrame
  301. end)
  302.  
  303. local Thunderstorm = Teleports:Button("Thunderstorm Island", function()
  304. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Thunderstorm"].CFrame
  305. end)
  306.  
  307. local Ancient = Teleports:Button("Ancient Island", function()
  308. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Ancient Inferno Island"].CFrame
  309. end)
  310.  
  311. local Shadow = Teleports:Button("Midnight Island", function()
  312. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Midnight Shadow Island"].CFrame
  313. end)
  314.  
  315. local Souls = Teleports:Button("Mythical Souls Island", function()
  316. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Mythical Souls Island"].CFrame
  317. end)
  318.  
  319. -- Chests Teleports
  320. local CTeleports = library:CreateWindow("Chests")
  321.  
  322. local midnightShadowChest = CTeleports:Button("Midnight Chest", function()
  323. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.midnightShadowChest.chestNamePart.CFrame
  324. end)
  325.  
  326. local ancientChest = CTeleports:Button("Ancient Chest", function()
  327. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.ancientChest.chestNamePart.CFrame
  328. end)
  329.  
  330. local thunderChest = CTeleports:Button("Thunder Chest", function()
  331. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.thunderChest.chestNamePart.CFrame
  332. end)
  333.  
  334. local saharaChest = CTeleports:Button("Sahara Chest", function()
  335. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.saharaChest.chestNamePart.CFrame
  336. end)
  337.  
  338. local EternalChest = CTeleports:Button("Eternal Chest", function()
  339. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.eternalChest.chestNamePart.CFrame
  340. end)
  341.  
  342. local MythicalChest = CTeleports:Button("Legends Chest", function()
  343. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.legendsChest.chestNamePart.CFrame
  344. end)
  345.  
  346. local MythicalChest = CTeleports:Button("Mythical Chest", function()
  347. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.mythicalChest.chestNamePart.CFrame
  348. end)
  349.  
  350. local GoldenChest = CTeleports:Button("Golden Chest", function()
  351. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.goldenChest.chestNamePart.CFrame
  352. end)
  353.  
  354. local EnchantedChest = CTeleports:Button("Enchanted Chest", function()
  355. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.enchantedChest.chestNamePart.CFrame
  356. end)
  357.  
  358. local MagmaChest = CTeleports:Button("Magma Chest", function()
  359. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.magmaChest.chestNamePart.CFrame
  360. end)
  361.  
  362. local DailyRewards = CTeleports:Button("Daily Rewards", function()
  363. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace["Daily Chest"].chestNamePart.CFrame
  364. end)
  365.  
  366. local GroupRewards = CTeleports:Button("Group Rewards", function()
  367. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.groupRewardsCircle.circleInner.CFrame
  368. end)
  369.  
  370. -- Collect Light Karma Chest
  371. local LightKarma = CTeleports:Button("Collect Light Chest", function()
  372. game:GetService("Workspace").lightKarmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  373. wait(5)
  374. game:GetService("Workspace").lightKarmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  375. end)
  376.  
  377. -- Collect Dark Karma Chest
  378. local ChestCollect = CTeleports:Button("Collect Evil Chest", function()
  379. game:GetService("Workspace").evilKarmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  380. wait(5)
  381. game:GetService("Workspace").evilKarmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  382. end)
  383.  
  384. -- Collect All Chest
  385. local ChestCollect = CTeleports:Button("Collect All Chest (Don't Move)", function()
  386. game:GetService("Workspace").mythicalChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  387. wait(3.5)
  388. game:GetService("Workspace").goldenChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  389. wait(3.5)
  390. game:GetService("Workspace").enchantedChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  391. wait(3.5)
  392. game:GetService("Workspace").magmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  393. wait(3.5)
  394. game:GetService("Workspace").legendsChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  395. wait(3.5)
  396. game:GetService("Workspace").eternalChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  397. wait(3.5)
  398. game:GetService("Workspace").saharaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  399. wait(3.5)
  400. game:GetService("Workspace").thunderChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  401. wait(3.5)
  402. game:GetService("Workspace").ancientChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  403. wait(3.5)
  404. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  405. wait(3.5)
  406. game:GetService("Workspace").groupRewardsCircle["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  407. wait(3.5)
  408. game:GetService("Workspace")["Daily Chest"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  409. wait(3.5)
  410. game:GetService("Workspace")["wonderChest"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  411. wait(3.5)
  412. game:GetService("Workspace").wonderChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  413. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  414. game:GetService("Workspace").ancientChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  415. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  416. game:GetService("Workspace").thunderChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  417. game:GetService("Workspace").saharaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  418. game:GetService("Workspace").eternalChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  419. game:GetService("Workspace").legendsChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  420. game:GetService("Workspace").magmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  421. game:GetService("Workspace").enchantedChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  422. game:GetService("Workspace").goldenChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  423. game:GetService("Workspace").mythicalChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  424. game:GetService("Workspace").groupRewardsCircle["circleInner"].CFrame = game.Workspace.Part.CFrame
  425. game:GetService("Workspace")["Daily Chest"].circleInner.CFrame = game.Workspace.Part.CFrame
  426. end)
  427.  
  428. -- PET
  429. local Pets = library:CreateWindow("Pets")
  430. -- Open Pets
  431. Pets:Section("- Open Pets -")
  432. local Settings = {}
  433. local Crystals = {}
  434. for i,v in next, game.workspace.mapCrystalsFolder:GetChildren() do
  435. if v then
  436. table.insert(Crystals,v.Name)
  437. end
  438. end
  439. Pets:Dropdown('Crystals', {location = Settings, flag = "Crystal", list = Crystals})
  440. Pets:Toggle("👉Open Eggs 🐣", {location = Settings, flag = "TEgg"})
  441.  
  442. -- Pet Options
  443. Pets:Section("-= Pet Options =-")
  444. local Evolve = Pets:Toggle("👉Auto Evolve", {flag = "Evolve"})
  445. local Eternalise = Pets:Toggle("👉Auto Eternalise", {flag = "Eternalise"})
  446. local Immortalize = Pets:Toggle("👉Auto Immortalize", {flag = "Immortalize"})
  447. local Legend = Pets:Toggle("👉Auto Legend", {flag = "Legend"})
  448. local Elemental = Pets:Toggle("👉Auto Elementalize", {flag = "Elemental"})
  449.  
  450. -- Sell Pets
  451. Pets:Section("-= Sell Pet 1 =-")
  452. local Basic = Pets:Toggle("▶Sell All Basic", {flag = "SBasic"})
  453. local Advanced = Pets:Toggle("▶Sell All Advanced", {flag = "SAdvanced"})
  454. local Rare = Pets:Toggle("▶Sell All Rare", {flag = "SRare"})
  455. local Epic = Pets:Toggle("▶Sell All Epic", {flag = "SEpic"})
  456. local Unique = Pets:Toggle("▶Sell All Unique", {flag = "SUnique"})
  457. local IPB = Pets:Toggle("▶Sell All Omega", {flag = "SIPB"})
  458. local Elite = Pets:Toggle("▶Sell All Elite", {flag = "SElite"})
  459. local Infinity = Pets:Toggle("▶Sell All Infinity", {flag = "SInfinity"})
  460. Pets:Section("-= Sell Pet 2 =-")
  461. local Pet1 = Pets:Toggle("▶Sell All Firecaster", {flag = "S1"})
  462. local Pet2 = Pets:Toggle("▶Sell All Magical Kitty", {flag = "S2"})
  463. local Pet3 = Pets:Toggle("▶Sell All Phantom", {flag = "S3"})
  464. local Pet4 = Pets:Toggle("▶Sell All Drive Dragon", {flag = "S4"})
  465. local Pet5 = Pets:Toggle("▶Sell All Manticore", {flag = "S5"})
  466.  
  467. -- Credits
  468. local credits = library:CreateWindow("Credits")
  469. credits:Section("🎉Gui Modify By Esc997")
  470. credits:Section("🙌Help from 🙌")
  471. credits:Section("📞Esc997 #6668")
  472. credits:Section("⚡My Discord")
  473. credits:Section("💎discord.gg/k2xCVhH")
  474. credits:Button("📋Copy Discord Invite", function()
  475. syn.write_clipboard("https://discord.gg/k2xCVhH")
  476. end)
  477. credits:Section("📜Gui Modify By Esc997")
  478. credits:Section("🌈Facebook")
  479. credits:Section("⚡Esc997")
  480. credits:Button("📋Copy Facebook link", function()
  481. syn.write_clipboard(
  482. "https://www.facebook.com/esc997")
  483. end)
  484.  
  485. local rs = game:GetService("RunService").RenderStepped
  486.  
  487. -- Open Crystals
  488. spawn(function()
  489. while wait(.01) do
  490. if Settings.TEgg then
  491. local oh1 = "openCrystal"
  492. local oh2 = Settings.Crystal
  493. game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(oh1, oh2)
  494. end
  495. end
  496. end)
  497.  
  498. -- Auto-Swing
  499. spawn(function()
  500. while wait() do
  501. if Farming.flags.Swing then
  502. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  503. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  504. game.Players.LocalPlayer.ninjaEvent:FireServer("swingKatana")
  505. else
  506. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  507. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  508. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  509. wait()
  510. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  511. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  512. end
  513. end
  514. end
  515. end
  516. end
  517. end
  518. end
  519. end)
  520.  
  521. -- Auto-Sell
  522. spawn(function()
  523. while wait(0.01) do
  524. if Farming.flags.Sell then
  525. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  526. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  527. wait(.1)
  528. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Workspace.Part.CFrame
  529. end
  530. end
  531. end
  532. end)
  533.  
  534. -- Auto-Full Sell
  535. spawn(function()
  536. while wait(0.01) do
  537. if Farming.flags.FullSell then
  538. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  539. if player.PlayerGui.gameGui.maxNinjitsuMenu.Visible == true then
  540. game.workspace.sellAreaCircles["sellAreaCircle6"].circleInner.CFrame = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  541. wait(.05)
  542. game.workspace.sellAreaCircles["sellAreaCircle6"].circleInner.CFrame = game.Workspace.Part.CFrame
  543. end
  544. end
  545. end
  546. end
  547. end)
  548.  
  549. -- Invisibility
  550. spawn(function()
  551. while wait(0.001) do
  552. if Misc.flags.Invis then
  553. local A_1 = "goInvisible"
  554. local Event = game.Players.LocalPlayer.ninjaEvent
  555. Event:FireServer(A_1)
  556. end
  557. end
  558. end)
  559.  
  560. -- Auto-Pet Levels
  561. spawn(function()
  562. while wait(0.00011) do
  563. if Farming.flags.L then
  564. local plr = game.Players.LocalPlayer
  565. for _,v in pairs(workspace.Hoops:GetDescendants()) do
  566. if v.ClassName == "MeshPart" then
  567. v.touchPart.CFrame = plr.Character.HumanoidRootPart.CFrame
  568. end
  569. end
  570. end
  571. end
  572. end)
  573.  
  574. -- Good Karma Farm
  575. spawn(function()
  576. while wait(0.4) do
  577. if Farming.flags.GK then
  578. loadstring(game:HttpGet(('https://pastebin.com/raw/NC9zGtMz'),true))()
  579. end
  580. end
  581. end)
  582.  
  583. -- Bad Karma Farm
  584. spawn(function()
  585. while wait(0.4) do
  586. if Farming.flags.BK then
  587. loadstring(game:HttpGet(('https://pastebin.com/raw/U1EqWMY3'),true))()
  588. end
  589. end
  590. end)
  591.  
  592. -- Auto Normal Boss
  593. spawn(function()
  594. while wait(.001) do
  595. if Farming.flags.Boss then
  596. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  597. if game:GetService("Workspace").bossFolder:WaitForChild("RobotBoss"):WaitForChild("HumanoidRootPart") then
  598. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.RobotBoss.HumanoidRootPart.CFrame
  599. if player.Character:FindFirstChildOfClass("Tool") then
  600. player.Character:FindFirstChildOfClass("Tool"):Activate()
  601. else
  602. for i,v in pairs(player.Backpack:GetChildren()) do
  603. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  604. v.attackTime.Value = 0.2
  605. player.Character.Humanoid:EquipTool(v)
  606. if attackfar then
  607. for i,v in pairs(player.Backpack:GetChildren()) do
  608. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  609. player.Character.Humanoid:EquipTool(v)
  610. end
  611. end
  612. end
  613. end
  614. end
  615. end
  616. end
  617. end
  618. end
  619. end
  620. end)
  621.  
  622. -- Auto Eternal Boss
  623. spawn(function()
  624. while wait(.001) do
  625. if Farming.flags.EBoss then
  626. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  627. if game:GetService("Workspace").bossFolder:WaitForChild("EternalBoss"):WaitForChild("HumanoidRootPart") then
  628. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.EternalBoss.HumanoidRootPart.CFrame
  629. if player.Character:FindFirstChildOfClass("Tool") then
  630. player.Character:FindFirstChildOfClass("Tool"):Activate()
  631. else
  632. for i,v in pairs(player.Backpack:GetChildren()) do
  633. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  634. v.attackTime.Value = 0.2
  635. player.Character.Humanoid:EquipTool(v)
  636. if attackfar then
  637. for i,v in pairs(player.Backpack:GetChildren()) do
  638. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  639. player.Character.Humanoid:EquipTool(v)
  640. end
  641. end
  642. end
  643. end
  644. end
  645. end
  646. end
  647. end
  648. end
  649. end
  650. end)
  651.  
  652. -- Auto Anchient Boss
  653. spawn(function()
  654. while wait(.001) do
  655. if Farming.flags.ABoss then
  656. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  657. if game:GetService("Workspace").bossFolder:WaitForChild("AncientMagmaBoss"):WaitForChild("HumanoidRootPart") then
  658. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.AncientMagmaBoss.HumanoidRootPart.CFrame
  659. if player.Character:FindFirstChildOfClass("Tool") then
  660. player.Character:FindFirstChildOfClass("Tool"):Activate()
  661. else
  662. for i,v in pairs(player.Backpack:GetChildren()) do
  663. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  664. v.attackTime.Value = 0.2
  665. player.Character.Humanoid:EquipTool(v)
  666. if attackfar then
  667. for i,v in pairs(player.Backpack:GetChildren()) do
  668. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  669. player.Character.Humanoid:EquipTool(v)
  670. end
  671. end
  672. end
  673. end
  674. end
  675. end
  676. end
  677. end
  678. end
  679. end
  680. end)
  681.  
  682. -- Auto Samurai Santa
  683. spawn(function()
  684. while wait(.001) do
  685. if Farming.flags.SBoss then
  686. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  687. if game:GetService("Workspace").bossFolder:WaitForChild("Samurai Santa"):WaitForChild("HumanoidRootPart") then
  688. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder["Samurai Santa"].HumanoidRootPart.CFrame
  689. if player.Character:FindFirstChildOfClass("Tool") then
  690. player.Character:FindFirstChildOfClass("Tool"):Activate()
  691. else
  692. for i,v in pairs(player.Backpack:GetChildren()) do
  693. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  694. v.attackTime.Value = 0.2
  695. player.Character.Humanoid:EquipTool(v)
  696. if attackfar then
  697. for i,v in pairs(player.Backpack:GetChildren()) do
  698. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  699. player.Character.Humanoid:EquipTool(v)
  700. end
  701. end
  702. end
  703. end
  704. end
  705. end
  706. end
  707. end
  708. end
  709. end
  710. end)
  711.  
  712. -- Auto-All Bosses
  713. spawn(function()
  714. while wait(.001) do
  715. if Farming.flags.AllBosses then
  716. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  717. if game.Workspace.bossFolder:FindFirstChild("Samurai Santa") then
  718. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder["Samurai Santa"].HumanoidRootPart.CFrame
  719. else
  720. if not game.Workspace.bossFolder:FindFirstChild("Samurai Santa") then
  721. if game.Workspace.bossFolder:FindFirstChild("AncientMagmaBoss") then
  722. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.AncientMagmaBoss.HumanoidRootPart.CFrame
  723. else
  724. if not game.Workspace.bossFolder:FindFirstChild("AncientMagmaBoss") then
  725. if game.Workspace.bossFolder:FindFirstChild("EternalBoss") then
  726. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.EternalBoss.HumanoidRootPart.CFrame
  727. else
  728. if not game.Workspace.bossFolder:FindFirstChild("EternalBoss") then
  729. if game.Workspace.bossFolder:FindFirstChild("RobotBoss") then
  730. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.RobotBoss.HumanoidRootPart.CFrame
  731. end
  732. end
  733. end
  734. end
  735. end
  736. end
  737. end
  738. if player.Character:FindFirstChildOfClass("Tool") then
  739. player.Character:FindFirstChildOfClass("Tool"):Activate()
  740. else
  741. for i,v in pairs(player.Backpack:GetChildren()) do
  742. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  743. v.attackTime.Value = 0.2
  744. player.Character.Humanoid:EquipTool(v)
  745. if attackfar then
  746. for i,v in pairs(player.Backpack:GetChildren()) do
  747. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  748. player.Character.Humanoid:EquipTool(v)
  749. end
  750. end
  751. end
  752. end
  753. end
  754. end
  755. end
  756. end
  757. end
  758. end)
  759.  
  760. -- Auto-Buy Swords
  761. spawn(function()
  762. while wait(0.5) do
  763. if Misc.flags.Sword then
  764. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  765. local oh1 = "buyAllSwords"
  766. local oh2 = {"Ground", "Astral Island", "Space Island","Tundra Island", "Eternal Island", "Sandstorm", "Thunderstorm", "Ancient Inferno Island", "Midnight Shadow Island", "Mythical Souls Island", "Winter Wonder Island"}
  767. for i = 1,#oh2 do
  768. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  769. end
  770. end
  771. end
  772. end
  773. end)
  774.  
  775. -- Auto-Buy Belts
  776. spawn(function()
  777. while wait(0.5) do
  778. if Misc.flags.Belt then
  779. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  780. local oh1 = "buyAllBelts"
  781. local oh2 = {"Ground", "Astral Island", "Space Island","Tundra Island", "Eternal Island", "Sandstorm", "Thunderstorm", "Ancient Inferno Island", "Midnight Shadow Island", "Mythical Souls Island", "Winter Wonder Island"}
  782. for i = 1,#oh2 do
  783. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  784. end
  785. end
  786. end
  787. end
  788. end)
  789.  
  790. -- Auto-Buy Skills
  791. spawn(function()
  792. while wait(0.5) do
  793. if Misc.flags.Skill then
  794. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  795. local oh1 = "buyAllSkills"
  796. local oh2 = {"Ground", "Astral Island", "Space Island","Tundra Island", "Eternal Island", "Sandstorm", "Thunderstorm", "Ancient Inferno Island", "Midnight Shadow Island", "Mythical Souls Island", "Winter Wonder Island"}
  797. for i = 1,#oh2 do
  798. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  799. end
  800. end
  801. end
  802. end
  803. end)
  804.  
  805. -- Auto-Buy Ranks
  806. spawn(function()
  807. while wait(0.5) do
  808. if Misc.flags.Rank then
  809. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  810. local oh1 = "buyRank"
  811. local oh2 = game:GetService("ReplicatedStorage").Ranks.Ground:GetChildren()
  812. for i = 1,#oh2 do
  813. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i].Name)
  814. end
  815. end
  816. end
  817. end
  818. end)
  819.  
  820. -- Auto-Buy Shurikens
  821. spawn(function()
  822. while wait(0.5) do
  823. if Misc.flags.Shurikens then
  824. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  825. local oh1 = "buyAllShurikens"
  826. local oh2 = {"Ground", "Astral Island", "Space Island","Tundra Island", "Eternal Island", "Sandstorm", "Thunderstorm", "Ancient Inferno Island", "Midnight Shadow Island", "Mythical Souls Island", "Winter Wonder Island"}
  827. for i = 1,#oh2 do
  828. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  829. end
  830. end
  831. end
  832. end
  833. end)
  834.  
  835. -- Auto-Buy Shurikens
  836. spawn(function()
  837. while wait(0.5) do
  838. if Misc.flags.Shurikens then
  839. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  840. local oh1 = "buyAllShurikens"
  841. local oh2 = {"Ground", "Astral Island", "Space Island","Tundra Island", "Eternal Island", "Sandstorm", "Thunderstorm", "Ancient Inferno Island", "Midnight Shadow Island", "Mythical Souls Island", "Winter Wonder Island"}
  842. for i = 1,#oh2 do
  843. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  844. end
  845. end
  846. end
  847. end
  848. end)
  849.  
  850. -- Auto-Chi
  851. spawn(function()
  852. while wait(0.033) do
  853. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  854. if Farming.flags.Chi then
  855. for i,v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  856. if v.Name == "Blue Chi Crate" then
  857. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  858. wait(.16)
  859. end
  860. end
  861. end
  862. end
  863. end
  864. end)
  865.  
  866. -- Auto-Coin
  867. spawn(function()
  868. while wait(0.033) do
  869. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  870. if Farming.flags.Coin then
  871. for i,v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  872. if v.Name == "Coin" then
  873. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  874. wait(.16)
  875. end
  876. end
  877. end
  878. end
  879. end
  880. end)
  881.  
  882. -- Auto Evolve Pet
  883. spawn(function()
  884. while wait(3) do
  885. if Pets.flags.Evolve then
  886. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  887. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  888. for i,x in pairs(v:GetChildren()) do
  889. local oh1 = "evolvePet"
  890. local oh2 = x.Name
  891. game:GetService("ReplicatedStorage").rEvents.petEvolveEvent:FireServer(oh1, oh2)
  892. end
  893. end
  894. end
  895. end
  896. end
  897. end)
  898.  
  899. -- Auto-Eternalize Pet
  900. spawn(function()
  901. while wait(3) do
  902. if Pets.flags.Eternalise then
  903. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  904. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  905. for i,x in pairs(v:GetChildren()) do
  906. local oh1 = "eternalizePet"
  907. local oh2 = x.Name
  908. game:GetService("ReplicatedStorage").rEvents.petEternalizeEvent:FireServer(oh1, oh2)
  909. end
  910. end
  911. end
  912. end
  913. end
  914. end)
  915.  
  916. -- Auto-Immortalize Pet
  917. spawn(function()
  918. while wait(3) do
  919. if Pets.flags.Immortalize then
  920. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  921. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  922. for i,x in pairs(v:GetChildren()) do
  923. local oh1 = "immortalizePet"
  924. local oh2 = x.Name
  925. game:GetService("ReplicatedStorage").rEvents.petImmortalizeEvent:FireServer(oh1, oh2)
  926. end
  927. end
  928. end
  929. end
  930. end
  931. end)
  932.  
  933. -- Auto-Legend Pet
  934. spawn(function()
  935. while wait(3) do
  936. if Pets.flags.Legend then
  937. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  938. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  939. for i,x in pairs(v:GetChildren()) do
  940. local oh1 = "legendPet"
  941. local oh2 = x.Name
  942. game:GetService("ReplicatedStorage").rEvents.petLegendEvent:FireServer(oh1, oh2)
  943. end
  944. end
  945. end
  946. end
  947. end
  948. end)
  949.  
  950. -- Auto-Elemental Pet
  951. spawn(function()
  952. while wait(3) do
  953. if Pets.flags.Elemental then
  954. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  955. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  956. for i,x in pairs(v:GetChildren()) do
  957. local oh1 = "elementalizePet"
  958. local oh2 = x.Name
  959. game:GetService("ReplicatedStorage").rEvents.petLegendEvent:FireServer(oh1, oh2)
  960. end
  961. end
  962. end
  963. end
  964. end
  965. end)
  966.  
  967. -- Sell All Basics
  968. spawn(function()
  969. while wait(1) do
  970. if Pets.flags.SBasic then
  971. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  972. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Basic:GetChildren()) do
  973. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  974. end
  975. end
  976. end
  977. end
  978. end)
  979.  
  980. -- Sell All Advanced
  981. spawn(function()
  982. while wait(1) do
  983. if Pets.flags.SAdvanced then
  984. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  985. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Advanced:GetChildren()) do
  986. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  987. end
  988. end
  989. end
  990. end
  991. end)
  992.  
  993. -- Sell All Rares
  994. spawn(function()
  995. while wait(1) do
  996. if Pets.flags.SRare then
  997. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  998. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Rare:GetChildren()) do
  999. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1000. end
  1001. end
  1002. end
  1003. end
  1004. end)
  1005.  
  1006.  
  1007. -- Sell All Epics
  1008. spawn(function()
  1009. while wait(1) do
  1010. if Pets.flags.SEpic then
  1011. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1012. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Epic:GetChildren()) do
  1013. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1014. end
  1015. end
  1016. end
  1017. end
  1018. end)
  1019.  
  1020. -- Sell All Uniques
  1021. spawn(function()
  1022. while wait(1) do
  1023. if Pets.flags.SUnique then
  1024. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1025. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Unique:GetChildren()) do
  1026. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1027. end
  1028. end
  1029. end
  1030. end
  1031. end)
  1032.  
  1033. -- Sell All Omegas
  1034. spawn(function()
  1035. while wait(1) do
  1036. if Pets.flags.SOmega then
  1037. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1038. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Omega:GetChildren()) do
  1039. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1040. end
  1041. end
  1042. end
  1043. end
  1044. end)
  1045.  
  1046. -- Sell All Elites
  1047. spawn(function()
  1048. while wait(1) do
  1049. if Pets.flags.SElite then
  1050. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1051. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Elite:GetChildren()) do
  1052. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1053. end
  1054. end
  1055. end
  1056. end
  1057. end)
  1058.  
  1059. -- Sell All Infinites
  1060. spawn(function()
  1061. while wait(1) do
  1062. if Pets.flags.SInfinity then
  1063. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1064. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  1065. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1066. end
  1067. end
  1068. end
  1069. end
  1070. end)
  1071.  
  1072. -- SELL PET 2
  1073. spawn(function()
  1074. while wait(1) do
  1075. if Pets.flags.S1 then
  1076. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1077. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  1078. if v.Name == "Ultranova Firecaster" then
  1079. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1080. end
  1081. end
  1082. end
  1083. end
  1084. end
  1085. end)
  1086.  
  1087. spawn(function()
  1088. while wait(1) do
  1089. if Pets.flags.S2 then
  1090. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1091. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  1092. if v.Name == "Twilight Magical Kitty" then
  1093. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1094. end
  1095. end
  1096. end
  1097. end
  1098. end
  1099. end)
  1100.  
  1101. spawn(function()
  1102. while wait(1) do
  1103. if Pets.flags.S3 then
  1104. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1105. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  1106. if v.Name == "Master Underworld Phantom" then
  1107. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1108. end
  1109. end
  1110. end
  1111. end
  1112. end
  1113. end)
  1114.  
  1115. spawn(function()
  1116. while wait(1) do
  1117. if Pets.flags.S4 then
  1118. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1119. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  1120. if v.Name == "Dual Warp Drive Dragon" then
  1121. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1122. end
  1123. end
  1124. end
  1125. end
  1126. end
  1127. end)
  1128.  
  1129. spawn(function()
  1130. while wait(1) do
  1131. if Pets.flags.S5 then
  1132. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1133. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  1134. if v.Name == "Mystical Power Manticore" then
  1135. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  1136. end
  1137. end
  1138. end
  1139. end
  1140. end
  1141. end)
  1142.  
  1143. -- Fast Shuriken
  1144. spawn(function()
  1145. while wait(.001) do
  1146. if Misc.flags.Fast then
  1147. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1148. local plr = game.Players.LocalPlayer
  1149. local Mouse = plr:GetMouse()
  1150. local velocity = 1000
  1151. for _,p in pairs(game.Workspace.shurikensFolder:GetChildren()) do
  1152. if p.Name == "Handle" then
  1153. if p:FindFirstChild("BodyVelocity") then
  1154. local bv = p:FindFirstChildOfClass("BodyVelocity")
  1155. bv.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1156. bv.Velocity = Mouse.Hit.lookVector * velocity
  1157. end
  1158. end
  1159. end
  1160. end
  1161. end
  1162. end
  1163. end)
  1164.  
  1165. -- Slow Shuriken
  1166. spawn(function()
  1167. while wait(.001) do
  1168. if Misc.flags.Slow then
  1169. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  1170. local plr = game.Players.LocalPlayer
  1171. local Mouse = plr:GetMouse()
  1172. local velocity = 35
  1173. for _,p in pairs(game.Workspace.shurikensFolder:GetChildren()) do
  1174. if p.Name == "Handle" then
  1175. if p:FindFirstChild("BodyVelocity") then
  1176. local bv = p:FindFirstChildOfClass("BodyVelocity")
  1177. bv.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1178. bv.Velocity = Mouse.Hit.lookVector * velocity
  1179. end
  1180. end
  1181. end
  1182. end
  1183. end
  1184. end
  1185. end)
  1186.  
  1187. -- Anti-AFK
  1188. local vu = game:GetService("VirtualUser")
  1189. game:GetService("Players").LocalPlayer.Idled:connect(
  1190. function()
  1191. vu:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  1192. wait(1)
  1193. vu:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  1194. end)
Add Comment
Please, Sign In to add comment