Advertisement
1zxyuuki

jjk infinite

Dec 29th, 2024 (edited)
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.05 KB | None | 0 0
  1. local lp = game.Players.LocalPlayer
  2. local char = lp.Character
  3. local hrp = char:FindFirstChild("HumanoidRootPart")
  4. local GuiService = game:GetService('GuiService')
  5. local VirtualInputManager = game:GetService('VirtualInputManager')
  6. local RS = game:GetService("ReplicatedStorage")
  7. local Players = game:GetService("Players")
  8.  
  9. GuiService.ErrorMessageChanged:Connect(function()
  10. game:GetService("TeleportService"):Teleport(game.PlaceId)
  11. end)
  12.  
  13. local bb = game:service'VirtualUser'
  14. game:service'Players'.LocalPlayer.Idled:connect(function()
  15. bb:CaptureController()
  16. bb:ClickButton2(Vector2.new())
  17. end)
  18.  
  19. getgenv().config = {
  20. AutoMission = nil,
  21. Instant = nil,
  22. Instant2 = nil,
  23. KillAura = nil,
  24. AutoChest = nil,
  25. AutoLoot = nil,
  26. ReedemCodes = nil,
  27. Spin1 = nil,
  28. Spin2 = nil,
  29. AutoPromote = nil,
  30. GodMode = nil,
  31. NoCd = nil,
  32. BlackFlash = nil,
  33. WaitTime = nil,
  34. NoMenu = nil,
  35. }
  36.  
  37. if not isfolder("YukiWare/Config") then
  38. makefolder("YukiWare/Config")
  39. end
  40.  
  41. local function save_config()
  42. local config_name = "YukiWare/Config/JJIConfig.json"
  43. local json_config = game:GetService("HttpService"):JSONEncode(getgenv().config)
  44. writefile(config_name, json_config)
  45. end
  46.  
  47. local function load_config()
  48. local config_name = "YukiWare/Config/JJIConfig.json"
  49. if isfile(config_name) then
  50. local json_config = readfile(config_name)
  51. getgenv().config = game:GetService("HttpService"):JSONDecode(json_config)
  52. end
  53. end
  54.  
  55. load_config()
  56.  
  57.  
  58. local function Get_Loot()
  59. local hrp = game:GetService('Players').LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  60. if hrp then
  61. local chest = nil
  62. for i,v in ipairs(workspace.Objects.Drops:GetChildren()) do
  63. if v:IsA("Model") then
  64. local Root = v:FindFirstChild("Root")
  65. if Root then
  66. local mag = (Root.Position - hrp.Position).magnitude
  67. if mag < 30 then
  68. local proximity = v:FindFirstChild("Collect")
  69. if proximity then
  70. chest = proximity
  71. end
  72. end
  73. end
  74. end
  75. end
  76. if chest then
  77. fireproximityprompt(chest)
  78. end
  79. end
  80. end
  81.  
  82. local function NoMenu()
  83. local Play = game:GetService("Players").LocalPlayer.PlayerGui.Menu.MenuButtons:FindFirstChild("Play")
  84. -- wait(.125)
  85. if Play.Visible then
  86. task.wait(.001)
  87. GuiService.SelectedCoreObject = Play
  88. VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.Return, false, game)
  89. VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.Return, false, game)
  90. end
  91. end
  92.  
  93. local function Auto_Loot()
  94. local flip_button = game:GetService("Players").LocalPlayer.PlayerGui.Loot.Frame:FindFirstChild("Flip")
  95. Get_Loot()
  96. wait(.125)
  97. if flip_button.Visible then
  98. task.wait(.001)
  99. GuiService.SelectedCoreObject = flip_button
  100. VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.Return, false, game)
  101. VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.Return, false, game)
  102. end
  103. end
  104.  
  105. local function tweenModel(model, targetCFrame)
  106. if not model.PrimaryPart then
  107. return
  108. end
  109.  
  110. local duration = (model.PrimaryPart.Position - targetCFrame.Position).Magnitude / speed
  111. local info = TweenInfo.new(duration, Enum.EasingStyle.Linear)
  112.  
  113. local cframeValue = Instance.new("CFrameValue")
  114. cframeValue.Value = model:GetPrimaryPartCFrame()
  115.  
  116. cframeValue:GetPropertyChangedSignal("Value"):Connect(function()
  117. model:SetPrimaryPartCFrame(cframeValue.Value)
  118. end)
  119.  
  120. local tween = TweenService:Create(cframeValue, info, {
  121. Value = targetCFrame,
  122. })
  123.  
  124. tween:Play()
  125. tween.Completed:Connect(function()
  126. cframeValue:Destroy()
  127. end)
  128.  
  129. return tween
  130. end
  131.  
  132. local function Check_Level()
  133. local Level = tonumber(game:GetService("Players").LocalPlayer.PlayerGui.Main.Frame.BottomLeft.Menu.TextLabel.Text)
  134. if Level == 1 or Level < 60 then
  135. return {
  136. Location = "Shijo Town Set",
  137. Grade = "Non Sorcerer",
  138. Essence = "2"
  139. }
  140. elseif Level > 59 and Level < 120 then
  141. return {
  142. Location = "Umi Village Set",
  143. Grade = "Grade 3",
  144. Essence = "2"
  145. }
  146. elseif Level > 119 and Level < 180 then
  147. return {
  148. Location = "Numa Temple Set",
  149. Grade = "Grade 3",
  150. Essence = "4"
  151. }
  152. elseif Level > 179 and Level < 240 then
  153. return {
  154. Location = "Kura Camp Set",
  155. Grade = "Grade 3",
  156. Essence = "8"
  157. }
  158. elseif Level > 240 then
  159. return {
  160. Location = "Yuki Fortress Set",
  161. Grade = "Grade 3",
  162. Essence = "12"
  163. }
  164. end
  165. return
  166. end
  167.  
  168. local function Notify(title,text,dura)
  169. game:GetService("StarterGui"):SetCore("SendNotification",{
  170. Title = title,
  171. Text = text,
  172. Duration = dura
  173. })
  174. end
  175.  
  176. local function BlackFlash()
  177. game:GetService("ReplicatedStorage").Remotes.Server.Combat.ApplyBlackFlashToNextHitbox:FireServer()
  178. end
  179.  
  180. local function Find_Mob()
  181. local Level = 430
  182. local mob = nil
  183. for _, v in ipairs(workspace.Objects.Mobs:GetChildren()) do
  184. if v:IsA("Model") then
  185. local target = v:FindFirstChild("HumanoidRootPart")
  186. if target then
  187. local healthObj = target:FindFirstChild("Health")
  188. if healthObj then
  189. local mob_level = healthObj:FindFirstChild("Level")
  190. if mob_level then
  191. if mob_level.Text:sub(6) == tostring(Level) then
  192. mob = target
  193. end
  194. end
  195. end
  196. end
  197. end
  198. end
  199. return mob
  200. end
  201.  
  202. local function Auto_Mission()
  203. local args = {
  204. [1] = {
  205. ["type"] = "Kill",
  206. ["set"] = "Yuki Fortress Set",
  207. ["rewards"] = {
  208. ["essence"] = 40,
  209. ["chestMeter"] = 79,
  210. ["exp"] = 8850000,
  211. ["cash"] = 51000
  212. },
  213. ["rewardsText"] = "8.85 Mi EXP | Dou a bunda pra varios homens",
  214. ["difficulty"] = 3,
  215. ["title"] = "Defeat",
  216. ["level"] = 430,
  217. ["grade"] = "Non Sorcerer",
  218. ["subtitle"] = "a Curse User"
  219. }
  220. }
  221.  
  222. game:GetService("ReplicatedStorage").Remotes.Server.Data.TakeQuest:InvokeServer(unpack(args))
  223. wait(1)
  224. if Find_Mob() then
  225. game:GetService('Players').LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Find_Mob().CFrame * CFrame.new(0,20,0)
  226. end
  227. end
  228.  
  229. local function Instant()
  230. local hrp = game:GetService('Players').LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  231. if hrp then
  232. local mob, dist = math.huge
  233. for _, v in ipairs(workspace.Objects.Mobs:GetChildren()) do
  234. if v:IsA("Model") then
  235. local target = v:FindFirstChild("HumanoidRootPart")
  236. if target then
  237. local mag = (target.Position - hrp.Position).magnitude
  238. local hum = v:FindFirstChild("Humanoid")
  239. if hum and mag < 70 and hum.Health > 0 then
  240. hum.Health = 0
  241. end
  242. end
  243. end
  244. end
  245. end
  246. end
  247.  
  248. local function Instant2()
  249. task.wait(0.1)
  250. local player = game:GetService("Players").LocalPlayer
  251. local character = player.Character
  252. if not character or not character:FindFirstChild("HumanoidRootPart") then
  253. task.wait(0.1)
  254. else
  255. for _, mob in pairs(game:GetService("Workspace").Objects.Mobs:GetChildren()) do
  256. local mobHead = mob:FindFirstChild("Head")
  257. local mobHRP = mob:FindFirstChild("HumanoidRootPart")
  258. if mobHead and mobHRP then
  259. local distance = (mobHRP.Position - character.HumanoidRootPart.Position).Magnitude
  260. if distance <= 100 then
  261. pcall(function()
  262. mobHead:Destroy()
  263. end)
  264. end
  265. end
  266. end
  267. end
  268. end
  269.  
  270.  
  271. local function Auto_Claim_Chest()
  272. local Data = Check_Level()
  273. local args = {
  274. [1] = Data.Location
  275. }
  276. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Data"):WaitForChild("ChestMeterReward"):FireServer(unpack(args))
  277. end
  278.  
  279. local function NoCd()
  280. for _,v in pairs(game.ReplicatedStorage.Skills:GetDescendants()) do
  281. if v.Name == "Cooldown" then
  282. v.Value = 0
  283. end
  284. end
  285. end
  286.  
  287. local function Promote()
  288. local args = {
  289. [1] = "Clan Head Jujutsu High",
  290. [2] = "Promote"
  291. }
  292.  
  293. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Dialogue"):WaitForChild("GetResponse"):InvokeServer(unpack(args))
  294. end
  295.  
  296. local function God_Mode()
  297. local RS = game:GetService("ReplicatedStorage")
  298. RS:WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Combat"):WaitForChild("Skill"):FireServer("Infinity: Mugen")
  299. wait(5)
  300. end
  301.  
  302. local function Kill_Aura()
  303. local hrp = game:GetService('Players').LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  304. for i,v in ipairs(workspace.Objects.Mobs:GetChildren()) do
  305. if v:IsA("Model") then
  306. local target = v:FindFirstChild("HumanoidRootPart")
  307. if target then
  308. local hum = v:FindFirstChild("Humanoid")
  309. if hum then
  310. local mag = (hrp.Position - target.Position).magnitude
  311. if mag < 70 then
  312. local args = {
  313. [1] = 4,
  314. [2] = {
  315. [1] = hum
  316. }
  317. }
  318.  
  319. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Combat"):WaitForChild("M1"):FireServer(unpack(args))
  320. end
  321. end
  322. end
  323. end
  324. end
  325. end
  326.  
  327. local function Codes()
  328. local args = {
  329. [1] = "RELEASE"
  330. }
  331.  
  332. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  333. task.wait(.1)
  334. local args = {
  335. [1] = "TOP_SECRET"
  336. }
  337.  
  338. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  339. task.wait(.1)
  340. local args = {
  341. [1] = "BACK_UP_AGAIN"
  342. }
  343.  
  344. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  345. task.wait(.1)
  346. local args = {
  347. [1] = "MISSION_SHUTDOWN"
  348. }
  349.  
  350. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  351. task.wait(.1)
  352. local args = {
  353. [1] = "RELEASE_SHUTDOWN_SRRY"
  354. }
  355.  
  356. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  357. task.wait(.1)
  358. local args = {
  359. [1] = "MERRY_CHRISTMAS"
  360. }
  361.  
  362. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  363. task.wait(.1)
  364. local args = {
  365. [1] = "50K_FOLLOWERS"
  366. }
  367.  
  368. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  369. task.wait(.1)
  370. local args = {
  371. [1] = "JJ_SHUTDOWN"
  372. }
  373.  
  374. game:GetService("ReplicatedStorage").Remotes.Server.Data.RedeemCode:InvokeServer(unpack(args))
  375. end
  376.  
  377. local function Spin_1()
  378. local List = {
  379. "Infinity",
  380. "Demon Vessel",
  381. "Star Rage",
  382. "Gambler Fever",
  383. "Soul Manipulation",
  384. "Cursed Queen"
  385. }
  386.  
  387. local Power_Slot = game:GetService("Players").LocalPlayer.ReplicatedData.innates:FindFirstChild("1")
  388. if Power_Slot then
  389. if not table.find(List, Power_Slot.Value) then
  390. local args = {
  391. [1] = 1
  392. }
  393. local response = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Data"):WaitForChild("InnateSpin"):InvokeServer(unpack(args))
  394. print(response)
  395. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["1"].Frame.TextLabel.Text = Power_Slot.Value
  396. else
  397. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["1"].Frame.TextLabel.Text = Power_Slot.Value
  398. end
  399. end
  400. end
  401.  
  402. local function Spin_2()
  403. local List = {
  404. "Infinity",
  405. "Demon Vessel",
  406. "Star Rage",
  407. "Gambler Fever",
  408. "Soul Manipulation",
  409. "Cursed Queen"
  410. }
  411.  
  412. local Power_Slot = game:GetService("Players").LocalPlayer.ReplicatedData.innates:FindFirstChild("2")
  413. if Power_Slot then
  414. if not table.find(List, Power_Slot.Value) then
  415. local args = {
  416. [1] = 2
  417. }
  418. local response = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Data"):WaitForChild("InnateSpin"):InvokeServer(unpack(args))
  419. print(response)
  420. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["2"].Frame.TextLabel.Text = Power_Slot.Value
  421. else
  422. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["2"].Frame.TextLabel.Text = Power_Slot.Value
  423. end
  424. end
  425. end
  426.  
  427. function getSkill()
  428. local keybinds = game:GetService("Players").LocalPlayer.ReplicatedData.techniques.innates
  429.  
  430. for i, v in pairs(keybinds:GetChildren()) do
  431. if selectedKeybind == v.Name then
  432. v.Value = selectedInate
  433. end
  434. end
  435. wait()
  436. end
  437.  
  438. local function AutoQuestNew()
  439. local args = {
  440. [1] = {
  441. ["type"] = "Kill",
  442. ["set"] = "Yuki Fortress Set",
  443. ["rewards"] = {
  444. ["essence"] = 40,
  445. ["chestMeter"] = 79,
  446. ["exp"] = 8850000,
  447. ["cash"] = 51000
  448. },
  449. ["rewardsText"] = "8.85 Mi EXP | Dou a bunda pra varios homens",
  450. ["difficulty"] = 3,
  451. ["title"] = "Defeat",
  452. ["level"] = 430,
  453. ["grade"] = "Non Sorcerer",
  454. ["subtitle"] = "a Curse User"
  455. }
  456. }
  457.  
  458. game:GetService("ReplicatedStorage").Remotes.Server.Data.TakeQuest:InvokeServer(unpack(args))
  459.  
  460. task.wait(1)
  461.  
  462. local questData = lp:FindFirstChild("ReplicatedTempData") and lp.ReplicatedTempData:FindFirstChild("quest")
  463. if not questData then
  464. pcall(function()
  465. game:GetService("ReplicatedStorage").Remotes.Server.Data.TakeQuest:InvokeServer(unpack(args))
  466. end)
  467. end
  468.  
  469. local questMarker = lp.PlayerGui:WaitForChild("QuestMarker")
  470. local adornee = questMarker.Adornee
  471.  
  472. if adornee and adornee:IsA("BasePart") then
  473. hrp.CFrame = adornee.CFrame
  474. end
  475.  
  476. end
  477.  
  478. local ValuesInates = {}
  479. local ValuesKeybinds = {}
  480. local keybinds = game:GetService("Players").LocalPlayer.ReplicatedData.techniques.innates
  481.  
  482. for i, v in pairs(keybinds:GetChildren()) do
  483. table.insert(ValuesKeybinds, v.Name)
  484. end
  485.  
  486. local skills = game:GetService("ReplicatedStorage").Skills
  487.  
  488. for i, v in pairs(skills:GetChildren()) do
  489. table.insert(ValuesInates, v.Name)
  490. end
  491.  
  492. local DeviceType = game:GetService("UserInputService").TouchEnabled and "Mobile" or "PC"
  493. if DeviceType == "Mobile" then
  494. local ClickButton = Instance.new("ScreenGui")
  495. local MainFrame = Instance.new("Frame")
  496. local ImageLabel = Instance.new("ImageLabel")
  497. local TextButton = Instance.new("TextButton")
  498. local UICorner = Instance.new("UICorner")
  499. local UICorner_2 = Instance.new("UICorner")
  500.  
  501. ClickButton.Name = "ClickButton"
  502. ClickButton.Parent = game.CoreGui
  503. ClickButton.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  504.  
  505. MainFrame.Name = "MainFrame"
  506. MainFrame.Parent = ClickButton
  507. MainFrame.AnchorPoint = Vector2.new(1, 0)
  508. MainFrame.BackgroundTransparency = 0.8
  509. MainFrame.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  510. MainFrame.BorderSizePixel = 0
  511. MainFrame.Position = UDim2.new(1, -60, 0, 10)
  512. MainFrame.Size = UDim2.new(0, 45, 0, 45)
  513.  
  514. UICorner.CornerRadius = UDim.new(1, 0)
  515. UICorner.Parent = MainFrame
  516.  
  517. UICorner_2.CornerRadius = UDim.new(0, 10)
  518. UICorner_2.Parent = ImageLabel
  519.  
  520. ImageLabel.Parent = MainFrame
  521. ImageLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  522. ImageLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  523. ImageLabel.BorderSizePixel = 0
  524. ImageLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  525. ImageLabel.Size = UDim2.new(0, 45, 0, 45)
  526. ImageLabel.Image = "rbxassetid://"
  527.  
  528. TextButton.Parent = MainFrame
  529. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  530. TextButton.BackgroundTransparency = 1
  531. TextButton.BorderSizePixel = 0
  532. TextButton.Position = UDim2.new(0, 0, 0, 0)
  533. TextButton.Size = UDim2.new(0, 45, 0, 45)
  534. TextButton.AutoButtonColor = false
  535. TextButton.Font = Enum.Font.SourceSans
  536. TextButton.Text = "Open"
  537. TextButton.TextColor3 = Color3.new(220, 125, 255)
  538. TextButton.TextSize = 20
  539.  
  540. TextButton.MouseButton1Click:Connect(function()
  541. game:GetService("VirtualInputManager"):SendKeyEvent(true, "LeftControl", false, game)
  542. game:GetService("VirtualInputManager"):SendKeyEvent(false, "LeftControl", false, game)
  543. end)
  544. end
  545.  
  546.  
  547. local Fluent = loadstring(game:HttpGet("https://gist.githubusercontent.com/x6mani/43b5184edbc3ce8b79e945a287d71bd4/raw/566d61566aae7f0984247c155d20ef5c9116d597/Allux.lua"))()
  548. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  549. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  550.  
  551. local Window = Fluent:CreateWindow({
  552. Title = "YukiWare 1.8",
  553. SubTitle = "Jujutsu Infinite",
  554. TabWidth = 160,
  555. Size = UDim2.fromOffset(550, 410),
  556. Acrylic = false,
  557. Theme = "Midnight",
  558. MinimizeKey = Enum.KeyCode.LeftControl
  559. })
  560.  
  561. local Tabs = {
  562. Main = Window:AddTab({ Title = "Main", Icon = "" }),
  563. Spins = Window:AddTab({ Title = "Spins", Icon = "" }),
  564. Misc = Window:AddTab({ Title = "Misc", Icon = "" })
  565. }
  566.  
  567. Tabs.Main:AddSection("Auto Farm")
  568.  
  569. Tabs.Main:AddSlider("Slider", {
  570. Title = "Auto Quest Delay",
  571. Description = "",
  572. Default = getgenv().config.WaitTime or 15,
  573. Min = 1,
  574. Max = 120,
  575. Rounding = 1,
  576. Callback = function(Value)
  577. getgenv().config.WaitTime = Value
  578. save_config()
  579. end
  580. })
  581.  
  582.  
  583. Tabs.Main:AddToggle("Toggle", {
  584. Title = "Auto Mission",
  585. Default = getgenv().config.AutoMission or false,
  586. Callback = function(Value)
  587. getgenv().config.AutoMission = Value
  588. save_config()
  589. spawn(function()
  590. while getgenv().config.AutoMission do
  591. Auto_Mission()
  592. -- task.wait(.001)
  593. end
  594. end)
  595. end
  596. })
  597.  
  598. Tabs.Main:AddSection("Kill Auras")
  599.  
  600. Tabs.Main:AddToggle("Toggle", {
  601. Title = "Auto Instant Mob",
  602. Default = getgenv().config.Instant or false,
  603. Callback = function(Value)
  604. getgenv().config.Instant = Value
  605. save_config()
  606. spawn(function()
  607. while getgenv().config.Instant do task.wait(.001)
  608. Instant()
  609. end
  610. end)
  611. end
  612. })
  613.  
  614. Tabs.Main:AddToggle("Toggle", {
  615. Title = "Auto Instant Mob2",
  616. Default = getgenv().config.Instant2 or false,
  617. Callback = function(Value)
  618. getgenv().config.Instant2 = Value
  619. save_config()
  620. spawn(function()
  621. while getgenv().config.Instant2 do task.wait(.001)
  622. Instant2()
  623. end
  624. end)
  625. end
  626. })
  627.  
  628. Tabs.Main:AddToggle("Toggle", {
  629. Title = "Kill Aura",
  630. Default = getgenv().config.KillAura or false,
  631. Callback = function(Value)
  632. getgenv().config.KillAura = Value
  633. save_config()
  634. spawn(function()
  635. while getgenv().config.KillAura do task.wait(.001)
  636. Kill_Aura()
  637. end
  638. end)
  639. end
  640. })
  641.  
  642. Tabs.Misc:AddToggle("Toggle", {
  643. Title = "Always Black Flash",
  644. Default = getgenv().config.BlackFlash or false,
  645. Callback = function(Value)
  646. getgenv().config.BlackFlash = Value
  647. save_config()
  648. spawn(function()
  649. while getgenv().config.BlackFlash do task.wait(.001)
  650. BlackFlash()
  651. end
  652. end)
  653. end
  654. })
  655.  
  656. Tabs.Misc:AddDropdown("Dropdown", {
  657. Title = "Select Keybind",
  658. Values = ValuesKeybinds,
  659. Multi = false,
  660. Default = "",
  661. Callback = function(Value)
  662. selectedKeybind = Value
  663. end
  664. })
  665.  
  666. Tabs.Misc:AddDropdown("Dropdown", {
  667. Title = "Select Skill",
  668. Values = ValuesInates,
  669. Multi = false,
  670. Default = "",
  671. Callback = function(Value)
  672. selectedInate = Value
  673. end
  674. })
  675.  
  676. Tabs.Misc:AddButton({
  677. Title = "Set Skill",
  678. Default = false,
  679. Callback = function()
  680. getSkill()
  681. end
  682. })
  683.  
  684. Tabs.Misc:AddToggle("Toggle", {
  685. Title = "No Cooldown",
  686. Default = getgenv().config.NoCd or false,
  687. Callback = function(v)
  688. getgenv().config.NoCd = Value
  689. save_config()
  690. spawn(function()
  691. while getgenv().config.NoCd do task.wait(.001)
  692. NoCd()
  693. end
  694. end)
  695. end
  696. })
  697.  
  698. Tabs.Misc:AddButton({
  699. Title = "Heavenly Restriction",
  700. Default = false,
  701. Callback = function()
  702. local Tool = Instance.new("Tool",lp)
  703. Tool.Name = "Heavenly Restriction"
  704. end
  705. })
  706.  
  707. Tabs.Main:AddSection("Misc")
  708.  
  709. Tabs.Main:AddToggle("Toggle", {
  710. Title = "Auto Claim Chest",
  711. Default = getgenv().config.AutoChest or false,
  712. Callback = function(Value)
  713. getgenv().config.AutoChest = Value
  714. save_config()
  715. spawn(function()
  716. while getgenv().config.AutoChest do task.wait(.001)
  717. Auto_Claim_Chest()
  718. end
  719. end)
  720. end
  721. })
  722.  
  723. Tabs.Main:AddToggle("Toggle", {
  724. Title = "Auto Loot",
  725. Default = getgenv().config.AutoLoot or false,
  726. Callback = function(Value)
  727. getgenv().config.AutoLoot = Value
  728. save_config()
  729. spawn(function()
  730. while getgenv().config.AutoLoot do task.wait(.001)
  731. Auto_Loot()
  732. end
  733. end)
  734. end
  735. })
  736.  
  737. Tabs.Main:AddToggle("Toggle", {
  738. Title = "Auto Promote",
  739. Default = getgenv().config.AutoPromote or false,
  740. Callback = function(Value)
  741. getgenv().config.AutoPromote = Value
  742. save_config()
  743. spawn(function()
  744. while getgenv().config.AutoPromote do task.wait(.001)
  745. Promote()
  746. end
  747. end)
  748. end
  749. })
  750.  
  751. Tabs.Main:AddToggle("Toggle", {
  752. Title = "No Menu",
  753. Default = getgenv().config.NoMenu or false,
  754. Callback = function(Value)
  755. getgenv().config.NoMenu = Value
  756. save_config()
  757. spawn(function()
  758. while getgenv().config.NoMenu do task.wait(.001)
  759. NoMenu()
  760. end
  761. end)
  762. end
  763. })
  764.  
  765. Tabs.Misc:AddToggle("Toggle", {
  766. Title = "God Mode",
  767. Default = getgenv().config.GodMode or false,
  768. Callback = function(Value)
  769. getgenv().config.GodMode = Value
  770. save_config()
  771. spawn(function()
  772. while getgenv().config.GodMode do task.wait(.001)
  773. God_Mode()
  774. end
  775. end)
  776. end
  777. })
  778.  
  779. Tabs.Spins:AddToggle("Toggle", {
  780. Title = "Spin Slot 1",
  781. Default = getgenv().config.Spin1 or false,
  782. Callback = function(Value)
  783. getgenv().config.Spin1 = Value
  784. save_config()
  785. spawn(function()
  786. while getgenv().config.Spin1 do task.wait(.001)
  787. Spin_1()
  788. end
  789. end)
  790. end
  791. })
  792.  
  793. Tabs.Spins:AddToggle("Toggle", {
  794. Title = "Spin Slot 2",
  795. Default = getgenv().config.Spin2 or false,
  796. Callback = function(Value)
  797. getgenv().config.Spin2 = Value
  798. save_config()
  799. spawn(function()
  800. while getgenv().config.Spin2 do task.wait(.001)
  801. Spin_2()
  802. end
  803. end)
  804. end
  805. })
  806.  
  807. Tabs.Spins:AddSection("Misc")
  808.  
  809. Tabs.Spins:AddToggle("Toggle", {
  810. Title = "Reedem Codes",
  811. Default = getgenv().config.ReedemCodes or false,
  812. Callback = function(Value)
  813. getgenv().config.ReedemCodes = Value
  814. save_config()
  815. spawn(function()
  816. while getgenv().config.ReedemCodes do task.wait(.001)
  817. Codes()
  818. end
  819. end)
  820. end
  821. })
  822.  
  823. Tabs.Spins:AddButton({
  824. Title = "Wipe Data",
  825. Default = false,
  826. Callback = function()
  827. local args = {
  828. [1] = "reset"
  829. }
  830. game:GetService("ReplicatedStorage").Remotes.Server.Data.GiveItem:FireServer(unpack(args))
  831. end
  832. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement