Advertisement
Anzolescheatsofc

hack

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