Advertisement
1zxyuuki

jjk infinite dev

Dec 30th, 2024 (edited)
226
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.88 KB | None | 1 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. end
  370.  
  371. local function Spin_1()
  372. local List = {
  373. "Infinity",
  374. "Demon Vessel",
  375. "Star Rage",
  376. "Gambler Fever",
  377. "Soul Manipulation",
  378. "Cursed Queen"
  379. }
  380.  
  381. local Power_Slot = game:GetService("Players").LocalPlayer.ReplicatedData.innates:FindFirstChild("1")
  382. if Power_Slot then
  383. if not table.find(List, Power_Slot.Value) then
  384. local args = {
  385. [1] = 1
  386. }
  387. local response = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Data"):WaitForChild("InnateSpin"):InvokeServer(unpack(args))
  388. print(response)
  389. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["1"].Frame.TextLabel.Text = Power_Slot.Value
  390. else
  391. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["1"].Frame.TextLabel.Text = Power_Slot.Value
  392. end
  393. end
  394. end
  395.  
  396. local function Spin_2()
  397. local List = {
  398. "Infinity",
  399. "Demon Vessel",
  400. "Star Rage",
  401. "Gambler Fever",
  402. "Soul Manipulation",
  403. "Cursed Queen"
  404. }
  405.  
  406. local Power_Slot = game:GetService("Players").LocalPlayer.ReplicatedData.innates:FindFirstChild("2")
  407. if Power_Slot then
  408. if not table.find(List, Power_Slot.Value) then
  409. local args = {
  410. [1] = 2
  411. }
  412. local response = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Data"):WaitForChild("InnateSpin"):InvokeServer(unpack(args))
  413. print(response)
  414. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["2"].Frame.TextLabel.Text = Power_Slot.Value
  415. else
  416. game:GetService("Players").LocalPlayer.PlayerGui.Customization.Frame.List.Innates["2"].Frame.TextLabel.Text = Power_Slot.Value
  417. end
  418. end
  419. end
  420.  
  421. function getSkill()
  422. local keybinds = game:GetService("Players").LocalPlayer.ReplicatedData.techniques.innates
  423.  
  424. for i, v in pairs(keybinds:GetChildren()) do
  425. if selectedKeybind == v.Name then
  426. v.Value = selectedInate
  427. end
  428. end
  429. wait()
  430. end
  431.  
  432. local function AutoQuestNew()
  433. local args = {
  434. [1] = {
  435. ["type"] = "Kill",
  436. ["set"] = "Yuki Fortress Set",
  437. ["rewards"] = {
  438. ["essence"] = 40,
  439. ["chestMeter"] = 79,
  440. ["exp"] = 8850000,
  441. ["cash"] = 51000
  442. },
  443. ["rewardsText"] = "8.85 Mi EXP | Dou a bunda pra varios homens",
  444. ["difficulty"] = 3,
  445. ["title"] = "Defeat",
  446. ["level"] = 430,
  447. ["grade"] = "Non Sorcerer",
  448. ["subtitle"] = "a Curse User"
  449. }
  450. }
  451.  
  452. game:GetService("ReplicatedStorage").Remotes.Server.Data.TakeQuest:InvokeServer(unpack(args))
  453.  
  454. task.wait(1)
  455.  
  456. local questData = lp:FindFirstChild("ReplicatedTempData") and lp.ReplicatedTempData:FindFirstChild("quest")
  457. if not questData then
  458. pcall(function()
  459. game:GetService("ReplicatedStorage").Remotes.Server.Data.TakeQuest:InvokeServer(unpack(args))
  460. end)
  461. end
  462.  
  463. local questMarker = lp.PlayerGui:WaitForChild("QuestMarker")
  464. local adornee = questMarker.Adornee
  465.  
  466. if adornee and adornee:IsA("BasePart") then
  467. hrp.CFrame = adornee.CFrame
  468. end
  469.  
  470. end
  471.  
  472. local ValuesInates = {}
  473. local ValuesKeybinds = {}
  474. local keybinds = game:GetService("Players").LocalPlayer.ReplicatedData.techniques.innates
  475.  
  476. for i, v in pairs(keybinds:GetChildren()) do
  477. table.insert(ValuesKeybinds, v.Name)
  478. end
  479.  
  480. local skills = game:GetService("ReplicatedStorage").Skills
  481.  
  482. for i, v in pairs(skills:GetChildren()) do
  483. table.insert(ValuesInates, v.Name)
  484. end
  485.  
  486. local DeviceType = game:GetService("UserInputService").TouchEnabled and "Mobile" or "PC"
  487. if DeviceType == "Mobile" then
  488. local ClickButton = Instance.new("ScreenGui")
  489. local MainFrame = Instance.new("Frame")
  490. local ImageLabel = Instance.new("ImageLabel")
  491. local TextButton = Instance.new("TextButton")
  492. local UICorner = Instance.new("UICorner")
  493. local UICorner_2 = Instance.new("UICorner")
  494.  
  495. ClickButton.Name = "ClickButton"
  496. ClickButton.Parent = game.CoreGui
  497. ClickButton.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  498.  
  499. MainFrame.Name = "MainFrame"
  500. MainFrame.Parent = ClickButton
  501. MainFrame.AnchorPoint = Vector2.new(1, 0)
  502. MainFrame.BackgroundTransparency = 0.8
  503. MainFrame.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  504. MainFrame.BorderSizePixel = 0
  505. MainFrame.Position = UDim2.new(1, -60, 0, 10)
  506. MainFrame.Size = UDim2.new(0, 45, 0, 45)
  507.  
  508. UICorner.CornerRadius = UDim.new(1, 0)
  509. UICorner.Parent = MainFrame
  510.  
  511. UICorner_2.CornerRadius = UDim.new(0, 10)
  512. UICorner_2.Parent = ImageLabel
  513.  
  514. ImageLabel.Parent = MainFrame
  515. ImageLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  516. ImageLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  517. ImageLabel.BorderSizePixel = 0
  518. ImageLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  519. ImageLabel.Size = UDim2.new(0, 45, 0, 45)
  520. ImageLabel.Image = "rbxassetid://"
  521.  
  522. TextButton.Parent = MainFrame
  523. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  524. TextButton.BackgroundTransparency = 1
  525. TextButton.BorderSizePixel = 0
  526. TextButton.Position = UDim2.new(0, 0, 0, 0)
  527. TextButton.Size = UDim2.new(0, 45, 0, 45)
  528. TextButton.AutoButtonColor = false
  529. TextButton.Font = Enum.Font.SourceSans
  530. TextButton.Text = "Open"
  531. TextButton.TextColor3 = Color3.new(220, 125, 255)
  532. TextButton.TextSize = 20
  533.  
  534. TextButton.MouseButton1Click:Connect(function()
  535. game:GetService("VirtualInputManager"):SendKeyEvent(true, "LeftControl", false, game)
  536. game:GetService("VirtualInputManager"):SendKeyEvent(false, "LeftControl", false, game)
  537. end)
  538. end
  539.  
  540.  
  541. local Fluent = loadstring(game:HttpGet("https://gist.githubusercontent.com/x6mani/43b5184edbc3ce8b79e945a287d71bd4/raw/566d61566aae7f0984247c155d20ef5c9116d597/Allux.lua"))()
  542. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  543. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  544.  
  545. local Window = Fluent:CreateWindow({
  546. Title = "YukiWare 1.8",
  547. SubTitle = "Jujutsu Infinite",
  548. TabWidth = 160,
  549. Size = UDim2.fromOffset(550, 410),
  550. Acrylic = false,
  551. Theme = "Midnight",
  552. MinimizeKey = Enum.KeyCode.LeftControl
  553. })
  554.  
  555. local Tabs = {
  556. Main = Window:AddTab({ Title = "Main", Icon = "" }),
  557. Spins = Window:AddTab({ Title = "Spins", Icon = "" }),
  558. Misc = Window:AddTab({ Title = "Misc", Icon = "" })
  559. }
  560.  
  561. Tabs.Main:AddSection("Auto Farm")
  562.  
  563. Tabs.Main:AddSlider("Slider", {
  564. Title = "Auto Quest Delay",
  565. Description = "",
  566. Default = getgenv().config.WaitTime or 15,
  567. Min = 1,
  568. Max = 120,
  569. Rounding = 1,
  570. Callback = function(Value)
  571. getgenv().config.WaitTime = Value
  572. save_config()
  573. end
  574. })
  575.  
  576.  
  577. Tabs.Main:AddToggle("Toggle", {
  578. Title = "Auto Mission",
  579. Default = getgenv().config.AutoMission or false,
  580. Callback = function(Value)
  581. getgenv().config.AutoMission = Value
  582. save_config()
  583. spawn(function()
  584. while getgenv().config.AutoMission do
  585. Auto_Mission()
  586. -- task.wait(.001)
  587. end
  588. end)
  589. end
  590. })
  591.  
  592. Tabs.Main:AddSection("Kill Auras")
  593.  
  594. Tabs.Main:AddToggle("Toggle", {
  595. Title = "Auto Instant Mob",
  596. Default = getgenv().config.Instant or false,
  597. Callback = function(Value)
  598. getgenv().config.Instant = Value
  599. save_config()
  600. spawn(function()
  601. while getgenv().config.Instant do task.wait(.001)
  602. Instant()
  603. end
  604. end)
  605. end
  606. })
  607.  
  608. Tabs.Main:AddToggle("Toggle", {
  609. Title = "Auto Instant Mob2",
  610. Default = getgenv().config.Instant2 or false,
  611. Callback = function(Value)
  612. getgenv().config.Instant2 = Value
  613. save_config()
  614. spawn(function()
  615. while getgenv().config.Instant2 do task.wait(.001)
  616. Instant2()
  617. end
  618. end)
  619. end
  620. })
  621.  
  622. Tabs.Main:AddToggle("Toggle", {
  623. Title = "Kill Aura",
  624. Default = getgenv().config.KillAura or false,
  625. Callback = function(Value)
  626. getgenv().config.KillAura = Value
  627. save_config()
  628. spawn(function()
  629. while getgenv().config.KillAura do task.wait(.001)
  630. Kill_Aura()
  631. end
  632. end)
  633. end
  634. })
  635.  
  636. Tabs.Misc:AddToggle("Toggle", {
  637. Title = "Always Black Flash",
  638. Default = getgenv().config.BlackFlash or false,
  639. Callback = function(Value)
  640. getgenv().config.BlackFlash = Value
  641. save_config()
  642. spawn(function()
  643. while getgenv().config.BlackFlash do task.wait(.001)
  644. BlackFlash()
  645. end
  646. end)
  647. end
  648. })
  649.  
  650. Tabs.Misc:AddDropdown("Dropdown", {
  651. Title = "Select Keybind",
  652. Values = ValuesKeybinds,
  653. Multi = false,
  654. Default = "",
  655. Callback = function(Value)
  656. selectedKeybind = Value
  657. end
  658. })
  659.  
  660. Tabs.Misc:AddDropdown("Dropdown", {
  661. Title = "Select Skill",
  662. Values = ValuesInates,
  663. Multi = false,
  664. Default = "",
  665. Callback = function(Value)
  666. selectedInate = Value
  667. end
  668. })
  669.  
  670. Tabs.Misc:AddButton({
  671. Title = "Set Skill",
  672. Default = false,
  673. Callback = function()
  674. getSkill()
  675. end
  676. })
  677.  
  678. Tabs.Misc:AddToggle("Toggle", {
  679. Title = "No Cooldown",
  680. Default = getgenv().config.NoCd or false,
  681. Callback = function(v)
  682. getgenv().config.NoCd = Value
  683. save_config()
  684. spawn(function()
  685. while getgenv().config.NoCd do task.wait(.001)
  686. NoCd()
  687. end
  688. end)
  689. end
  690. })
  691.  
  692. Tabs.Misc:AddButton({
  693. Title = "Heavenly Restriction",
  694. Default = false,
  695. Callback = function()
  696. local Tool = Instance.new("Tool",lp)
  697. Tool.Name = "Heavenly Restriction"
  698. end
  699. })
  700.  
  701. Tabs.Main:AddSection("Misc")
  702.  
  703. Tabs.Main:AddToggle("Toggle", {
  704. Title = "Auto Claim Chest",
  705. Default = getgenv().config.AutoChest or false,
  706. Callback = function(Value)
  707. getgenv().config.AutoChest = Value
  708. save_config()
  709. spawn(function()
  710. while getgenv().config.AutoChest do task.wait(.001)
  711. Auto_Claim_Chest()
  712. end
  713. end)
  714. end
  715. })
  716.  
  717. Tabs.Main:AddToggle("Toggle", {
  718. Title = "Auto Loot",
  719. Default = getgenv().config.AutoLoot or false,
  720. Callback = function(Value)
  721. getgenv().config.AutoLoot = Value
  722. save_config()
  723. spawn(function()
  724. while getgenv().config.AutoLoot do task.wait(.001)
  725. Auto_Loot()
  726. end
  727. end)
  728. end
  729. })
  730.  
  731. Tabs.Main:AddToggle("Toggle", {
  732. Title = "Auto Promote",
  733. Default = getgenv().config.AutoPromote or false,
  734. Callback = function(Value)
  735. getgenv().config.AutoPromote = Value
  736. save_config()
  737. spawn(function()
  738. while getgenv().config.AutoPromote do task.wait(.001)
  739. Promote()
  740. end
  741. end)
  742. end
  743. })
  744.  
  745. Tabs.Main:AddToggle("Toggle", {
  746. Title = "No Menu",
  747. Default = getgenv().config.NoMenu or false,
  748. Callback = function(Value)
  749. getgenv().config.NoMenu = Value
  750. save_config()
  751. spawn(function()
  752. while getgenv().config.NoMenu do task.wait(.001)
  753. NoMenu()
  754. end
  755. end)
  756. end
  757. })
  758.  
  759. Tabs.Misc:AddToggle("Toggle", {
  760. Title = "God Mode",
  761. Default = getgenv().config.GodMode or false,
  762. Callback = function(Value)
  763. getgenv().config.GodMode = Value
  764. save_config()
  765. spawn(function()
  766. while getgenv().config.GodMode do task.wait(.001)
  767. God_Mode()
  768. end
  769. end)
  770. end
  771. })
  772.  
  773. Tabs.Spins:AddToggle("Toggle", {
  774. Title = "Spin Slot 1",
  775. Default = getgenv().config.Spin1 or false,
  776. Callback = function(Value)
  777. getgenv().config.Spin1 = Value
  778. save_config()
  779. spawn(function()
  780. while getgenv().config.Spin1 do task.wait(.001)
  781. Spin_1()
  782. end
  783. end)
  784. end
  785. })
  786.  
  787. Tabs.Spins:AddToggle("Toggle", {
  788. Title = "Spin Slot 2",
  789. Default = getgenv().config.Spin2 or false,
  790. Callback = function(Value)
  791. getgenv().config.Spin2 = Value
  792. save_config()
  793. spawn(function()
  794. while getgenv().config.Spin2 do task.wait(.001)
  795. Spin_2()
  796. end
  797. end)
  798. end
  799. })
  800.  
  801. Tabs.Spins:AddSection("Misc")
  802.  
  803. Tabs.Spins:AddToggle("Toggle", {
  804. Title = "Reedem Codes",
  805. Default = getgenv().config.ReedemCodes or false,
  806. Callback = function(Value)
  807. getgenv().config.ReedemCodes = Value
  808. save_config()
  809. spawn(function()
  810. while getgenv().config.ReedemCodes do task.wait(.001)
  811. Codes()
  812. end
  813. end)
  814. end
  815. })
  816.  
  817. Tabs.Spins:AddButton({
  818. Title = "Wipe Data",
  819. Default = false,
  820. Callback = function()
  821. local args = {
  822. [1] = "reset"
  823. }
  824. game:GetService("ReplicatedStorage").Remotes.Server.Data.GiveItem:FireServer(unpack(args))
  825. end
  826. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement