Advertisement
Yfytydutyrd

Inf Jumps

Dec 23rd, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.72 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local library = loadstring(game:HttpGet("https://pastebin.com/raw/JsdM2jiP",true))()
  3. library.options.underlinecolor = "rainbow"
  4.  
  5. -- Farming Tab
  6. local Farming = library:CreateWindow("Farming")
  7. Farming:Section("- Karma Farms -")
  8. local GK = Farming:Toggle("Auto-Good Karma", {flag = "GK"})
  9. local BK = Farming:Toggle("Auto-Bad Karma", {flag = "BK"})
  10. Farming:Section("- Ultra Coins -")
  11. local Swing = Farming:Toggle("Auto-Swing", {flag = "Swing"})
  12. local Sell = Farming:Toggle("Auto-Sell", {flag = "Sell"})
  13. local BackpackFull = Farming:Toggle("Auto-Full Sell", {flag = "FullSell"})
  14. Farming:Section("- Ultra Chi -")
  15. local Chi = Farming:Toggle("Auto-Chi", {flag = "Chi"})
  16. Farming:Section("- Boss Farms -")
  17. local Boss = Farming:Toggle("Auto-Robot Boss", {flag = "Boss"})
  18. local ETBoss = Farming:Toggle("Auto-Eternal Boss", {flag = "EBoss"})
  19. local AMBoss = Farming:Toggle("Auto-Ancient Boss", {flag = "ABoss"})
  20. local SNB = Farming:Toggle("Auto-Santa Boss", {flag = "SBoss"})
  21. local AllBoss = Farming:Toggle("Auto-All Bosses", {flag = "AllBosses"})
  22. Farming:Section("- Give Pet Levels -")
  23. local EAR = Farming:Toggle("Auto-Pet Levels", {flag = "L"})
  24.  
  25. -- Auto-Buy Tab
  26. local AutoBuy = library:CreateWindow("Auto-Buy")
  27. AutoBuy:Section("- Auto-Buy Stuff -")
  28. local Rank = AutoBuy:Toggle("Auto-Rank", {flag = "Rank"})
  29. local Sword = AutoBuy:Toggle("Auto-Sword", {flag = "Sword"})
  30. local Belt = AutoBuy:Toggle("Auto-Belt", {flag = "Belt"})
  31. local Skill = AutoBuy:Toggle("Auto-Skills", {flag = "Skill"})
  32. local Shuriken = AutoBuy:Toggle("Auto-Shurikens", {flag = "Shurikens"})
  33. _G.Enabled = AutoBuy.flags.Purchase
  34. _G.Sword = AutoBuy.flags.Sword
  35. _G.Belt = AutoBuy.flags.Belt
  36. _G.Rank = AutoBuy.flags.Rank
  37. _G.Skill = AutoBuy.flags.Skill
  38.  
  39. local Pets = library:CreateWindow("Pet Stuff")
  40. -- Open Pets
  41. Pets:Section("- Open Pets -")
  42. local Settings = {}
  43. local Crystals = {}
  44. for i,v in next, game.workspace.mapCrystalsFolder:GetChildren() do
  45. if v then
  46. table.insert(Crystals,v.Name)
  47. end
  48. end
  49. Pets:Dropdown('Crystals', {location = Settings, flag = "Crystal", list = Crystals})
  50. Pets:Toggle("Open Eggs", {location = Settings, flag = "TEgg"})
  51.  
  52. -- Pet Options
  53. Pets:Section("- Pet Options -")
  54. local Evolve = Pets:Toggle("Auto-Evolve", {flag = "Evolve"})
  55. local Eternalise = Pets:Toggle("Auto-Eternalise", {flag = "Eternalise"})
  56. local Immortalize = Pets:Toggle("Auto-Immortalize", {flag = "Immortalize"})
  57. local Legend = Pets:Toggle("Auto-Legend", {flag = "Legend"})
  58. local Elemental = Pets:Toggle("Auto-Elementalize", {flag = "Elemental"})
  59.  
  60. -- Sell Pets
  61. Pets:Section("- Sell Pets -")
  62. local Basic = Pets:Toggle("Sell All Basic", {flag = "SBasic"})
  63. local Advanced = Pets:Toggle("Sell All Advanced", {flag = "SAdvanced"})
  64. local Rare = Pets:Toggle("Sell All Rare", {flag = "SRare"})
  65. local Epic = Pets:Toggle("Sell All Epic", {flag = "SEpic"})
  66. local Unique = Pets:Toggle("Sell All Unique", {flag = "SUnique"})
  67. local Omega = Pets:Toggle("Sell All Omega", {flag = "SOmega"})
  68. local Elite = Pets:Toggle("Sell All Elite", {flag = "SElite"})
  69. local Infinity = Pets:Toggle("Sell All Infinity", {flag = "SInfinity"})
  70.  
  71. -- Sell Seperate Pets Tab
  72. local Pets2 = library:CreateWindow("More Pet Stuff")
  73. Pets2:Section("- Sell Separate Pets -")
  74. local Pet1 = Pets2:Toggle("Sell All Winter Kitty", {flag = "S1"})
  75. local Pet2 = Pets2:Toggle("Sell All Polar Bear", {flag = "S2"})
  76. local Pet3 = Pets2:Toggle("Sell All Sensei Reindeer", {flag = "S3"})
  77. local Pet4 = Pets2:Toggle("Sell All Dark Penguin", {flag = "S4"})
  78. local Pet5 = Pets2:Toggle("Sell All Sleigh Rider", {flag = "S5"})
  79. -- Misc
  80. local Misc = library:CreateWindow("Misc")
  81. Misc:Section("- Other OP Scripts -")
  82. local Shuriken = Misc:Toggle("Fast Shuriken", {flag = "Fast"})
  83. local Shuriken2 = Misc:Toggle("Slow Shuriken", {flag = "Slow"})
  84. local Invis = Misc:Toggle("Invisibility", {flag = "Invis"})
  85.  
  86. -- Collect All Chest
  87. local ChestCollect = Misc:Button("Collect All Chest", function()
  88. game:GetService("Workspace").mythicalChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  89. wait(3.5)
  90. game:GetService("Workspace").goldenChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  91. wait(3.5)
  92. game:GetService("Workspace").enchantedChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  93. wait(3.5)
  94. game:GetService("Workspace").magmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  95. wait(3.5)
  96. game:GetService("Workspace").legendsChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  97. wait(3.5)
  98. game:GetService("Workspace").eternalChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  99. wait(3.5)
  100. game:GetService("Workspace").saharaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  101. wait(3.5)
  102. game:GetService("Workspace").thunderChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  103. wait(3.5)
  104. game:GetService("Workspace").ancientChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  105. wait(3.5)
  106. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  107. wait(3.5)
  108. game:GetService("Workspace").groupRewardsCircle["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  109. wait(3.5)
  110. game:GetService("Workspace")["Daily Chest"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  111. wait(3.5)
  112. game:GetService("Workspace")["wonderChest"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  113. wait(3.5)
  114. game:GetService("Workspace").wonderChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  115. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  116. game:GetService("Workspace").ancientChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  117. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  118. game:GetService("Workspace").thunderChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  119. game:GetService("Workspace").saharaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  120. game:GetService("Workspace").eternalChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  121. game:GetService("Workspace").legendsChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  122. game:GetService("Workspace").magmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  123. game:GetService("Workspace").enchantedChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  124. game:GetService("Workspace").goldenChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  125. game:GetService("Workspace").mythicalChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  126. game:GetService("Workspace").groupRewardsCircle["circleInner"].CFrame = game.Workspace.Part.CFrame
  127. game:GetService("Workspace")["Daily Chest"].circleInner.CFrame = game.Workspace.Part.CFrame
  128. end)
  129.  
  130. -- Collect Light Karma Chest
  131. local LightKarma = Misc:Button("Collect Light Chest", function()
  132. game:GetService("Workspace").lightKarmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  133. wait(5)
  134. game:GetService("Workspace").lightKarmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  135. end)
  136.  
  137. -- Collect Dark Karma Chest
  138. local ChestCollect = Misc:Button("Collect Evil Chest", function()
  139. game:GetService("Workspace").evilKarmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  140. wait(5)
  141. game:GetService("Workspace").evilKarmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  142. end)
  143. end)
  144.  
  145. -- Hide Name
  146. local HideName = Misc:Button("Hide Name", function()
  147. local plrname = game.Players.LocalPlayer.Name
  148. workspace[plrname].Head.nameGui:Destroy()
  149. end)
  150.  
  151. -- ESP
  152. local ESP = Misc:Button("ESP", function()
  153. function isnil(thing)
  154. return (thing == nil)
  155. end
  156. local function round(n)
  157. return math.floor(tonumber(n) + 0.5)
  158. end
  159. function UpdatePlayerChams()
  160. for i,v in pairs(game:GetService'Players':GetChildren()) do
  161. pcall(function()
  162. if not isnil(v.Character) then
  163. for _,k in pairs(v.Character:GetChildren()) do
  164. if k:IsA'BasePart' and not k:FindFirstChild'Cham' then
  165. local cham = Instance.new('BoxHandleAdornment',k)
  166. cham.ZIndex= 10
  167. cham.Adornee=k
  168. cham.AlwaysOnTop=true
  169. cham.Size=k.Size
  170. cham.Transparency=.8
  171. cham.Color3=Color3.new(0,0,1)
  172. cham.Name = 'Cham'
  173. end
  174. end
  175. if not isnil(v.Character.Head) and not v.Character.Head:FindFirstChild'NameEsp' then
  176. local bill = Instance.new('BillboardGui',v.Character.Head)
  177. bill.Name = 'NameEsp'
  178. bill.Size=UDim2.new(1,200,1,30)
  179. bill.Adornee=v.Character.Head
  180. bill.AlwaysOnTop=true
  181. local name = Instance.new('TextLabel',bill)
  182. name.TextWrapped=true
  183. name.Text = (v.Name ..' '.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..'m')
  184. name.Size = UDim2.new(1,0,1,0)
  185. name.TextYAlignment='Top'
  186. name.TextColor3=Color3.new(1,1,1)
  187. name.BackgroundTransparency=1
  188. else
  189. v.Character.Head.NameEsp.TextLabel.Text = (v.Name ..' '.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..'m')
  190. end
  191. end
  192. end)
  193. end
  194. end
  195. while wait() do
  196. UpdatePlayerChams()
  197. end
  198. end)
  199.  
  200. -- Toggle Popups (Chi/Coin thigns)
  201. Misc:Bind("Toggle Popups",
  202. {flag = "pop", owo = true},
  203. function()
  204. game:GetService("Players").LocalPlayer.PlayerGui.statEffectsGui.Enabled = not game:GetService("Players").LocalPlayer.PlayerGui.statEffectsGui.Enabled
  205. game:GetService("Players").LocalPlayer.PlayerGui.hoopGui.Enabled = not game:GetService("Players").LocalPlayer.PlayerGui.hoopGui.Enabled
  206. end)
  207.  
  208. -- Toggable GUI Key
  209. Misc:Bind("Toggle GUI Key",
  210. {flag = "Toggle", owo = true},
  211. function()
  212. library.toggled = not library.toggled;
  213. for i, data in next, library.queue do
  214. local pos = (library.toggled and data.p or UDim2.new(-1, 0, -0.5,0))
  215. data.w:TweenPosition(pos, (library.toggled and 'Out' or 'In'), 'Quad', 0.15, true)
  216. wait();
  217. end
  218. end)
  219.  
  220. -- Destroy GUI
  221. local Kill = Misc:Button("Destroy GUI", function()
  222. game:GetService("CoreGui").ScreenGui:Destroy()
  223. end)
  224.  
  225. local Teleports = library:CreateWindow("Teleports")
  226.  
  227. -- World/Island Teleports
  228. Teleports:Section("- Islands -")
  229. local Islands = {}
  230. for i,v in next, game.workspace.islandUnlockParts:GetChildren() do
  231. if v then
  232. table.insert(Islands, v.Name)
  233. end
  234. end
  235. Teleports:Dropdown('Teleports', {list = Islands}, function(a)
  236. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.islandUnlockParts[a].islandSignPart.CFrame
  237. end)
  238.  
  239. -- Utilitys
  240. Teleports:Section("- Utilitys -")
  241. local Shop = Teleports:Button("Shop", function()
  242. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").shopAreaCircles["shopAreaCircle11"].circleInner.CFrame
  243. end)
  244. local Skills = Teleports:Button("Skills Shop", function()
  245. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").skillAreaCircles["skillsAreaCircle11"].circleInner.CFrame
  246. end)
  247. local Skills1 = Teleports:Button("Light Skills Shop", function()
  248. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.49514, 3.24800324, 0.0838552266)
  249. end)
  250. local Skills2 = Teleports:Button("Dark Skills Shop", function()
  251. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.549767, 3.24800324, 58.087841)
  252. end)
  253. local KOTH = Teleports:Button("KOTH", function()
  254. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").kingOfTheHillPart.CFrame
  255. end)
  256.  
  257. -- Training Area Teleports
  258. Teleports:Section("- Training Areas -")
  259. local a1 = Teleports:Button("Mystical Waters (Good)", function()
  260. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(347.74881, 8824.53809, 114.271019)
  261. end)
  262. local a2 = Teleports:Button("Sword of Legends (Good)", function()
  263. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1834.15967, 38.704483, -141.375641)
  264. end)
  265. local a5 = Teleports:Button("Elemental Tornado (Good)", function()
  266. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(299.758484, 30383.0957, -90.1542206)
  267. end)
  268. local a3 = Teleports:Button("Lava Pit (Bad)", function()
  269. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.631485, 12952.5381, 271.14624)
  270. end)
  271. local a4 = Teleports:Button("Tornado (Bad)", function()
  272. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(325.641174, 16872.0938, -9.9906435)
  273. end)
  274. local a6 = Teleports:Button("Swords Of Ancients (Bad)", function()
  275. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(648.365662, 38.704483, 2409.72266)
  276. end)
  277.  
  278. if _G.PlaceLoopTP == true then
  279. local Teleports2 = library:CreateWindow("More Teleports")
  280. Teleports2:Section("- Training Areas (Looped) -")
  281. local avh = Teleports2:Button("Mystical Waters (Good)", function()
  282. while true do
  283. wait(.001)
  284. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  285. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(347.74881, 8824.53809, 114.271019)
  286. end
  287. end
  288. end)
  289. local sdgy6 = Teleports2:Button("Sword of Legends (Good)", function()
  290. while true do
  291. wait(.001)
  292. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  293. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1834.15967, 38.704483, -141.375641)
  294. end
  295. end
  296. end)
  297. local asdy = Teleports2:Button("Elemental Tornado (Good)", function()
  298. while true do
  299. wait(.001)
  300. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  301. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(299.758484, 30383.0957, -90.1542206)
  302. end
  303. end
  304. end)
  305. local yassf = Teleports2:Button("Lava Pit (Bad)", function()
  306. while true do
  307. wait(.001)
  308. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  309. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.631485, 12952.5381, 271.14624)
  310. end
  311. end
  312. end)
  313. local sdfj = Teleports2:Button("Tornado (Bad)", function()
  314. while true do
  315. wait(.001)
  316. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  317. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(325.641174, 16872.0938, -9.9906435)
  318. end
  319. end
  320. end)
  321. local jhas = Teleports2:Button("Swords Of Ancients (Bad)", function()
  322. while true do
  323. wait(.001)
  324. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  325. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(648.365662, 38.704483, 2409.72266)
  326. end
  327. end
  328. end)
  329. end
  330.  
  331.  
  332.  
  333. -- Open Crystals
  334. spawn(function()
  335. while wait(.01) do
  336. if Settings.TEgg then
  337. local oh1 = "openCrystal"
  338. local oh2 = Settings.Crystal
  339. game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(oh1, oh2)
  340. end
  341. end
  342. end)
  343.  
  344. -- Auto-Swing
  345. spawn(function()
  346. while wait() do
  347. if Farming.flags.Swing then
  348. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  349. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  350. game.Players.LocalPlayer.ninjaEvent:FireServer("swingKatana")
  351. else
  352. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  353. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  354. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  355. wait()
  356. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  357. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  358. end
  359. end
  360. end
  361. end
  362. end
  363. end
  364. end
  365. end)
  366.  
  367. -- Auto-Sell
  368. spawn(function()
  369. while wait(0.01) do
  370. if Farming.flags.Sell then
  371. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  372. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  373. wait(.1)
  374. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Workspace.Part.CFrame
  375. end
  376. end
  377. end
  378. end)
  379.  
  380. -- Auto-Full Sell
  381. spawn(function()
  382. while wait(0.01) do
  383. if Farming.flags.FullSell then
  384. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  385. if player.PlayerGui.gameGui.maxNinjitsuMenu.Visible == true then
  386. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  387. wait(.05)
  388. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Workspace.Part.CFrame
  389. end
  390. end
  391. end
  392. end
  393. end)
  394.  
  395. -- Invisibility
  396. spawn(function()
  397. while wait(0.001) do
  398. if Misc.flags.Invis then
  399. local A_1 = "goInvisible"
  400. local Event = game.Players.LocalPlayer.ninjaEvent
  401. Event:FireServer(A_1)
  402. end
  403. end
  404. end)
  405.  
  406. -- Auto-Pet Levels
  407. spawn(function()
  408. while wait(0.00011) do
  409. if Farming.flags.L then
  410. local plr = game.Players.LocalPlayer
  411. for _,v in pairs(workspace.Hoops:GetDescendants()) do
  412. if v.ClassName == "MeshPart" then
  413. v.touchPart.CFrame = plr.Character.HumanoidRootPart.CFrame
  414. end
  415. end
  416. end
  417. end
  418. end)
  419.  
  420. -- Good Karma Farm
  421. spawn(function()
  422. while wait(0.4) do
  423. if Farming.flags.GK then
  424. loadstring(game:HttpGet(('https://pastebin.com/raw/AaqHqPyw'),true))()
  425. end
  426. end
  427. end)
  428.  
  429. -- Bad Karma Farm
  430. spawn(function()
  431. while wait(0.4) do
  432. if Farming.flags.BK then
  433. loadstring(game:HttpGet(('https://pastebin.com/raw/wEEB3nQt'),true))()
  434. end
  435. end
  436. end)
  437.  
  438. -- Auto-Normal Boss
  439. spawn(function()
  440. while wait(.001) do
  441. if Farming.flags.Boss then
  442. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  443. if game:GetService("Workspace").bossFolder:WaitForChild("RobotBoss"):WaitForChild("HumanoidRootPart") then
  444. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.RobotBoss.HumanoidRootPart.CFrame
  445. if player.Character:FindFirstChildOfClass("Tool") then
  446. player.Character:FindFirstChildOfClass("Tool"):Activate()
  447. else
  448. for i,v in pairs(player.Backpack:GetChildren()) do
  449. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  450. v.attackTime.Value = 0.2
  451. player.Character.Humanoid:EquipTool(v)
  452. if attackfar then
  453. for i,v in pairs(player.Backpack:GetChildren()) do
  454. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  455. player.Character.Humanoid:EquipTool(v)
  456. end
  457. end
  458. end
  459. end
  460. end
  461. end
  462. end
  463. end
  464. end
  465. end
  466. end)
  467.  
  468. -- Auto-Eternal Boss
  469. spawn(function()
  470. while wait(.001) do
  471. if Farming.flags.EBoss then
  472. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  473. if game:GetService("Workspace").bossFolder:WaitForChild("EternalBoss"):WaitForChild("HumanoidRootPart") then
  474. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.EternalBoss.HumanoidRootPart.CFrame
  475. if player.Character:FindFirstChildOfClass("Tool") then
  476. player.Character:FindFirstChildOfClass("Tool"):Activate()
  477. else
  478. for i,v in pairs(player.Backpack:GetChildren()) do
  479. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  480. v.attackTime.Value = 0.2
  481. player.Character.Humanoid:EquipTool(v)
  482. if attackfar then
  483. for i,v in pairs(player.Backpack:GetChildren()) do
  484. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  485. player.Character.Humanoid:EquipTool(v)
  486. end
  487. end
  488. end
  489. end
  490. end
  491. end
  492. end
  493. end
  494. end
  495. end
  496. end)
  497.  
  498. -- Auto-Anchient Boss
  499. spawn(function()
  500. while wait(.001) do
  501. if Farming.flags.ABoss then
  502. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  503. if game:GetService("Workspace").bossFolder:WaitForChild("AncientMagmaBoss"):WaitForChild("HumanoidRootPart") then
  504. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.AncientMagmaBoss.HumanoidRootPart.CFrame
  505. if player.Character:FindFirstChildOfClass("Tool") then
  506. player.Character:FindFirstChildOfClass("Tool"):Activate()
  507. else
  508. for i,v in pairs(player.Backpack:GetChildren()) do
  509. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  510. v.attackTime.Value = 0.2
  511. player.Character.Humanoid:EquipTool(v)
  512. if attackfar then
  513. for i,v in pairs(player.Backpack:GetChildren()) do
  514. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  515. player.Character.Humanoid:EquipTool(v)
  516. end
  517. end
  518. end
  519. end
  520. end
  521. end
  522. end
  523. end
  524. end
  525. end
  526. end)
  527.  
  528. spawn(function()
  529. while wait(.001) do
  530. if Farming.flags.SBoss then
  531. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  532. if game:GetService("Workspace").bossFolder:WaitForChild("Samurai Santa"):WaitForChild("HumanoidRootPart") then
  533. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder["Samurai Santa"].HumanoidRootPart.CFrame
  534. if player.Character:FindFirstChildOfClass("Tool") then
  535. player.Character:FindFirstChildOfClass("Tool"):Activate()
  536. else
  537. for i,v in pairs(player.Backpack:GetChildren()) do
  538. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  539. v.attackTime.Value = 0.2
  540. player.Character.Humanoid:EquipTool(v)
  541. if attackfar then
  542. for i,v in pairs(player.Backpack:GetChildren()) do
  543. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  544. player.Character.Humanoid:EquipTool(v)
  545. end
  546. end
  547. end
  548. end
  549. end
  550. end
  551. end
  552. end
  553. end
  554. end
  555. end)
  556.  
  557. -- Auto-All Bosses
  558. spawn(function()
  559. while wait(.001) do
  560. if Farming.flags.AllBosses then
  561. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  562. if game.Workspace.bossFolder:FindFirstChild("Samurai Santa") then
  563. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder["Samurai Santa"].HumanoidRootPart.CFrame
  564. else
  565. if not game.Workspace.bossFolder:FindFirstChild("Samurai Santa") then
  566. if game.Workspace.bossFolder:FindFirstChild("AncientMagmaBoss") then
  567. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.AncientMagmaBoss.HumanoidRootPart.CFrame
  568. else
  569. if not game.Workspace.bossFolder:FindFirstChild("AncientMagmaBoss") then
  570. if game.Workspace.bossFolder:FindFirstChild("EternalBoss") then
  571. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.EternalBoss.HumanoidRootPart.CFrame
  572. else
  573. if not game.Workspace.bossFolder:FindFirstChild("EternalBoss") then
  574. if game.Workspace.bossFolder:FindFirstChild("RobotBoss") then
  575. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.RobotBoss.HumanoidRootPart.CFrame
  576. end
  577. end
  578. end
  579. end
  580. end
  581. end
  582. end
  583. if player.Character:FindFirstChildOfClass("Tool") then
  584. player.Character:FindFirstChildOfClass("Tool"):Activate()
  585. else
  586. for i,v in pairs(player.Backpack:GetChildren()) do
  587. if v.ClassName == "Tool" and v:FindFirstChild("attackKatanaScript") then
  588. v.attackTime.Value = 0.2
  589. player.Character.Humanoid:EquipTool(v)
  590. if attackfar then
  591. for i,v in pairs(player.Backpack:GetChildren()) do
  592. if v.ClassName == "Tool" and v:FindFirstChild("attackShurikenScript") then
  593. player.Character.Humanoid:EquipTool(v)
  594. end
  595. end
  596. end
  597. end
  598. end
  599. end
  600. end
  601. end
  602. end
  603. end)
  604.  
  605. -- Auto-Buy Swords
  606. spawn(function()
  607. while wait(0.5) do
  608. if AutoBuy.flags.Sword then
  609. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  610. local oh1 = "buyAllSwords"
  611. 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"}
  612. for i = 1,#oh2 do
  613. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  614. end
  615. end
  616. end
  617. end
  618. end)
  619.  
  620. -- Auto-Buy Belts
  621. spawn(function()
  622. while wait(0.5) do
  623. if AutoBuy.flags.Belt then
  624. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  625. local oh1 = "buyAllBelts"
  626. 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"}
  627. for i = 1,#oh2 do
  628. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  629. end
  630. end
  631. end
  632. end
  633. end)
  634.  
  635. -- Auto-Buy Skills
  636. spawn(function()
  637. while wait(0.5) do
  638. if AutoBuy.flags.Skill then
  639. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  640. local oh1 = "buyAllSkills"
  641. 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"}
  642. for i = 1,#oh2 do
  643. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  644. end
  645. end
  646. end
  647. end
  648. end)
  649.  
  650. -- Auto-Buy Ranks
  651. spawn(function()
  652. while wait(0.5) do
  653. if AutoBuy.flags.Rank then
  654. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  655. local oh1 = "buyRank"
  656. local oh2 = game:GetService("ReplicatedStorage").Ranks.Ground:GetChildren()
  657. for i = 1,#oh2 do
  658. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i].Name)
  659. end
  660. end
  661. end
  662. end
  663. end)
  664.  
  665. -- Auto-Buy Shurikens
  666. spawn(function()
  667. while wait(0.5) do
  668. if AutoBuy.flags.Shurikens then
  669. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  670. local oh1 = "buyAllShurikens"
  671. 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"}
  672. for i = 1,#oh2 do
  673. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  674. end
  675. end
  676. end
  677. end
  678. end)
  679.  
  680. -- Auto-Chi
  681. spawn(function()
  682. while wait(0.033) do
  683. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  684. if Farming.flags.Chi then
  685. for i,v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  686. if v.Name == "Blue Chi Crate" then
  687. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  688. wait(.16)
  689. end
  690. end
  691. end
  692. end
  693. end
  694. end)
  695.  
  696. -- Auto Evolve Pet
  697. spawn(function()
  698. while wait(3) do
  699. if Pets.flags.Evolve then
  700. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  701. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  702. for i,x in pairs(v:GetChildren()) do
  703. local oh1 = "evolvePet"
  704. local oh2 = x.Name
  705. game:GetService("ReplicatedStorage").rEvents.petEvolveEvent:FireServer(oh1, oh2)
  706. end
  707. end
  708. end
  709. end
  710. end
  711. end)
  712.  
  713. -- Auto-Eternalize Pet
  714. spawn(function()
  715. while wait(3) do
  716. if Pets.flags.Eternalise then
  717. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  718. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  719. for i,x in pairs(v:GetChildren()) do
  720. local oh1 = "eternalizePet"
  721. local oh2 = x.Name
  722. game:GetService("ReplicatedStorage").rEvents.petEternalizeEvent:FireServer(oh1, oh2)
  723. end
  724. end
  725. end
  726. end
  727. end
  728. end)
  729.  
  730. -- Auto-Immortalize Pet
  731. spawn(function()
  732. while wait(3) do
  733. if Pets.flags.Immortalize then
  734. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  735. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  736. for i,x in pairs(v:GetChildren()) do
  737. local oh1 = "immortalizePet"
  738. local oh2 = x.Name
  739. game:GetService("ReplicatedStorage").rEvents.petImmortalizeEvent:FireServer(oh1, oh2)
  740. end
  741. end
  742. end
  743. end
  744. end
  745. end)
  746.  
  747. -- Auto-Legend Pet
  748. spawn(function()
  749. while wait(3) do
  750. if Pets.flags.Legend then
  751. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  752. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  753. for i,x in pairs(v:GetChildren()) do
  754. local oh1 = "legendizePet"
  755. local oh2 = x.Name
  756. game:GetService("ReplicatedStorage").rEvents.petLegendEvent:FireServer(oh1, oh2)
  757. end
  758. end
  759. end
  760. end
  761. end
  762. end)
  763.  
  764. spawn(function()
  765. while wait(3) do
  766. if Pets.flags.Elemental then
  767. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  768. for i,v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  769. for i,x in pairs(v:GetChildren()) do
  770. local oh1 = "elementalizePet"
  771. local oh2 = x.Name
  772. game:GetService("ReplicatedStorage").rEvents.petLegendEvent:FireServer(oh1, oh2)
  773. end
  774. end
  775. end
  776. end
  777. end
  778. end)
  779.  
  780. -- Sell All Basics
  781. spawn(function()
  782. while wait(1) do
  783. if Pets.flags.SBasic then
  784. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  785. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Basic:GetChildren()) do
  786. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  787. end
  788. end
  789. end
  790. end
  791. end)
  792.  
  793. -- Sell All Advanced
  794. spawn(function()
  795. while wait(1) do
  796. if Pets.flags.SAdvanced then
  797. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  798. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Advanced:GetChildren()) do
  799. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  800. end
  801. end
  802. end
  803. end
  804. end)
  805.  
  806. -- Sell All Rares
  807. spawn(function()
  808. while wait(1) do
  809. if Pets.flags.SRare then
  810. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  811. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Rare:GetChildren()) do
  812. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  813. end
  814. end
  815. end
  816. end
  817. end)
  818.  
  819.  
  820. -- Sell All Epics
  821. spawn(function()
  822. while wait(1) do
  823. if Pets.flags.SEpic then
  824. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  825. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Epic:GetChildren()) do
  826. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  827. end
  828. end
  829. end
  830. end
  831. end)
  832.  
  833. -- Sell All Uniques
  834. spawn(function()
  835. while wait(1) do
  836. if Pets.flags.SUnique then
  837. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  838. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Unique:GetChildren()) do
  839. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  840. end
  841. end
  842. end
  843. end
  844. end)
  845.  
  846. -- Sell All Omegas
  847. spawn(function()
  848. while wait(1) do
  849. if Pets.flags.SOmega then
  850. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  851. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Omega:GetChildren()) do
  852. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  853. end
  854. end
  855. end
  856. end
  857. end)
  858.  
  859. -- Sell All Elites
  860. spawn(function()
  861. while wait(1) do
  862. if Pets.flags.SElite then
  863. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  864. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Elite:GetChildren()) do
  865. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  866. end
  867. end
  868. end
  869. end
  870. end)
  871.  
  872.  
  873. -- Sell All Infinites
  874. spawn(function()
  875. while wait(1) do
  876. if Pets.flags.SInfinity then
  877. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  878. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  879. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  880. end
  881. end
  882. end
  883. end
  884. end)
  885.  
  886. -- Second Pet Stuff Tab
  887. spawn(function()
  888. while wait(1) do
  889. if Pets2.flags.S1 then
  890. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  891. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  892. if v.Name == "Winter Wonder Kitty" then
  893. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  894. end
  895. end
  896. end
  897. end
  898. end
  899. end)
  900.  
  901. spawn(function()
  902. while wait(1) do
  903. if Pets2.flags.S2 then
  904. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  905. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  906. if v.Name == "Winter Legends Polar Bear" then
  907. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  908. end
  909. end
  910. end
  911. end
  912. end
  913. end)
  914.  
  915. spawn(function()
  916. while wait(1) do
  917. if Pets2.flags.S3 then
  918. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  919. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  920. if v.Name == "Christmas Sensei Reindeer" then
  921. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  922. end
  923. end
  924. end
  925. end
  926. end
  927. end)
  928.  
  929. spawn(function()
  930. while wait(1) do
  931. if Pets2.flags.S4 then
  932. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  933. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  934. if v.Name == "Dark Blizzard Master Penguin" then
  935. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  936. end
  937. end
  938. end
  939. end
  940. end
  941. end)
  942.  
  943. spawn(function()
  944. while wait(1) do
  945. if Pets2.flags.S5 then
  946. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  947. for i,v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  948. if v.Name == "Cybernetic Sleigh Rider" then
  949. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  950. end
  951. end
  952. end
  953. end
  954. end
  955. end)
  956.  
  957. -- Fast Shuriken
  958. spawn(function()
  959. while wait(.001) do
  960. if Misc.flags.Fast then
  961. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  962. local plr = game.Players.LocalPlayer
  963. local Mouse = plr:GetMouse()
  964. local velocity = 1000
  965. for _,p in pairs(game.Workspace.shurikensFolder:GetChildren()) do
  966. if p.Name == "Handle" then
  967. if p:FindFirstChild("BodyVelocity") then
  968. local bv = p:FindFirstChildOfClass("BodyVelocity")
  969. bv.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  970. bv.Velocity = Mouse.Hit.lookVector * velocity
  971. end
  972. end
  973. end
  974. end
  975. end
  976. end
  977. end)
  978.  
  979. -- Slow Shuriken
  980. spawn(function()
  981. while wait(.001) do
  982. if Misc.flags.Slow then
  983. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  984. local plr = game.Players.LocalPlayer
  985. local Mouse = plr:GetMouse()
  986. local velocity = 35
  987. for _,p in pairs(game.Workspace.shurikensFolder:GetChildren()) do
  988. if p.Name == "Handle" then
  989. if p:FindFirstChild("BodyVelocity") then
  990. local bv = p:FindFirstChildOfClass("BodyVelocity")
  991. bv.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  992. bv.Velocity = Mouse.Hit.lookVector * velocity
  993. end
  994. end
  995. end
  996. end
  997. end
  998. end
  999. end)
  1000.  
  1001. -- Anti-AFK
  1002. local vu = game:GetService("VirtualUser")
  1003. game:GetService("Players").LocalPlayer.Idled:connect(
  1004. function()
  1005. vu:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  1006. wait(1)
  1007. vu:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  1008. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement