Advertisement
Guest User

boomer

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