Advertisement
kooggy

Untitled

May 21st, 2022 (edited)
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 130.88 KB | None | 0 0
  1. if game.PlaceId == 3102144307 then
  2. if game.CoreGui:FindFirstChild("Anime Clicker Simulator") then
  3. game.CoreGui["Anime Clicker Simulator"]:Destroy()
  4. end
  5. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/zxciaz/VenyxUI/main/Reuploaded"))()
  6. local venyx = library.new("Anime Clicker Simulator", 5013109572)
  7.  
  8. -- themes
  9. local themes = {
  10. Background = Color3.fromRGB(24, 24, 24),
  11. Glow = Color3.fromRGB(0, 0, 0),
  12. Accent = Color3.fromRGB(10, 10, 10),
  13. LightContrast = Color3.fromRGB(20, 20, 20),
  14. DarkContrast = Color3.fromRGB(14, 14, 14),
  15. TextColor = Color3.fromRGB(255, 255, 255)
  16. }
  17.  
  18. --PAGES
  19. local Main = venyx:addPage("Main", 5012544693)
  20. local misc = venyx:addPage("Misc", 5012544693)
  21.  
  22. --SECTIONS
  23. local clicking = Main:addSection("Auto Click/Boss")
  24. local pets = Main:addSection("Pets/Stars")
  25. local reb = Main:addSection("Auto Rebirth")
  26. local upgrades = Main:addSection("Auto Upgrade")
  27. local world = Main:addSection("World Teleport")
  28. local plr = misc:addSection("LocalPlayer")
  29. local random = misc:addSection("Random Stuff")
  30. local gui = misc:addSection("GUI Things")
  31. --FUNCTIONS
  32. gui:addButton("Destroy GUI", function()
  33. game.CoreGui["Anime Clicker Simulator"]:Destroy()
  34. end)
  35. local autoclick = false;
  36. clicking:addToggle("AutoClick", nil, function(state)
  37. autoclick = state
  38. if autoclick then
  39. while wait() do
  40. if not autoclick then break end;
  41. local args = {
  42. [1] = false,
  43. [2] = true,
  44. [3] = "Clicker!"
  45. }
  46.  
  47. game:GetService("ReplicatedStorage").Remotes.ClickRemote:FireServer(unpack(args))
  48. wait()
  49. end
  50. else
  51. autoclick = false;
  52. end
  53. end)
  54. reb:addDropdown("Select Rebirth)", {1, 5, 15, 25, 50, 75, 100, 500, 1500, 2500, 5000, 7500, 50000, 150000, 250000, 500000, 750000, 1000000, 5000000, 15000000, 25000000, 50000000, 75000000, 100000000, 500000000, 1500000000, 2500000000, 5000000000, 7500000000, }, function(currentOption)
  55. v = currentOption
  56. end)
  57. reb:addToggle("Auto Rebirth", nil, function(state)
  58. getgenv().reb = true
  59. while reb do
  60. wait(2)
  61. if state then
  62. wait(2)
  63. local args = {
  64. [1] = v
  65. }
  66.  
  67. game:GetService("ReplicatedStorage").Remotes.RebirthRemote:FireServer(unpack(args))
  68. getgenv().reb = false
  69. end
  70. end
  71. end)
  72. local stars = {};
  73. for i,v in pairs(game:GetService("Workspace").Eggs:GetChildren()) do
  74. table.insert(stars, v.Name)
  75. end
  76. pets:addDropdown("Select Star", stars, function(currentOption)
  77. star = currentOption
  78. end)
  79. pets:addToggle("Open Selected Star", nil, function(state)
  80. getgenv().autoegg = true
  81. while autoegg do
  82. wait()
  83. if state then
  84. wait()
  85. local args = {
  86. [1] = star,
  87. [2] = false,
  88. [3] = false
  89. }
  90.  
  91. game:GetService("ReplicatedStorage").Remotes.OpenEgg:InvokeServer(unpack(args))
  92. else
  93. getgenv().autoegg = false;
  94. end
  95. end
  96. end)
  97. pets:addToggle("Triple Open Selected Star", nil, function(state)
  98. getgenv().autoegg = true
  99. while autoegg do
  100. wait()
  101. if state then
  102. wait()
  103. local args = {
  104. [1] = star,
  105. [2] = true,
  106. [3] = false
  107. }
  108.  
  109. game:GetService("ReplicatedStorage").Remotes.OpenEgg:InvokeServer(unpack(args))
  110. else
  111. getgenv().autoegg = false;
  112. end
  113. end
  114. end)
  115. local worlds = {};
  116. for i,v in pairs(game:GetService("Workspace").Worlds:GetChildren()) do
  117. table.insert(worlds, v.Name)
  118. end
  119. world:addDropdown("Select World", worlds, function(v)
  120. local args = {
  121. [1] = "world",
  122. [2] = v
  123. }
  124.  
  125. game:GetService("ReplicatedStorage").Remotes.RequestTeleport:InvokeServer(unpack(args))
  126.  
  127. end)
  128. local boss = {};
  129. for i,v in pairs(game:GetService("Workspace").Bosses:GetChildren()) do
  130. table.insert(boss, v.Name)
  131. end
  132. clicking:addDropdown("Select Boss To Farm", boss, function(currentOption)
  133. selectedboss = currentOption
  134. end)
  135. local autoboss = false;
  136. clicking:addToggle("Auto Farm Selected Boss", nil, function(state)
  137. autoboss = state
  138. if autoboss then
  139. while wait() do
  140. if not autoboss then break end;
  141. local args = {
  142. [1] = false,
  143. [2] = false,
  144. [3] = "Clicker!",
  145. [4] = selectedboss
  146. }
  147.  
  148. game:GetService("ReplicatedStorage").Remotes.ClickRemote:FireServer(unpack(args))
  149. wait()
  150. end
  151. else
  152. getgenv().autoboss = false;
  153. end
  154. end)
  155. plr:addSlider("WalkSpeed", 16, 16, 500, function(v)
  156. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  157. end)
  158. plr:addSlider("JumpPower", 50, 50, 500, function(v)
  159. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  160. end)
  161. plr:addButton("GodMode", function()
  162. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  163. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  164. l.Parent = game.Players.LocalPlayer.Character
  165. l.Name = "Humanoid"
  166. wait(0.1)
  167. game.Players.LocalPlayer.Character["1"]:Destroy()
  168. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  169. game.Players.LocalPlayer.Character.Animate.Disabled = true
  170. wait(0.1)
  171. game.Players.LocalPlayer.Character.Animate.Disabled = false
  172. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  173. end)
  174. plr:addButton("E To Noclip", function()
  175. noclip = false
  176. game:GetService('RunService').Stepped:connect(function()
  177. if noclip then
  178. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  179. end
  180. end)
  181. plr = game.Players.LocalPlayer
  182. mouse = plr:GetMouse()
  183. mouse.KeyDown:connect(function(key)
  184.  
  185. if key == "e" then
  186. noclip = not noclip
  187. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  188. end
  189. end)
  190. print('Loaded')
  191. print('Press "E" to noclip')
  192. end)
  193. random:addButton("Collect Daily & Group Rewrds", function()
  194. local args = {
  195. [1] = "DailyRewards"
  196. }
  197.  
  198. game:GetService("ReplicatedStorage").Remotes.CollectChest:InvokeServer(unpack(args))
  199. wait()
  200. local args = {
  201. [1] = "GroupRewards"
  202. }
  203.  
  204. game:GetService("ReplicatedStorage").Remotes.CollectChest:InvokeServer(unpack(args))
  205. end)
  206.  
  207. upgrades:addDropdown("Select Upgrade", {"Run Speed", "More Rebirths", "Star Open Speed", "More Storage", "Crit Chance", "More Yen"}, function(currentOption)
  208. selectedupgrade = currentOption
  209. end)
  210. upgrades:addToggle("Auto Upgrade", nil, function(state)
  211. getgenv().upgr = true
  212. while upgr do
  213. wait()
  214. if state then
  215. wait()
  216. local args = {
  217. [1] = selectedupgrade,
  218. }
  219.  
  220. game:GetService("ReplicatedStorage").Remotes.RequestUpgrade:FireServer(unpack(args))
  221.  
  222. end
  223. end
  224. end)
  225.  
  226.  
  227. elseif game.PlaceId == 3823781113 then
  228. getgenv().dark = true
  229.  
  230. getgenv().theme = {
  231. main = Color3.fromRGB(250, 250, 250),
  232. secondary = Color3.fromRGB(230, 230, 230),
  233. accent = Color3.fromRGB(69, 90, 220),
  234. accent2 = Color3.fromRGB(40, 40, 40)
  235. }
  236.  
  237. if dark then
  238. getgenv().theme = {
  239. main = Color3.fromRGB(32, 32, 32),
  240. secondary = Color3.fromRGB(44, 55, 158),
  241. accent = Color3.fromRGB(198, 198, 198),
  242. accent2 = Color3.fromRGB(65, 80, 211)
  243. }
  244. end
  245.  
  246. local services = setmetatable({}, {
  247. __index = function(index, service)
  248. return game:GetService(service)
  249. end,
  250. __newindex = function(index, value)
  251. index[value] = nil
  252. return
  253. end
  254. })
  255.  
  256. local players = services.Players
  257. local player = players.LocalPlayer
  258. local mouse = player:GetMouse()
  259.  
  260. local library = {
  261. flags = {};
  262. binds = {};
  263. objstorage = {};
  264. funcstorage = {};
  265. binding = false;
  266. tabinfo = {button = nil, tab = nil};
  267. destroyed = false;
  268. ui = nil,
  269. toggleui = function() end
  270. }
  271.  
  272. function library.destroy()
  273. library.ui:Destroy()
  274. library.destroyed = true
  275. end
  276.  
  277. local function isreallypressed(bind, inp)
  278. local key = bind
  279. if typeof(key) == "Instance" then
  280. if key.UserInputType == Enum.UserInputType.Keyboard and inp.KeyCode == key.KeyCode then
  281. return true;
  282. elseif tostring(key.UserInputType):find('MouseButton') and inp.UserInputType == key.UserInputType then
  283. return true
  284. end
  285. end
  286. if tostring(key):find'MouseButton1' then
  287. return key == inp.UserInputType
  288. else
  289. return key == inp.KeyCode
  290. end
  291. end
  292.  
  293. pcall(function()
  294. services.UserInputService.InputBegan:Connect(function(input, gp)
  295. if library.destroyed then return end
  296. if gp then else
  297. if (not library.binding) then
  298. for idx, binds in next, library.binds do
  299. local real_binding = binds.location[idx];
  300. if real_binding and isreallypressed(real_binding, input) then
  301. binds.callback()
  302. end
  303. end
  304. end
  305. end
  306. end)
  307. end)
  308.  
  309. local utils = {};
  310.  
  311. function utils:Tween(obj, t, data)
  312. services.TweenService:Create(obj, TweenInfo.new(t[1], Enum.EasingStyle[t[2]], Enum.EasingDirection[t[3]]), data):Play()
  313. return true
  314. end
  315.  
  316. function utils:HoverEffect(obj)
  317. Btn.MouseEnter:Connect(function()
  318. self:Tween(Btn, {0.15, 'Sine', 'InOut'}, {
  319. BackgroundTransparency = 0.3
  320. })
  321. end)
  322.  
  323. Btn.MouseLeave:Connect(function()
  324. self:Tween(Btn, {0.15, 'Sine', 'InOut'}, {
  325. BackgroundTransparency = 0
  326. })
  327. end)
  328. end
  329.  
  330. function utils:Ripple(obj)
  331. spawn(function()
  332. if obj.ClipsDescendants ~= true then
  333. obj.ClipsDescendants = true
  334. end
  335. local Ripple = Instance.new("ImageLabel")
  336. Ripple.Name = "Ripple"
  337. Ripple.Parent = obj
  338. Ripple.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  339. Ripple.BackgroundTransparency = 1.000
  340. Ripple.ZIndex = 8
  341. Ripple.Image = "rbxassetid://2708891598"
  342. Ripple.ImageTransparency = 0.800
  343. Ripple.ScaleType = Enum.ScaleType.Fit
  344. Ripple.ImageColor3 = theme.accent
  345. Ripple.Position = UDim2.new((mouse.X - Ripple.AbsolutePosition.X) / obj.AbsoluteSize.X, 0, (mouse.Y - Ripple.AbsolutePosition.Y) / obj.AbsoluteSize.Y, 0)
  346. self:Tween(Ripple, {.3, 'Linear', 'InOut'}, {Position = UDim2.new(-5.5, 0, -5.5, 0), Size = UDim2.new(12, 0, 12, 0)})
  347. wait(0.15)
  348. self:Tween(Ripple, {.3, 'Linear', 'InOut'}, {ImageTransparency = 1})
  349. wait(.3)
  350. Ripple:Destroy()
  351. end)
  352. end
  353.  
  354. function utils:Drag(frame, hold)
  355. if not hold then
  356. hold = frame
  357. end
  358. local dragging
  359. local dragInput
  360. local dragStart
  361. local startPos
  362.  
  363. local function update(input)
  364. local delta = input.Position - dragStart
  365. frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  366. end
  367.  
  368. hold.InputBegan:Connect(function(input)
  369. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  370. dragging = true
  371. dragStart = input.Position
  372. startPos = frame.Position
  373.  
  374. input.Changed:Connect(function()
  375. if input.UserInputState == Enum.UserInputState.End then
  376. dragging = false
  377. end
  378. end)
  379. end
  380. end)
  381.  
  382. frame.InputChanged:Connect(function(input)
  383. if input.UserInputType == Enum.UserInputType.MouseMovement then
  384. dragInput = input
  385. end
  386. end)
  387.  
  388. services.UserInputService.InputChanged:Connect(function(input)
  389. if input == dragInput and dragging then
  390. update(input)
  391. end
  392. end)
  393. end
  394.  
  395. local changingTab = false
  396. function utils:ChangeTab(newData)
  397. if changingTab then return end
  398. local btn, tab = newData[1], newData[2]
  399. if not btn or not tab then return end
  400. if library.tabinfo.button == btn then return end
  401. changingTab = true
  402. local oldbtn, oldtab = library.tabinfo.button, library.tabinfo.tab
  403. local oldicon, newicon = oldbtn.TabIcon, btn.TabIcon
  404. library.tabinfo = {button = btn, tab = tab}
  405. local container = tab.Parent
  406. if container.ClipsDescendants == false then container.ClipsDescendants = true end
  407. local beforeSize = container.Size
  408.  
  409. self:Tween(container, {0.3, 'Sine', 'InOut'}, {Size = UDim2.new(beforeSize.X.Scale, beforeSize.X.Offset, 0, 0)})
  410. self:Tween(oldbtn, {0.3, 'Sine', 'InOut'}, {TextColor3 = theme.accent2})
  411. self:Tween(oldicon, {0.3, 'Sine', 'InOut'}, {ImageColor3 = theme.accent2})
  412. wait(0.3)
  413. oldtab.Visible = false
  414. tab.Visible = true
  415. self:Tween(container, {0.3, 'Sine', 'InOut'}, {Size = beforeSize})
  416. self:Tween(btn, {0.3, 'Sine', 'InOut'}, {TextColor3 = theme.accent})
  417. self:Tween(newicon, {0.3, 'Sine', 'InOut'}, {ImageColor3 = theme.accent})
  418. wait(0.3)
  419. changingTab = false
  420. end
  421.  
  422. function library:UpdateSlider(flag, value, min, max)
  423. local slider = self.objstorage[flag]
  424. local bar = slider.SliderBar
  425. local box = slider.SliderValHolder.SliderVal
  426.  
  427. local percent = (mouse.X - bar.AbsolutePosition.X) / bar.AbsoluteSize.X
  428.  
  429. if value then
  430. percent = (value - min) / (max - min)
  431. end
  432.  
  433. percent = math.clamp(percent, 0, 1)
  434. value = value or math.floor(min + (max - min) * percent)
  435.  
  436. box.Text = tostring(value)
  437.  
  438. utils:Tween(bar.SliderFill, {0.05, 'Linear', 'InOut'}, {Size = UDim2.new(percent, 0, 1, 0)})
  439.  
  440. self.flags[flag] = tonumber(value)
  441.  
  442. self.funcstorage[flag](tonumber(value))
  443. end
  444.  
  445. function library:UpdateToggle(flag, value)
  446. if not library.objstorage[flag] then return end
  447. local oldval = library.flags[flag]
  448. local obj = library.objstorage[flag]
  449. local func = library.funcstorage[flag]
  450. if oldval == value then return end
  451. if not value then value = not oldval end
  452. library.flags[flag] = value
  453. local fill = obj.ToggleDisplay.ToggleDisplayFill
  454. local toggleoff = UDim2.new(0, 3, 0.5, 0)
  455. local toggleon = UDim2.new(0, 17, 0.5, 0)
  456. spawn(function()
  457. utils:Tween(fill, {0.15, 'Sine', 'InOut'}, {Size = UDim2.new(0, 24, 0, 16)})
  458. wait(.15)
  459. utils:Tween(fill, {0.15, 'Sine', 'InOut'}, {Size = UDim2.new(0, 24, 0, 20)})
  460. end)
  461. utils:Tween(fill, {0.3,'Sine', 'InOut'}, {Position = value and toggleon or toggleoff, BackgroundColor3 = value and theme.accent or theme.main})
  462. spawn(function()
  463. func(value)
  464. end)
  465. end
  466.  
  467. function library:Init(title)
  468. local Library = Instance.new("ScreenGui")
  469. local Main = Instance.new("Frame")
  470. local MainC = Instance.new("UICorner")
  471. local Top = Instance.new("Frame")
  472. local TopC = Instance.new("UICorner")
  473. local Title = Instance.new("TextLabel")
  474. local Side = Instance.new("Frame")
  475. local SideC = Instance.new("UICorner")
  476. local BtnHolder = Instance.new("ScrollingFrame")
  477. local BtnHolderL = Instance.new("UIListLayout")
  478. local BtnHolderP = Instance.new("UIPadding")
  479. local TabHolder = Instance.new("Frame")
  480. local TabHolderC = Instance.new("UICorner")
  481. if syn and syn.protect_gui then
  482. syn.protect_gui(Library)
  483. end
  484. Library.Name = services.HttpService:GenerateGUID()
  485. Library.Parent = (gethui and gethui()) or (get_hidden_gui and get_hidden_gui()) or services.CoreGui
  486. Library.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  487.  
  488. library.ui = Library
  489.  
  490. Main.Name = "Main"
  491. Main.Parent = Library
  492. Main.BackgroundColor3 = theme.secondary
  493. Main.BorderSizePixel = 0
  494. Main.Position = UDim2.new(0.297788322, 0, 0.0769230798, 0)
  495. Main.Size = UDim2.new(0, 609, 0, 505)
  496. Main.ClipsDescendants = true
  497. local toggled = true
  498. function library.toggleui()
  499. toggled = not toggled
  500. spawn(function()
  501. if toggled then wait(0.3) end
  502. end)
  503. utils:Tween(Main, {0.3, 'Sine', 'InOut'}, {
  504. Size = UDim2.new(0, 609, 0, (toggled and 505 or 0))
  505. })
  506. end
  507.  
  508. MainC.CornerRadius = UDim.new(0, 4)
  509. MainC.Name = "MainC"
  510. MainC.Parent = Main
  511.  
  512. Top.Name = "Top"
  513. Top.Parent = Main
  514. Top.BackgroundColor3 = theme.main
  515. Top.BorderSizePixel = 0
  516. Top.Position = UDim2.new(0, 6, 0, 6)
  517. Top.Size = UDim2.new(0, 597, 0, 46)
  518.  
  519. utils:Drag(Main, Top)
  520.  
  521. TopC.CornerRadius = UDim.new(0, 4)
  522. TopC.Name = "TopC"
  523. TopC.Parent = Top
  524.  
  525. Title.Name = "Title"
  526. Title.Parent = Top
  527. Title.BackgroundColor3 = theme.accent
  528. Title.BackgroundTransparency = 1.000
  529. Title.BorderSizePixel = 0
  530. Title.Position = UDim2.new(0.0234505869, 0, 0, 0)
  531. Title.Size = UDim2.new(0, 186, 0, 46)
  532. Title.Font = Enum.Font.GothamSemibold
  533. Title.Text = title
  534. Title.TextColor3 = theme.accent
  535. Title.TextSize = 16.000
  536. Title.TextXAlignment = Enum.TextXAlignment.Left
  537.  
  538. Side.Name = "Side"
  539. Side.Parent = Main
  540. Side.BackgroundColor3 = theme.main
  541. Side.BorderSizePixel = 0
  542. Side.Position = UDim2.new(0, 6, 0, 58)
  543. Side.Size = UDim2.new(0, 180, 0, 441)
  544.  
  545. SideC.CornerRadius = UDim.new(0, 4)
  546. SideC.Name = "SideC"
  547. SideC.Parent = Side
  548.  
  549. BtnHolder.Name = "BtnHolder"
  550. BtnHolder.Parent = Side
  551. BtnHolder.Active = true
  552. BtnHolder.BackgroundColor3 = theme.accent
  553. BtnHolder.BackgroundTransparency = 1.000
  554. BtnHolder.BorderSizePixel = 0
  555. BtnHolder.Size = UDim2.new(0, 180, 0, 441)
  556. BtnHolder.ScrollBarThickness = 2
  557.  
  558. BtnHolderL.Name = "BtnHolderL"
  559. BtnHolderL.Parent = BtnHolder
  560. BtnHolderL.HorizontalAlignment = Enum.HorizontalAlignment.Center
  561. BtnHolderL.SortOrder = Enum.SortOrder.LayoutOrder
  562. BtnHolderL.Padding = UDim.new(0, 4)
  563.  
  564. BtnHolderP.Name = "BtnHolderP"
  565. BtnHolderP.Parent = BtnHolder
  566. BtnHolderP.PaddingTop = UDim.new(0, 4)
  567.  
  568. TabHolder.Name = "TabHolder"
  569. TabHolder.Parent = Main
  570. TabHolder.BackgroundColor3 = theme.main
  571. TabHolder.BorderSizePixel = 0
  572. TabHolder.Position = UDim2.new(0, 192, 0, 58)
  573. TabHolder.Size = UDim2.new(0, 411, 0, 441)
  574.  
  575. TabHolderC.CornerRadius = UDim.new(0, 4)
  576. TabHolderC.Name = "TabHolderC"
  577. TabHolderC.Parent = TabHolder
  578.  
  579. BtnHolderL:GetPropertyChangedSignal('AbsoluteContentSize'):Connect(function()
  580. BtnHolder.CanvasSize = UDim2.new(0, 0, 0, BtnHolderL.AbsoluteContentSize.Y + 6) -- 1
  581. end)
  582.  
  583. local tabs = {}
  584. function tabs:Tab(tabName, icon)
  585. local TabOpen = Instance.new("TextButton")
  586. local TabOpenC = Instance.new("UICorner")
  587. local TabIcon = Instance.new("ImageLabel")
  588. local Tab = Instance.new("ScrollingFrame")
  589. local TabL = Instance.new("UIListLayout")
  590. local TabP = Instance.new("UIPadding")
  591.  
  592. TabOpen.Name = "TabOpen"
  593. TabOpen.Parent = BtnHolder
  594. TabOpen.BackgroundColor3 = theme.secondary
  595. TabOpen.BackgroundTransparency = 1.000
  596. TabOpen.BorderSizePixel = 0
  597. TabOpen.Position = UDim2.new(-0.00277777785, 0, 0.00907029491, 0)
  598. TabOpen.Size = UDim2.new(0, 164, 0, 30)
  599. TabOpen.AutoButtonColor = false
  600. TabOpen.Font = Enum.Font.GothamSemibold
  601. TabOpen.Text = (" %s"):format(tabName)
  602. TabOpen.TextColor3 = (library.tabinfo.button == nil and theme.accent) or theme.accent2
  603. TabOpen.TextSize = 14.000
  604. TabOpen.TextXAlignment = Enum.TextXAlignment.Left
  605.  
  606. TabOpenC.CornerRadius = UDim.new(0, 4)
  607. TabOpenC.Name = "TabOpenC"
  608. TabOpenC.Parent = TabOpen
  609.  
  610. TabIcon.Name = "TabIcon"
  611. TabIcon.Parent = TabOpen
  612. TabIcon.BackgroundTransparency = 1.000
  613. TabIcon.Position = UDim2.new(0, 0, 0.166666672, 0)
  614. TabIcon.Size = UDim2.new(0, 20, 0, 20)
  615. TabIcon.Image = ("rbxassetid://%s"):format((icon or 4370341699))
  616. TabIcon.ScaleType = Enum.ScaleType.Fit
  617. TabIcon.ImageColor3 = (library.tabinfo.button == nil and theme.accent) or theme.accent2
  618.  
  619. Tab.Name = "Tab"
  620. Tab.Parent = TabHolder
  621. Tab.Active = true
  622. Tab.BackgroundColor3 = theme.accent
  623. Tab.BackgroundTransparency = 1.000
  624. Tab.BorderSizePixel = 0
  625. Tab.Size = UDim2.new(0, 411, 0, 441)
  626. Tab.ScrollBarThickness = 2
  627. Tab.Visible = (library.tabinfo.button == nil)
  628.  
  629. TabL.Name = "TabL"
  630. TabL.Parent = Tab
  631. TabL.HorizontalAlignment = Enum.HorizontalAlignment.Center
  632. TabL.SortOrder = Enum.SortOrder.LayoutOrder
  633. TabL.Padding = UDim.new(0, 8)
  634.  
  635. TabP.Name = "TabP"
  636. TabP.Parent = Tab
  637. TabP.PaddingTop = UDim.new(0, 8)
  638.  
  639. if library.tabinfo.button == nil then
  640. library.tabinfo.button = TabOpen
  641. library.tabinfo.tab = Tab
  642. end
  643.  
  644. TabOpen.MouseButton1Click:Connect(function()
  645. spawn(function()
  646. utils:Ripple(TabOpen)
  647. end)
  648. utils:ChangeTab({TabOpen, Tab})
  649. end)
  650.  
  651. TabL:GetPropertyChangedSignal('AbsoluteContentSize'):Connect(function()
  652. Tab.CanvasSize = UDim2.new(0, 0, 0, TabL.AbsoluteContentSize.Y + 16)
  653. end)
  654.  
  655. local sections = {}
  656.  
  657. function sections:Section(name)
  658. local Section = Instance.new("Frame")
  659. local SectionC = Instance.new("UICorner")
  660. local SectionP = Instance.new("UIPadding")
  661. local SectionL = Instance.new("UIListLayout")
  662. local SectionTitle = Instance.new("TextLabel")
  663.  
  664. Section.Name = "Section"
  665. Section.Parent = Tab
  666. Section.BackgroundColor3 = theme.secondary
  667. Section.BorderSizePixel = 0
  668. Section.Position = UDim2.new(0.0231143553, 0, -0.981859386, 0)
  669. Section.Size = UDim2.new(0, 392, 0, 568)
  670.  
  671. SectionC.CornerRadius = UDim.new(0, 4)
  672. SectionC.Name = "SectionC"
  673. SectionC.Parent = Section
  674.  
  675. SectionP.Name = "SectionP"
  676. SectionP.Parent = Section
  677. SectionP.PaddingTop = UDim.new(0, 8)
  678.  
  679. SectionL.Name = "SectionL"
  680. SectionL.Parent = Section
  681. SectionL.HorizontalAlignment = Enum.HorizontalAlignment.Center
  682. SectionL.SortOrder = Enum.SortOrder.LayoutOrder
  683. SectionL.Padding = UDim.new(0, 8)
  684.  
  685. SectionTitle.Name = "SectionTitle"
  686. SectionTitle.Parent = Section
  687. SectionTitle.BackgroundColor3 = theme.accent
  688. SectionTitle.BackgroundTransparency = 1.000
  689. SectionTitle.BorderSizePixel = 0
  690. SectionTitle.Position = UDim2.new(0.00255102036, 0, 0.0355555564, 0)
  691. SectionTitle.Size = UDim2.new(0, 390, 0, 18)
  692. SectionTitle.Font = Enum.Font.GothamSemibold
  693. SectionTitle.Text = (" %s"):format(name)
  694. SectionTitle.TextColor3 = theme.accent
  695. SectionTitle.TextSize = 14.000
  696. SectionTitle.TextXAlignment = Enum.TextXAlignment.Left
  697.  
  698. SectionL:GetPropertyChangedSignal('AbsoluteContentSize'):Connect(function()
  699. Section.Size = UDim2.new(0, 392, 0, SectionL.AbsoluteContentSize.Y + 13)
  700. end)
  701.  
  702. local modules = {}
  703.  
  704. function modules:Button(text, callback)
  705. assert(text, 'text is a required arg')
  706. local callback = callback or function() end
  707.  
  708. local Btn = Instance.new("TextButton")
  709. local BtnC = Instance.new("UICorner")
  710.  
  711. Btn.Name = "Btn"
  712. Btn.Parent = Section
  713. Btn.BackgroundColor3 = theme.main
  714. Btn.BorderSizePixel = 0
  715. Btn.Position = UDim2.new(-0.00382653065, 0, 0.568888903, 0)
  716. Btn.Size = UDim2.new(0, 382, 0, 42)
  717. Btn.AutoButtonColor = false
  718. Btn.Font = Enum.Font.GothamSemibold
  719. Btn.Text = (" %s"):format(text)
  720. Btn.TextColor3 = theme.accent
  721. Btn.TextSize = 14.000
  722. Btn.TextXAlignment = Enum.TextXAlignment.Left
  723.  
  724. BtnC.CornerRadius = UDim.new(0, 4)
  725. BtnC.Name = "BtnC"
  726. BtnC.Parent = Btn
  727.  
  728. Btn.MouseButton1Click:Connect(function()
  729. spawn(function()
  730. utils:Ripple(Btn)
  731. end)
  732. spawn(callback)
  733. end)
  734. end
  735.  
  736. function modules:Label(text)
  737. local Label = Instance.new("TextLabel")
  738. local LabelC = Instance.new("UICorner")
  739.  
  740. Label.Name = "Label"
  741. Label.Parent = Section
  742. Label.BackgroundColor3 = theme.main
  743. Label.BackgroundTransparency = 0
  744. Label.BorderSizePixel = 0
  745. Label.Position = UDim2.new(0.00255102036, 0, 0.0355555564, 0)
  746. Label.Size = UDim2.new(0, 382, 0, 26)
  747. Label.Font = Enum.Font.GothamSemibold
  748. Label.TextColor3 = theme.accent
  749. Label.TextSize = 14.000
  750. Label.Text = text
  751.  
  752. LabelC.Name = "LabelC"
  753. LabelC.Parent = Label
  754. LabelC.CornerRadius = UDim.new(0, 4)
  755. return Label
  756. end
  757.  
  758. function modules:Toggle(text, flag, enabled, callback)
  759. assert(text, 'text is a required arg')
  760. assert(flag, 'flag is a required arg')
  761.  
  762. local enabled = enabled or false
  763. local callback = callback or function() end
  764.  
  765. local Toggle = Instance.new("TextButton")
  766. local ToggleC = Instance.new("UICorner")
  767. local ToggleDisplay = Instance.new("Frame")
  768. local ToggleDisplayC = Instance.new("UICorner")
  769. local ToggleDisplayFill = Instance.new("Frame")
  770. local ToggleDisplayFillC = Instance.new("UICorner")
  771.  
  772. Toggle.Name = "Toggle"
  773. Toggle.Parent = Section
  774. Toggle.BackgroundColor3 = theme.main
  775. Toggle.BorderSizePixel = 0
  776. Toggle.Position = UDim2.new(-0.00382653065, 0, 0.346666664, 0)
  777. Toggle.Size = UDim2.new(0, 382, 0, 42)
  778. Toggle.AutoButtonColor = false
  779. Toggle.Font = Enum.Font.GothamSemibold
  780. Toggle.Text = (" %s"):format(text)
  781. Toggle.TextColor3 = theme.accent
  782. Toggle.TextSize = 14.000
  783. Toggle.TextXAlignment = Enum.TextXAlignment.Left
  784.  
  785. ToggleC.CornerRadius = UDim.new(0, 4)
  786. ToggleC.Name = "ToggleC"
  787. ToggleC.Parent = Toggle
  788.  
  789. ToggleDisplay.Name = "ToggleDisplay"
  790. ToggleDisplay.Parent = Toggle
  791. ToggleDisplay.BackgroundColor3 = theme.secondary
  792. ToggleDisplay.BorderSizePixel = 0
  793. ToggleDisplay.Position = UDim2.new(0.846311867, 0, 0.190476194, 0)
  794. ToggleDisplay.Size = UDim2.new(0, 45, 0, 26)
  795.  
  796. ToggleDisplayC.CornerRadius = UDim.new(0, 4)
  797. ToggleDisplayC.Name = "ToggleDisplayC"
  798. ToggleDisplayC.Parent = ToggleDisplay
  799.  
  800. ToggleDisplayFill.Name = "ToggleDisplayFill"
  801. ToggleDisplayFill.Parent = ToggleDisplay
  802. ToggleDisplayFill.AnchorPoint = Vector2.new(0, 0.5)
  803. ToggleDisplayFill.BackgroundColor3 = theme.main
  804. ToggleDisplayFill.BorderSizePixel = 0
  805. ToggleDisplayFill.Position = UDim2.new(0, 3, 0.5, 0)
  806. ToggleDisplayFill.Size = UDim2.new(0, 24, 0, 20)
  807.  
  808. ToggleDisplayFillC.CornerRadius = UDim.new(0, 4)
  809. ToggleDisplayFillC.Name = "ToggleDisplayFillC"
  810. ToggleDisplayFillC.Parent = ToggleDisplayFill
  811.  
  812. library.flags[flag] = false
  813. library.funcstorage[flag] = callback
  814. library.objstorage[flag] = Toggle
  815.  
  816. if enabled ~= false then
  817. library:UpdateToggle(flag, true)
  818. end
  819.  
  820. ToggleDisplay.InputBegan:Connect(function(inp)
  821. if inp.UserInputType == Enum.UserInputType.MouseButton1 then
  822. library:UpdateToggle(flag)
  823. end
  824. end)
  825. end
  826.  
  827. function modules:Textbox(text, flag, default, callback)
  828. assert(text, 'text is a required arg')
  829. assert(flag, 'flag is a required arg')
  830.  
  831. local default = default or ''
  832. local callback = callback or function() end
  833.  
  834. library.flags[flag] = default
  835.  
  836. local Textbox = Instance.new("TextButton")
  837. local TextboxC = Instance.new("UICorner")
  838. local TextboxValHolder = Instance.new("Frame")
  839. local TextboxValHolderL = Instance.new("UIListLayout")
  840. local TextInp = Instance.new("TextBox")
  841. local TextInpC = Instance.new("UICorner")
  842.  
  843. Textbox.Name = "Textbox"
  844. Textbox.Parent = Section
  845. Textbox.BackgroundColor3 = theme.main
  846. Textbox.BorderSizePixel = 0
  847. Textbox.Position = UDim2.new(-0.0382653065, 0, 0.903660059, 0)
  848. Textbox.Size = UDim2.new(0, 382, 0, 42)
  849. Textbox.AutoButtonColor = false
  850. Textbox.Font = Enum.Font.GothamSemibold
  851. Textbox.Text = (" %s"):format(text)
  852. Textbox.TextColor3 = theme.accent
  853. Textbox.TextSize = 14.000
  854. Textbox.TextXAlignment = Enum.TextXAlignment.Left
  855.  
  856. TextboxC.CornerRadius = UDim.new(0, 4)
  857. TextboxC.Name = "TextboxC"
  858. TextboxC.Parent = Textbox
  859.  
  860. TextboxValHolder.Name = "TextboxValHolder"
  861. TextboxValHolder.Parent = Textbox
  862. TextboxValHolder.BackgroundColor3 = theme.accent
  863. TextboxValHolder.BackgroundTransparency = 1.000
  864. TextboxValHolder.BorderSizePixel = 0
  865. TextboxValHolder.Position = UDim2.new(0.746835411, 0, 0, 0)
  866. TextboxValHolder.Size = UDim2.new(0, 84, 0, 42)
  867.  
  868. TextboxValHolderL.Name = "TextboxValHolderL"
  869. TextboxValHolderL.Parent = TextboxValHolder
  870. TextboxValHolderL.FillDirection = Enum.FillDirection.Horizontal
  871. TextboxValHolderL.HorizontalAlignment = Enum.HorizontalAlignment.Right
  872. TextboxValHolderL.SortOrder = Enum.SortOrder.LayoutOrder
  873. TextboxValHolderL.VerticalAlignment = Enum.VerticalAlignment.Center
  874.  
  875. TextInp.Name = "TextInp"
  876. TextInp.Parent = TextboxValHolder
  877. TextInp.BackgroundColor3 = theme.secondary
  878. TextInp.BorderSizePixel = 0
  879. TextInp.Position = UDim2.new(-0.190476194, 0, 0.190476194, 0)
  880. TextInp.Size = UDim2.new(0, 100, 0, 26)
  881. TextInp.Font = Enum.Font.Gotham
  882. TextInp.Text = default
  883. TextInp.TextColor3 = theme.accent
  884. TextInp.TextSize = 14.000
  885.  
  886. TextInp.Size = UDim2.new(0, TextInp.TextBounds.X + 14, 0, 26)
  887.  
  888. TextInpC.CornerRadius = UDim.new(0, 4)
  889. TextInpC.Name = "TextInpC"
  890. TextInpC.Parent = TextInp
  891.  
  892. TextInp.FocusLost:Connect(function()
  893. if TextInp.Text == "" then
  894. TextInp.Text = library.flags[flag]
  895. end
  896. library.flags[flag] = TextInp.Text
  897. callback(TextInp.Text)
  898. end)
  899.  
  900. TextInp:GetPropertyChangedSignal('TextBounds'):Connect(function()
  901. utils:Tween(TextInp, {0.1, 'Linear', 'InOut'}, {
  902. Size = UDim2.new(0, TextInp.TextBounds.X + 14, 0, 26)
  903. })
  904. end)
  905. end
  906.  
  907. function modules:Slider(text, flag, default, min, max, callback)
  908. assert(text, 'text is a required arg')
  909. assert(flag, 'flag is a required arg')
  910. assert(default, 'default is a required arg')
  911. assert(min, 'min is a required arg')
  912. assert(max, 'min is a required arg')
  913.  
  914. local value = default or min
  915. library.flags[flag] = value
  916.  
  917. local callback = callback or function() end
  918.  
  919. local Slider = Instance.new("TextButton")
  920. local SliderC = Instance.new("UICorner")
  921. local SliderText = Instance.new("TextLabel")
  922. local SliderBar = Instance.new("Frame")
  923. local SliderBarC = Instance.new("UICorner")
  924. local SliderFill = Instance.new("Frame")
  925. local SliderFillC = Instance.new("UICorner")
  926. local SliderValHolder = Instance.new("Frame")
  927. local SliderValHolderL = Instance.new("UIListLayout")
  928. local SliderVal = Instance.new("TextBox")
  929. local SliderValC = Instance.new("UICorner")
  930.  
  931. Slider.Name = "Slider"
  932. Slider.Parent = Section
  933. Slider.BackgroundColor3 = theme.main
  934. Slider.BorderSizePixel = 0
  935. Slider.Position = UDim2.new(-0.00382653065, 0, 0.0355555564, 0)
  936. Slider.Size = UDim2.new(0, 382, 0, 62)
  937. Slider.AutoButtonColor = false
  938. Slider.Font = Enum.Font.GothamSemibold
  939. Slider.Text = ""
  940. Slider.TextColor3 = theme.accent
  941. Slider.TextSize = 14.000
  942. Slider.TextXAlignment = Enum.TextXAlignment.Left
  943.  
  944. library.objstorage[flag] = Slider
  945. library.funcstorage[flag] = callback
  946.  
  947. SliderC.CornerRadius = UDim.new(0, 4)
  948. SliderC.Name = "SliderC"
  949. SliderC.Parent = Slider
  950.  
  951. SliderText.Name = "SliderText"
  952. SliderText.Parent = Slider
  953. SliderText.BackgroundColor3 = theme.accent
  954. SliderText.BackgroundTransparency = 1.000
  955. SliderText.BorderSizePixel = 0
  956. SliderText.Size = UDim2.new(0, 200, 0, 42)
  957. SliderText.Font = Enum.Font.GothamSemibold
  958. SliderText.Text = (" %s"):format(text)
  959. SliderText.TextColor3 = theme.accent
  960. SliderText.TextSize = 14.000
  961. SliderText.TextXAlignment = Enum.TextXAlignment.Left
  962.  
  963. SliderBar.Name = "SliderBar"
  964. SliderBar.Parent = Slider
  965. SliderBar.BackgroundColor3 = theme.secondary
  966. SliderBar.BorderSizePixel = 0
  967. SliderBar.Position = UDim2.new(0, 9, 0, 42)
  968. SliderBar.Size = UDim2.new(0, 363, 0, 10)
  969.  
  970. SliderBarC.CornerRadius = UDim.new(0, 4)
  971. SliderBarC.Name = "SliderBarC"
  972. SliderBarC.Parent = SliderBar
  973.  
  974. SliderFill.Name = "SliderFill"
  975. SliderFill.Parent = SliderBar
  976. SliderFill.BackgroundColor3 = theme.accent
  977. SliderFill.BorderSizePixel = 0
  978. SliderFill.Size = UDim2.new(0, 0, 0, 10)
  979.  
  980. SliderFillC.CornerRadius = UDim.new(0, 4)
  981. SliderFillC.Name = "SliderFillC"
  982. SliderFillC.Parent = SliderFill
  983.  
  984. SliderValHolder.Name = "SliderValHolder"
  985. SliderValHolder.Parent = Slider
  986. SliderValHolder.BackgroundColor3 = theme.accent
  987. SliderValHolder.BackgroundTransparency = 1.000
  988. SliderValHolder.BorderSizePixel = 0
  989. SliderValHolder.Position = UDim2.new(0.746835411, 0, 0, 0)
  990. SliderValHolder.Size = UDim2.new(0, 84, 0, 42)
  991.  
  992. SliderValHolderL.Name = "SliderValHolderL"
  993. SliderValHolderL.Parent = SliderValHolder
  994. SliderValHolderL.FillDirection = Enum.FillDirection.Horizontal
  995. SliderValHolderL.HorizontalAlignment = Enum.HorizontalAlignment.Right
  996. SliderValHolderL.SortOrder = Enum.SortOrder.LayoutOrder
  997. SliderValHolderL.VerticalAlignment = Enum.VerticalAlignment.Center
  998.  
  999. SliderVal.Name = "SliderVal"
  1000. SliderVal.Parent = SliderValHolder
  1001. SliderVal.BackgroundColor3 = theme.secondary
  1002. SliderVal.BorderSizePixel = 0
  1003. SliderVal.Position = UDim2.new(0.452380955, 0, 0.142857149, 0)
  1004. SliderVal.Size = UDim2.new(0, 46, 0, 26)
  1005. SliderVal.Font = Enum.Font.Gotham
  1006. SliderVal.Text = value
  1007. SliderVal.TextColor3 = theme.accent
  1008. SliderVal.TextSize = 14.000
  1009.  
  1010. SliderValC.CornerRadius = UDim.new(0, 4)
  1011. SliderValC.Name = "SliderValC"
  1012. SliderValC.Parent = SliderVal
  1013.  
  1014. SliderVal.Size = UDim2.new(0, SliderVal.TextBounds.X + 14, 0, 26)
  1015.  
  1016. SliderVal:GetPropertyChangedSignal('TextBounds'):Connect(function()
  1017. utils:Tween(SliderVal, {0.1, 'Linear', 'InOut'}, {
  1018. Size = UDim2.new(0, SliderVal.TextBounds.X + 14, 0, 26)
  1019. })
  1020. end)
  1021.  
  1022. library:UpdateSlider(flag, value, min, max)
  1023. local dragging = false
  1024.  
  1025. SliderBar.InputBegan:Connect(function(input)
  1026. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1027. library:UpdateSlider(flag, nil, min, max)
  1028. dragging = true
  1029. end
  1030. end)
  1031.  
  1032. SliderBar.InputEnded:Connect(function(input)
  1033. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1034. dragging = false
  1035. end
  1036. end)
  1037.  
  1038. services.UserInputService.InputChanged:Connect(function(input)
  1039. if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  1040. library:UpdateSlider(flag, nil, min, max)
  1041. end
  1042. end)
  1043.  
  1044. local boxFocused = false
  1045. local allowed = {
  1046. [""] = true,
  1047. ["-"] = true
  1048. }
  1049.  
  1050. SliderVal.Focused:Connect(function()
  1051. boxFocused = true
  1052. end)
  1053.  
  1054. SliderVal.FocusLost:Connect(function()
  1055. boxFocused = false
  1056. if not tonumber(SliderVal.Text) then
  1057. library:UpdateSlider(flag, default or min, min, max)
  1058. end
  1059. end)
  1060.  
  1061. SliderVal:GetPropertyChangedSignal('Text'):Connect(function()
  1062. if not boxFocused then return end
  1063. SliderVal.Text = SliderVal.Text:gsub('%D+', '')
  1064. local text = SliderVal.Text
  1065.  
  1066. if not tonumber(text) then
  1067. SliderVal.Text = SliderVal.Text:gsub('%D+', '')
  1068. elseif not allowed[text] then
  1069. if tonumber(text) > max then
  1070. text = max
  1071. SliderVal.Text = tostring(max)
  1072. end
  1073. library:UpdateSlider(flag, tonumber(text) or value, min, max)
  1074. end
  1075. end)
  1076. end
  1077.  
  1078. function modules:Keybind(text, flag, default, callback)
  1079. assert(text, 'text is a required arg')
  1080. assert(flag, 'flag is a required arg')
  1081. assert(default, 'default is a required arg')
  1082.  
  1083. local callback = callback or function() end
  1084.  
  1085. local banned = {
  1086. Return = true;
  1087. Space = true;
  1088. Tab = true;
  1089. Unknown = true;
  1090. }
  1091.  
  1092. local shortNames = {
  1093. RightControl = 'Right Ctrl',
  1094. LeftControl = 'Left Ctrl',
  1095. LeftShift = 'Left Shift',
  1096. RightShift = 'Right Shift',
  1097. Semicolon = ";",
  1098. Quote = '"',
  1099. LeftBracket = '[',
  1100. RightBracket = ']',
  1101. Equals = '=',
  1102. Minus = '-',
  1103. RightAlt = 'Right Alt',
  1104. LeftAlt = 'Left Alt'
  1105. }
  1106.  
  1107. local allowed = {
  1108. MouseButton1 = false,
  1109. MouseButton2 = false
  1110. }
  1111.  
  1112. local nm = (default and (shortNames[default.Name] or default.Name) or "None")
  1113. library.flags[flag] = default or "None"
  1114.  
  1115. local Keybind = Instance.new("TextButton")
  1116. local KeybindC = Instance.new("UICorner")
  1117. local KeybindHolder = Instance.new("Frame")
  1118. local KeybindHolderL = Instance.new("UIListLayout")
  1119. local KeybindVal = Instance.new("TextButton")
  1120. local KeybindValC = Instance.new("UICorner")
  1121.  
  1122. Keybind.Name = "Keybind"
  1123. Keybind.Parent = Section
  1124. Keybind.BackgroundColor3 = theme.main
  1125. Keybind.BorderSizePixel = 0
  1126. Keybind.Position = UDim2.new(-0.00382653065, 0, 0.346666664, 0)
  1127. Keybind.Size = UDim2.new(0, 382, 0, 42)
  1128. Keybind.AutoButtonColor = false
  1129. Keybind.Font = Enum.Font.GothamSemibold
  1130. Keybind.Text = (" %s"):format(text)
  1131. Keybind.TextColor3 = theme.accent
  1132. Keybind.TextSize = 14.000
  1133. Keybind.TextXAlignment = Enum.TextXAlignment.Left
  1134.  
  1135. KeybindC.CornerRadius = UDim.new(0, 4)
  1136. KeybindC.Name = "KeybindC"
  1137. KeybindC.Parent = Keybind
  1138.  
  1139. KeybindHolder.Name = "SliderValHolder"
  1140. KeybindHolder.Parent = Keybind
  1141. KeybindHolder.BackgroundColor3 = theme.accent
  1142. KeybindHolder.BackgroundTransparency = 1.000
  1143. KeybindHolder.BorderSizePixel = 0
  1144. KeybindHolder.Position = UDim2.new(0.746835411, 0, 0, 0)
  1145. KeybindHolder.Size = UDim2.new(0, 84, 0, 42)
  1146.  
  1147. KeybindHolderL.Name = "SliderValHolderL"
  1148. KeybindHolderL.Parent = KeybindHolder
  1149. KeybindHolderL.FillDirection = Enum.FillDirection.Horizontal
  1150. KeybindHolderL.HorizontalAlignment = Enum.HorizontalAlignment.Right
  1151. KeybindHolderL.SortOrder = Enum.SortOrder.LayoutOrder
  1152. KeybindHolderL.VerticalAlignment = Enum.VerticalAlignment.Center
  1153.  
  1154. KeybindVal.Parent = KeybindHolder
  1155. KeybindVal.BackgroundColor3 = theme.secondary
  1156. KeybindVal.BorderSizePixel = 0
  1157. KeybindVal.Position = UDim2.new(0.357142866, 0, 0.190476194, 0)
  1158. KeybindVal.Size = UDim2.new(0, 0, 0, 26)
  1159. KeybindVal.AutoButtonColor = false
  1160. KeybindVal.Font = Enum.Font.Gotham
  1161. KeybindVal.Text = nm
  1162. KeybindVal.TextColor3 = theme.accent
  1163. KeybindVal.TextSize = 14.000
  1164.  
  1165. KeybindValC.CornerRadius = UDim.new(0, 4)
  1166. KeybindValC.Name = "SliderValC"
  1167. KeybindValC.Parent = Bind
  1168.  
  1169. KeybindVal.Size = UDim2.new(0, KeybindVal.TextBounds.X + 14, 0, 26)
  1170.  
  1171. KeybindVal:GetPropertyChangedSignal('TextBounds'):Connect(function()
  1172. utils:Tween(KeybindVal, {0.1, 'Linear', 'InOut'}, {
  1173. Size = UDim2.new(0, KeybindVal.TextBounds.X + 14, 0, 26)
  1174. })
  1175. end)
  1176.  
  1177. KeybindVal.MouseButton1Click:Connect(function()
  1178. library.binding = true
  1179. KeybindVal.Text = "..."
  1180. local a, b = services.UserInputService.InputBegan:wait()
  1181. local name = tostring(a.KeyCode.Name)
  1182. local typeName = tostring(a.UserInputType.Name)
  1183. if (a.UserInputType ~= Enum.UserInputType.Keyboard and (allowed[a.UserInputType.Name]) and (not data.KbOnly)) or (a.KeyCode and (not banned[a.KeyCode.Name])) then
  1184. local name = (a.UserInputType ~= Enum.UserInputType.Keyboard and a.UserInputType.Name or a.KeyCode.Name)
  1185. library.flags[flag] = (a)
  1186. KeybindVal.Text = shortNames[name] or name
  1187. else
  1188. if (library.flags[flag]) then
  1189. if (not pcall(function()
  1190. return library.flags[flag].UserInputType
  1191. end)) then
  1192. local name = tostring(library.flags[flag])
  1193. KeybindVal.Text = shortNames[name] or name
  1194. else
  1195. local name = (library.flags[flag].UserInputType ~= Enum.UserInputType.Keyboard and library.flags[flag].UserInputType.Name or library.flags[flag].KeyCode.Name)
  1196. KeybindVal.Text = shortNames[name] or name
  1197. end
  1198. end
  1199. end
  1200. wait(0.1)
  1201. library.binding = false
  1202. end)
  1203. if library.flags[flag] then
  1204. KeybindVal.Text = shortNames[tostring(library.flags[flag].Name)] or tostring(library.flags[flag].Name)
  1205. end
  1206. library.binds[flag] = {
  1207. location = library.flags,
  1208. callback = function()
  1209. callback()
  1210. end
  1211. }
  1212. end
  1213.  
  1214. function modules:Dropdown(text, flag, options, callback)
  1215. assert(text, 'text is a required arg')
  1216. assert(flag, 'flag is a required arg')
  1217. assert(options, 'options is a required arg')
  1218.  
  1219. if type(options) ~= 'table' then
  1220. options = {'No Options Found'}
  1221. end
  1222. if #options < 1 then
  1223. options = {'No Options Found'}
  1224. end
  1225.  
  1226. local optionStorage = {}
  1227. local callback = callback or function() end
  1228. library.flags[flag] = options[1]
  1229.  
  1230. local DropdownTop = Instance.new("TextButton")
  1231. local DropdownTopC = Instance.new("UICorner")
  1232. local Back = Instance.new("ImageLabel")
  1233. local DropdownBottom = Instance.new("TextButton")
  1234. local DropdownBottomC = Instance.new("UICorner")
  1235. local DropdownObjects = Instance.new("ScrollingFrame")
  1236. local DropdownObjectsList = Instance.new("UIListLayout")
  1237. local DropdownObjectsPadding = Instance.new("UIPadding")
  1238.  
  1239. DropdownTop.Name = "DropdownTop"
  1240. DropdownTop.Parent = Section
  1241. DropdownTop.BackgroundColor3 = theme.main
  1242. DropdownTop.BorderSizePixel = 0
  1243. DropdownTop.Position = UDim2.new(-0.00382653065, 0, 0.346666664, 0)
  1244. DropdownTop.Size = UDim2.new(0, 382, 0, 42)
  1245. DropdownTop.AutoButtonColor = false
  1246. DropdownTop.Font = Enum.Font.GothamSemibold
  1247. DropdownTop.Text = (" %s"):format(library.flags[flag])
  1248. DropdownTop.TextColor3 = theme.accent
  1249. DropdownTop.TextSize = 14.000
  1250. DropdownTop.TextXAlignment = Enum.TextXAlignment.Left
  1251.  
  1252. DropdownTopC.CornerRadius = UDim.new(0, 4)
  1253. DropdownTopC.Name = "DropdownTopC"
  1254. DropdownTopC.Parent = DropdownTop
  1255.  
  1256. Back.Name = "Back"
  1257. Back.Parent = DropdownTop
  1258. Back.BackgroundTransparency = 1.000
  1259. Back.Position = UDim2.new(0.887434542, 0, 0.142857149, 0)
  1260. Back.Rotation = -90.000
  1261. Back.Size = UDim2.new(0, 30, 0, 30)
  1262. Back.Image = "rbxassetid://4370337241"
  1263. Back.ScaleType = Enum.ScaleType.Fit
  1264. Back.ImageColor3 = theme.accent
  1265.  
  1266. DropdownBottom.Name = "DropdownBottom"
  1267. DropdownBottom.Parent = Section
  1268. DropdownBottom.BackgroundColor3 = theme.main
  1269. DropdownBottom.BorderSizePixel = 0
  1270. DropdownBottom.Position = UDim2.new(0.0127551025, 0, 0.616632879, 0)
  1271. DropdownBottom.Size = UDim2.new(0, 382, 0, 0)
  1272. DropdownBottom.AutoButtonColor = false
  1273. DropdownBottom.Font = Enum.Font.GothamSemibold
  1274. DropdownBottom.Text = ""
  1275. DropdownBottom.TextColor3 = theme.accent
  1276. DropdownBottom.TextSize = 14.000
  1277. DropdownBottom.TextXAlignment = Enum.TextXAlignment.Left
  1278. DropdownBottom.Visible = false
  1279.  
  1280. DropdownBottomC.CornerRadius = UDim.new(0, 4)
  1281. DropdownBottomC.Name = "DropdownBottomC"
  1282. DropdownBottomC.Parent = DropdownBottom
  1283.  
  1284. DropdownObjects.Name = "DropdownObjects"
  1285. DropdownObjects.Parent = DropdownBottom
  1286. DropdownObjects.Active = true
  1287. DropdownObjects.BackgroundColor3 = theme.accent
  1288. DropdownObjects.BackgroundTransparency = 1.000
  1289. DropdownObjects.BorderSizePixel = 0
  1290. DropdownObjects.Size = UDim2.new(1, 0, 1, 0)
  1291. DropdownObjects.ScrollBarThickness = 2
  1292.  
  1293. DropdownObjectsList.Name = "DropdownObjectsList"
  1294. DropdownObjectsList.Parent = DropdownObjects
  1295. DropdownObjectsList.HorizontalAlignment = Enum.HorizontalAlignment.Center
  1296. DropdownObjectsList.SortOrder = Enum.SortOrder.LayoutOrder
  1297. DropdownObjectsList.Padding = UDim.new(0, 4)
  1298.  
  1299. DropdownObjectsPadding.Name = "DropdownObjectsPadding"
  1300. DropdownObjectsPadding.Parent = DropdownObjects
  1301. DropdownObjectsPadding.PaddingTop = UDim.new(0, 4)
  1302.  
  1303. DropdownObjectsList:GetPropertyChangedSignal('AbsoluteContentSize'):Connect(function()
  1304. DropdownObjects.CanvasSize = UDim2.new(0, 0, 0, DropdownObjectsList.AbsoluteContentSize.Y + 7)
  1305. end)
  1306.  
  1307. local isOpen = false
  1308. local function toggleDropdown()
  1309. isOpen = not isOpen
  1310. if not isOpen then
  1311. spawn(function()
  1312. wait(.3)
  1313. DropdownBottom.Visible = false
  1314. end)
  1315. else
  1316. DropdownBottom.Visible = true
  1317. end
  1318. local openTo = 183
  1319. if DropdownObjectsList.AbsoluteContentSize.Y < openTo then
  1320. openTo = DropdownObjectsList.AbsoluteContentSize.Y
  1321. end
  1322. DropdownTop.Text = (' %s'):format(isOpen and text or library.flags[flag])
  1323. utils:Tween(Back, {0.3, 'Sine', 'InOut'}, {
  1324. Rotation = (isOpen and 90) or -90
  1325. })
  1326. utils:Tween(DropdownBottom, {0.3, 'Sine', 'InOut'}, {
  1327. Size = UDim2.new(0, 382, 0, isOpen and openTo + 3 or 0)
  1328. })
  1329. end
  1330.  
  1331. DropdownObjectsList:GetPropertyChangedSignal('AbsoluteContentSize'):Connect(function()
  1332. if not isOpen then return end
  1333. local openTo = 183
  1334. if DropdownObjectsList.AbsoluteContentSize.Y < openTo then
  1335. openTo = DropdownObjectsList.AbsoluteContentSize.Y
  1336. end
  1337. DropdownTop.Text = (' %s'):format(isOpen and text or library.flags[flag])
  1338. utils:Tween(Back, {0.3, 'Sine', 'InOut'}, {
  1339. Rotation = (isOpen and 90) or -90
  1340. })
  1341. utils:Tween(DropdownBottom, {0.3, 'Sine', 'InOut'}, {
  1342. Size = UDim2.new(0, 382, 0, isOpen and openTo + 3 or 0)
  1343. })
  1344. end)
  1345.  
  1346. Back.InputEnded:Connect(function(inp)
  1347. if inp.UserInputType == Enum.UserInputType.MouseButton1 then
  1348. toggleDropdown()
  1349. end
  1350. end)
  1351.  
  1352. local cnt = 0
  1353. local selectedOption = nil
  1354. for _, v in pairs(options) do
  1355. cnt = cnt + 1
  1356. local Option = Instance.new("TextButton")
  1357. table.insert(optionStorage, Option)
  1358. if cnt == 1 then selectedOption = Option end
  1359.  
  1360. Option.Name = "Option"
  1361. Option.Parent = DropdownObjects
  1362. Option.BackgroundColor3 = theme.secondary
  1363. Option.BackgroundTransparency = 1.000
  1364. Option.BorderSizePixel = 0
  1365. Option.Position = UDim2.new(0.285340309, 0, 0.0218579229, 0)
  1366. Option.Size = UDim2.new(0, 372, 0, 26)
  1367. Option.AutoButtonColor = false
  1368. Option.Font = Enum.Font.GothamSemibold
  1369. Option.Text = v
  1370. Option.TextColor3 = (Option == selectedOption and theme.accent) or theme.accent2
  1371. Option.TextSize = 14.000
  1372.  
  1373. Option.MouseButton1Click:Connect(function()
  1374. if Option ~= selectedOption then
  1375. selectedOption.TextColor3 = theme.accent2
  1376. Option.TextColor3 = theme.accent
  1377. selectedOption = Option
  1378. end
  1379. library.flags[flag] = v
  1380. spawn(toggleDropdown)
  1381. spawn(function()
  1382. callback(v)
  1383. end)
  1384. end)
  1385. end
  1386. local eee = {}
  1387. function eee:refresh(new)
  1388. for _, v in pairs(optionStorage) do
  1389. v:Destroy()
  1390. end
  1391. optionStorage = {}
  1392. selectedOption = nil
  1393. cnt = 0
  1394. for _, v in pairs(new) do
  1395. cnt = cnt + 1
  1396. local Option = Instance.new("TextButton")
  1397. table.insert(optionStorage, Option)
  1398. if cnt == 1 then selectedOption = Option end
  1399.  
  1400. Option.Name = "Option"
  1401. Option.Parent = DropdownObjects
  1402. Option.BackgroundColor3 = theme.secondary
  1403. Option.BackgroundTransparency = 1.000
  1404. Option.BorderSizePixel = 0
  1405. Option.Position = UDim2.new(0.285340309, 0, 0.0218579229, 0)
  1406. Option.Size = UDim2.new(0, 372, 0, 26)
  1407. Option.AutoButtonColor = false
  1408. Option.Font = Enum.Font.GothamSemibold
  1409. Option.Text = v
  1410. Option.TextColor3 = (Option == selectedOption and theme.accent) or theme.accent2
  1411. Option.TextSize = 14.000
  1412.  
  1413. Option.MouseButton1Click:Connect(function()
  1414. if Option ~= selectedOption then
  1415. selectedOption.TextColor3 = theme.accent2
  1416. Option.TextColor3 = theme.accent
  1417. selectedOption = Option
  1418. end
  1419. library.flags[flag] = v
  1420. spawn(toggleDropdown)
  1421. spawn(function()
  1422. callback(v)
  1423. end)
  1424. end)
  1425. end
  1426. end
  1427. return eee
  1428. end
  1429.  
  1430. return modules
  1431. end
  1432. return sections
  1433. end
  1434. return tabs
  1435. end
  1436. local ui = library:Init('Saber Simulator')
  1437.  
  1438. local main = ui:Tab('Main', '9326762253')
  1439. local creds = ui:Tab('Credits', '')
  1440. local misc = ui:Tab('Misc', '')
  1441. local farm = main:Section('Auto Farm')
  1442. local buy = main:Section('Auto Buy')
  1443. local credits = creds:Section('Credits')
  1444. local misce = misc:Section('Misc')
  1445.  
  1446. farm:Toggle('Auto Swing', 'Auto Swing', false, function(state)
  1447. if state then
  1448. getgenv().as = true
  1449. while as do
  1450. game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
  1451. wait()
  1452. end
  1453. else
  1454. getgenv().as = false
  1455. end
  1456. end)
  1457. farm:Toggle('Auto Sell', 'Auto Sell', false, function(state)
  1458. if state then
  1459. getgenv().autosell = true
  1460. while autosell do
  1461. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(539, 184, 152)
  1462. wait()
  1463.  
  1464. game:GetService("ReplicatedStorage").Events.Sell:FireServer()
  1465.  
  1466.  
  1467. wait()
  1468. end
  1469. else
  1470. getgenv().autosell = false
  1471. end
  1472. end)
  1473. farm:Toggle('Boss Farm', 'Boss Farm', false, function(state)
  1474. if state then
  1475. _G.Boss = true
  1476. while wait() do
  1477. if game.Workspace:FindFirstChild("Boss") ~= nil and _G.Boss == true then
  1478. boss = game.Workspace.Boss.PrimaryPart
  1479. else
  1480. boss = nil
  1481. end
  1482. for k,v in next, game:GetService('Players'):GetChildren() do
  1483. pcall(function ()
  1484. oghead = v.Character.PrimaryPart
  1485. for i , v in next, boss.Parent:GetChildren() do
  1486. if v:IsA('Part') or v:IsA('MeshPart') then
  1487. v.CanCollide = false
  1488. end
  1489. end
  1490. if boss ~= nil then
  1491. boss.CFrame = game.Players.LocalPlayer.Character:FindFirstChildOfClass('Tool'):FindFirstChildOfClass('MeshPart').CFrame
  1492. boss.Anchored = true
  1493. end
  1494. if oghead and oghead ~= game.Players.LocalPlayer.Character.PrimaryPart then
  1495. oghead.Anchored = true
  1496. if oghead.Parent:FindFirstChildOfClass('Tool') then
  1497. oghead.Parent:FindFirstChildOfClass('Tool'):Destroy()
  1498. end
  1499. game.ReplicatedStorage.Events.Clicked:FireServer()
  1500. game.Players.LocalPlayer.Character:FindFirstChildOfClass('Tool').RemoteClick:FireServer()
  1501.  
  1502. end
  1503. end)
  1504. end
  1505. end
  1506. else
  1507. _G.Boss = false
  1508. end
  1509. end)
  1510. buy:Toggle('Auto Buy Swords', 'Auto Buy Swords', false, function(state)
  1511. if state then
  1512. getgenv().swords = true
  1513. while swords do
  1514. local args = {
  1515. [1] = "Swords"
  1516. }
  1517.  
  1518. game:GetService("ReplicatedStorage").Events.BuyAll:FireServer(unpack(args))
  1519. wait(1)
  1520. end
  1521. else
  1522. getgenv().swords = false
  1523. end
  1524. end)
  1525. buy:Toggle('Auto Buy DNA', 'Auto Buy DNA', false, function(state)
  1526. if state then
  1527. getgenv().dna = true
  1528. while dna do
  1529. local args = {
  1530. [1] = "Backpacks"
  1531. }
  1532.  
  1533. game:GetService("ReplicatedStorage").Events.BuyAll:FireServer(unpack(args))
  1534.  
  1535. wait(1)
  1536. end
  1537. else
  1538. getgenv().dna = false
  1539. end
  1540. end)
  1541. misce:Button('TP Best Island', function()
  1542. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(779.825562, 449248.938, -405.676758, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1543. end)
  1544.  
  1545.  
  1546. credits:Button('Scripter: kooggy', function()
  1547. setclipboard("kooggy#0112")
  1548. end)
  1549.  
  1550. elseif game.PlaceId == 6677985923 then
  1551. if game.CoreGui:FindFirstChild("Millionaire Empire Tycoon") then
  1552. game.CoreGui["Millionaire Empire Tycoon"]:Destroy()
  1553. end
  1554.  
  1555. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
  1556. local venyx = library.new("Millionaire Empire Tycoon", 5013109572)
  1557. local main = venyx:addPage("Main", 5012544693)
  1558. local autoreb = main:addSection("Auto Rebirth")
  1559. local cashgiver = main:addSection("Cash Giver")
  1560. autoreb:addButton("OP Rebirths On", function()
  1561. getgenv().op = true
  1562. while getgenv().op == true do
  1563. local args = {
  1564. [1] = "Cash",
  1565. [2] = "1000000000000000"
  1566. }
  1567.  
  1568. game:GetService("ReplicatedStorage").Events.CrateClaim:FireServer(unpack(args))
  1569. game:GetService("ReplicatedStorage").rebirthEvent:FireServer()
  1570. wait()
  1571. end
  1572. end)
  1573. autoreb:addButton("OP Rebirths Off", function()
  1574. getgenv().op = false
  1575. print("Clicked")
  1576. end)
  1577. cashgiver:addTextbox("Type Amt Of Cash", "Default", function(txt)
  1578. local args = {
  1579. [1] = "Cash",
  1580. [2] = txt
  1581. }
  1582.  
  1583. game:GetService("ReplicatedStorage").Events.CrateClaim:FireServer(unpack(args))
  1584. end)
  1585. cashgiver:addButton("Give Lots Of Cash", function()
  1586. local args = {
  1587. [1] = "Cash",
  1588. [2] = "1000000000000000"
  1589. }
  1590.  
  1591. game:GetService("ReplicatedStorage").Events.CrateClaim:FireServer(unpack(args))
  1592. end)
  1593.  
  1594. local page = venyx:addPage("Misc", 5012544693)
  1595. local section1= page:addSection("Toggle Keybind")
  1596. section1:addKeybind("UI Toggle Keybind", Enum.KeyCode.One, function()
  1597. print("Activated Keybind")
  1598. venyx:toggle()
  1599. end, function()
  1600. print("Changed Keybind")
  1601. end)
  1602. local section1 = page:addSection("Rejoin")
  1603. section1:addButton("Rejoin Server", function()
  1604. local ts = game:GetService("TeleportService")
  1605.  
  1606. local p = game:GetService("Players").LocalPlayer
  1607.  
  1608.  
  1609.  
  1610. ts:Teleport(game.PlaceId, p)
  1611. end)
  1612. local page = venyx:addPage("Credits", 5012544693)
  1613. local section1 = page:addSection("Scripter")
  1614. section1:addButton("kooggy", function()
  1615. setclipboard("kooggy#0112")
  1616. end)
  1617.  
  1618. elseif game.PlaceId == 5712833750 then
  1619. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  1620. local Window = Library.CreateLib("Animal Simulator", "BloodTheme")
  1621. local Tab = Window:NewTab("Main")
  1622. local Section = Tab:NewSection("Chests")
  1623. Section:NewToggle("Auto Collect Chests", "", function(state)
  1624. if state then
  1625. getgenv().ac = true
  1626. while ac do
  1627. game:GetService("ReplicatedStorage").TreasureEvent:FireServer(workspace.Treasures.Treasure5)
  1628. wait()
  1629. end
  1630. end
  1631. end)
  1632. local Tab = Window:NewTab("XP Farm")
  1633. local Section = Tab:NewSection("XP")
  1634. Section:NewButton("XP Farm", "", function()
  1635. loadstring(game:HttpGet('https://pastebin.com/raw/27T6g9Pf', true))()
  1636. end)
  1637. local Tab = Window:NewTab("Credits")
  1638. local Section = Tab:NewSection("Credits")
  1639. Section:NewButton("scripter: kooggy", "", function()
  1640. setclipboard("kooggy#0012")
  1641. end)
  1642.  
  1643. elseif game.PlaceId == 3527629287 then
  1644. local target--for later
  1645. game.RunService.RenderStepped:Connect(function()
  1646. if game.Players.LocalPlayer:FindFirstChild("__SPAWNED")then--detect if client is alive
  1647. target=nil
  1648. for _,v in pairs(game.Players:GetChildren())do--go through every player and see if they can be hit
  1649. if
  1650. v.Character and--detect if the player has a character
  1651. v.Character.Parent==game.Workspace and--detect if the character is properly in the game
  1652. (
  1653. v.Team~=game.Players.LocalPlayer.Team or--detect if its a enemy
  1654. (
  1655. game:GetService("Workspace")["__VARIABLES"].RoundType.Value=="FFA"and--unless if its ffa then target all players
  1656. v~=game.Players.LocalPlayer and--execpt for me ;)
  1657. math.random(1,10)--to prevent ffa instant ban
  1658. )
  1659. )and
  1660. v.Character:FindFirstChild("Humanoid")and--detect if the enemy has a humanoid
  1661. v:FindFirstChild("__SPAWNED")and--detect if the enemy is actually spawned
  1662. not v.Character:FindFirstChild("ForceField")then--annoying spawn shield
  1663. target=v.Character--target the enemy
  1664. require(game:GetService("ReplicatedStorage").Framework.Modules["2 | Network"]).Fire("New Projectile",1,1,math.floor(game.Workspace.DistributedGameTime))--shoot enemy
  1665. break--to prevent massive lag spikes
  1666. end
  1667. end
  1668. end
  1669. end)
  1670. local namecall
  1671. namecall=hookmetamethod(game,"__namecall",function(a,b,c,d,e,...)
  1672. if tostring(getnamecallmethod())=="FireServer"and tostring(a)=="new projectile"and target~=nil then--hook the new projectile remote
  1673. game.Workspace.__THINGS.__REMOTES["do damage"]:FireServer(--annoying stuff that changes alot
  1674. {
  1675. target.Humanoid,
  1676. b[2],
  1677. 235,
  1678. target.HumanoidRootPart.Position,
  1679. false
  1680. }
  1681. )
  1682. end
  1683. return namecall(a,b,c,d,e,...)
  1684. end)
  1685. game:GetService("StarterGui"):SetCore("SendNotification",{Title="Kill All",Text="Made By: kooggy#0112",Duration=99999})
  1686.  
  1687. elseif game.PlaceId == 1224212277 then
  1688. game:GetService("ReplicatedStorage").RemoteFunction:InvokeServer("SetTeam", "Police")
  1689. wait(.70)
  1690. game:GetService("RunService").RenderStepped:Connect(function()
  1691. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  1692. if v.Name == "Handcuffs" then v.Parent = game:GetService("Players").LocalPlayer.Character
  1693. end
  1694. end
  1695. end)
  1696. elseif game.PlaceId == 659222129 then
  1697. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  1698.  
  1699. local Library =
  1700. Material.Load(
  1701. {
  1702. Title = "Swordburst 2",
  1703. Style = 1,
  1704. SizeX = 400,
  1705. SizeY = 400,
  1706. Theme = "Dark",
  1707. ColorOverrides = {
  1708. MainFrame = Color3.fromRGB(35,35,35)
  1709. }
  1710. }
  1711. )
  1712.  
  1713. -- Variables
  1714.  
  1715. local s =
  1716. setmetatable(
  1717. {},
  1718. {
  1719. __index = function(self, service)
  1720. return game:GetService(service)
  1721. end,
  1722. __newindex = function(self, key)
  1723. self[key] = nil
  1724. end
  1725. }
  1726. )
  1727.  
  1728. local Ser;
  1729.  
  1730. for i, v in next, getreg() do
  1731. if typeof(v) == "table" then
  1732. if rawget(v, "Services") then
  1733. Ser = v.Services
  1734. break
  1735. end
  1736. end
  1737. end
  1738.  
  1739. local key = getupvalue(Ser.Combat.Init, 2)
  1740.  
  1741. local user = s["Players"].LocalPlayer
  1742. local ReplicatedStorage = s["ReplicatedStorage"]
  1743.  
  1744. getgenv().TweenSpeed = 50
  1745. getgenv().Studs = 5000
  1746.  
  1747. -- etc
  1748.  
  1749. local BossNames = {
  1750. "Dire Wolf",
  1751. "Rahjin the Thief King",
  1752. "Borik the BeeKeeper",
  1753. "Gorrock the Grove Protector",
  1754. "Ra'thae the Ice King",
  1755. "Qerach The Forgotten Golem",
  1756. "Irath the Lion",
  1757. "Rotling",
  1758. "Fire Scorpion",
  1759. "Sa'jun the Centurian Chieftain",
  1760. "Frogazoid",
  1761. "Smashroom",
  1762. "Hippogriff",
  1763. "Formaug the Jungle Giant",
  1764. "Gargoyle Reaper",
  1765. "Mortis the Flaming Sear",
  1766. "Polyserpant",
  1767. "Baal",
  1768. "Grim the Overseer",
  1769. "Da",
  1770. "Ra",
  1771. "Ka",
  1772. "Egg Mimic" -- easter event
  1773. }
  1774.  
  1775. -- Functions
  1776.  
  1777. local function Damage(Enemy)
  1778. --if (not getgenv().MultiplyDamage) then
  1779. --ReplicatedStorage.Event:FireServer("Combat", key, {"Attack", nil, "1", Enemy})
  1780. --return
  1781. --end
  1782. -- above coming soon
  1783.  
  1784. ReplicatedStorage.Event:FireServer("Skills", {"UseSkill", "Summon Pistol"})
  1785. ReplicatedStorage.Event:FireServer("Combat", key, {"Attack", "Summon Pistol", "1", Enemy})
  1786. end
  1787.  
  1788. local function UserWalkSpeed(person, speed)
  1789. if person and person.Character then
  1790. if person.Character:FindFirstChildWhichIsA("Humanoid") then
  1791. person.Character:FindFirstChildWhichIsA("Humanoid").WalkSpeed = speed
  1792. end
  1793. end
  1794. end
  1795.  
  1796. local function GoInvisible()
  1797. if(user.Character and user.Character:FindFirstChild("LowerTorso") or user.Character:FindFirstChildWhichIsA("LowerTorso")) then
  1798. user.character.LowerTorso.Root:Destroy()
  1799. end
  1800. end
  1801.  
  1802. local function Nearest()
  1803. local d = getgenv().Studs
  1804. local t = nil
  1805.  
  1806. for i, v in pairs(game.Workspace.Mobs:GetChildren()) do
  1807. if
  1808. (v.PrimaryPart ~= nil and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Nameplate") and
  1809. v.Parent and
  1810. v:FindFirstChild("Entity") and
  1811. v.Entity.Health.Value > 0)
  1812. then
  1813. if getgenv().TargetBosses then
  1814. for _, i in next, BossNames do
  1815. if (i == v.Name) then
  1816. return v
  1817. end
  1818. end
  1819. end
  1820. local Magnitude = (v.PrimaryPart.CFrame.p - Workspace.CurrentCamera.CFrame.p).Magnitude
  1821. if (Magnitude < d and Magnitude > 0) then
  1822. d = Magnitude
  1823. t = v
  1824. end
  1825. end
  1826. end
  1827.  
  1828. return t
  1829. end
  1830.  
  1831.  
  1832. --[[
  1833. soon
  1834.  
  1835. local function NearestPlayer()
  1836. local Root = user and user:FindFirstChild("HumanoidRootPart")
  1837. if not (user or Root) then return end
  1838.  
  1839. local d = getgenv().Studs
  1840. local t = nil
  1841.  
  1842. for i, v in pairs(game.Players:GetChildren()) do
  1843. if (v ~= user and v.Character and v.Character:FindFirstChild("HumanoidRootPart") and v.Character.Humanoid.Health > 0)
  1844. then
  1845. local Magnitude = (user.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).Magnitude
  1846. if (Magnitude < d) then
  1847. d = Magnitude
  1848. t = v
  1849. end
  1850. end
  1851. end
  1852.  
  1853. return t
  1854. end
  1855. --]]
  1856.  
  1857. -- Sections --
  1858.  
  1859. local Main =
  1860. Library.New(
  1861. {
  1862. Title = "Main"
  1863. }
  1864. )
  1865.  
  1866. local Misc =
  1867. Library.New(
  1868. {
  1869. Title = "Misc"
  1870. }
  1871. )
  1872.  
  1873. local Settings =
  1874. Library.New(
  1875. {
  1876. Title = "Settings"
  1877. }
  1878. )
  1879. local credits =
  1880. Library.New(
  1881. {
  1882. Title = "Credits"
  1883. }
  1884. )
  1885.  
  1886. -- Auto --
  1887.  
  1888. local AutoFarm =
  1889. Main.Toggle(
  1890. {
  1891. Text = "AutoFarm",
  1892. Callback = function(Value)
  1893. getgenv().autofarm = Value
  1894. while getgenv().autofarm do
  1895. local Enemy = Nearest()
  1896.  
  1897. if (Enemy ~= nil) then
  1898. tweenService, tweenInfo = s["TweenService"], TweenInfo.new((user.Character.HumanoidRootPart.Position - Enemy.HumanoidRootPart.Position).Magnitude / getgenv().TweenSpeed, Enum.EasingStyle.Linear)
  1899. T = tweenService:Create(user.Character.HumanoidRootPart, tweenInfo, {CFrame = Enemy.PrimaryPart.CFrame * CFrame.new(0, 15, 0)})
  1900. T:Play()
  1901. end
  1902. wait()
  1903. end
  1904. end,
  1905. Enabled = false
  1906. }
  1907. )
  1908.  
  1909. local Killaura =
  1910. Main.Toggle(
  1911. {
  1912. Text = "KillAura",
  1913. Callback = function(Value)
  1914. getgenv().killaura = Value
  1915. while getgenv().killaura and wait() do
  1916. local Enemy = Nearest()
  1917.  
  1918. if (Enemy ~= nil) then
  1919. wait(.3)
  1920. Damage(Enemy.Entity.Parent)
  1921. end
  1922. end
  1923. end,
  1924. Enabled = false
  1925. }
  1926. )
  1927.  
  1928. local TargetBosses =
  1929. Main.Toggle(
  1930. {
  1931. Text = "Prioritize Bosses",
  1932. Callback = function(Value)
  1933. getgenv().TargetBosses = Value
  1934. end,
  1935. Enabled = false
  1936. }
  1937. )
  1938.  
  1939. -- Misc --
  1940.  
  1941. local TweenSpeed =
  1942. Misc.Slider(
  1943. {
  1944. Text = "WalkSpeed",
  1945. Callback = function(Value)
  1946. UserWalkSpeed(user, Value)
  1947. end,
  1948. Min = 16,
  1949. Max = 100,
  1950. Def = 0
  1951. }
  1952. )
  1953.  
  1954. local Invisiblity =
  1955. Misc.Button(
  1956. {
  1957. Text = "Invisibility",
  1958. Callback = function()
  1959. GoInvisible()
  1960. end
  1961. }
  1962. )
  1963.  
  1964. -- Settings --
  1965.  
  1966. local EntityDistance =
  1967. Settings.Slider(
  1968. {
  1969. Text = "Max Entity Distance",
  1970. Callback = function(Value)
  1971. getgenv().Studs = Value
  1972. end,
  1973. Min = 150,
  1974. Max = 10000,
  1975. Def = 5000
  1976. }
  1977. )
  1978.  
  1979. local TweenSpeed =
  1980. Settings.Slider(
  1981. {
  1982. Text = "Tweening Speed",
  1983. Callback = function(Value)
  1984. getgenv().TweenSpeed = Value
  1985. end,
  1986. Min = 10,
  1987. Max = 125,
  1988. Def = 50
  1989. }
  1990. )
  1991.  
  1992. spawn(function()
  1993. while true do
  1994. if (user.Character ~= nil and getgenv().autofarm) then
  1995. local function NoClipping()
  1996. if user.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  1997. for _, Parts in next, (user.Character:GetDescendants()) do
  1998. if (Parts:IsA("BasePart") and Parts.CanCollide == true) then
  1999. Parts.CanCollide = false
  2000. end
  2001. end
  2002. else
  2003. user.Character.Humanoid:ChangeState(11)
  2004. end
  2005. end
  2006.  
  2007. spawn(NoClipping)
  2008. end
  2009. wait()
  2010. end
  2011. end)
  2012. --Credits
  2013. local credits =
  2014. credits.Button(
  2015. {
  2016. Text = "scripter: kooggy#0112",
  2017. Callback = function()
  2018.  
  2019. end
  2020. }
  2021. )
  2022.  
  2023. end
  2024. if game.PlaceId == 9300344892 then
  2025. wait(0.2)
  2026. if game.CoreGui:FindFirstChild("Library") then
  2027. game.CoreGui["Library"]:Destroy()
  2028. end
  2029. local autocollectMain = false;
  2030. function collecting()
  2031. spawn(function()
  2032. while autocollectMain == true do
  2033. wait(0.8)
  2034. for _,v in next, game:GetService("Workspace").Maps.City.Interactables:GetDescendants() do
  2035. if v.ClassName == "Part" then
  2036. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  2037. end
  2038. end
  2039. if not autocollectMain then break end
  2040. end
  2041. end)
  2042. end
  2043. local autocollectindustry = false;
  2044. function collectingindustry()
  2045. spawn(function()
  2046. while autocollectindustry == true do
  2047. wait(0.8)
  2048. for _,v in next, game:GetService("Workspace").Maps.Industry.Interactables:GetDescendants() do
  2049. if v.ClassName == "Part" then
  2050. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  2051. end
  2052. end
  2053. if not autocollectindustry then break end
  2054. end
  2055. end)
  2056. end
  2057.  
  2058. local autoselltoggle = false;
  2059. function selling()
  2060. spawn(function()
  2061. while autoselltoggle == true do
  2062. wait()
  2063. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Sell"):FireServer()
  2064. if not autoselltoggle then break end
  2065. end
  2066. end)
  2067. end
  2068. local sellatmaxtoggle = false;
  2069. function sellatmax()
  2070. spawn(function()
  2071. while sellatmaxtoggle == true do
  2072. task.wait()
  2073. if game:GetService("Players").LocalPlayer.PlayerGui.UI["Size Alert"].Visible == true then
  2074. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Sell"):FireServer()
  2075. if not sellatmaxtoggle then break end
  2076. end
  2077. end
  2078. end)
  2079. end
  2080. local autoupgradealltoggle = false;
  2081. function upgradingall()
  2082. spawn(function()
  2083. while autoupgradealltoggle == true do
  2084. wait()
  2085. local args = {
  2086. [1] = 0
  2087. }
  2088.  
  2089. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Upgrade"):FireServer(unpack(args))
  2090. local args = {
  2091. [1] = 1
  2092. }
  2093.  
  2094. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Upgrade"):FireServer(unpack(args))
  2095. local args = {
  2096. [1] = 2
  2097. }
  2098.  
  2099. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Upgrade"):FireServer(unpack(args))
  2100. if not autoupgradealltoggle then break end
  2101. end
  2102. end)
  2103. end
  2104.  
  2105. local maxsizetoggle = false;
  2106. function maxsize()
  2107. spawn(function()
  2108. while maxsizetoggle == true do
  2109. wait()
  2110. local args = {
  2111. [1] = 1
  2112. }
  2113.  
  2114. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Upgrade"):FireServer(unpack(args))
  2115. if not maxsizetoggle then break end
  2116. end
  2117. end)
  2118. end
  2119. local sellvaluetoggle = false;
  2120. function sellvalue()
  2121. spawn(function()
  2122. while sellvaluetoggle == true do
  2123. wait()
  2124. local args = {
  2125. [1] = 0
  2126. }
  2127.  
  2128. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Upgrade"):FireServer(unpack(args))
  2129. if not sellvaluetoggle then break end
  2130. end
  2131. end)
  2132. end
  2133.  
  2134. local speedtoggle = false;
  2135. function speed()
  2136. spawn(function()
  2137. while speedtoggle == true do
  2138. wait()
  2139. local args = {
  2140. [1] = 2
  2141. }
  2142.  
  2143. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("Player:Upgrade"):FireServer(unpack(args))
  2144. if not speedtoggle then break end
  2145. end
  2146. end)
  2147. end
  2148. local VLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vep1032/VepStuff/main/VL"))()
  2149.  
  2150. local s = VLib:Window("KOOGGY HUB", "TORNADO SIM", "KH")
  2151. local farm = s:Tab("Auto Farm")
  2152. local upgr = s:Tab("Auto Upgrade")
  2153.  
  2154. farm:Label("Auto Collection")
  2155. farm:Toggle("Auto Collect Main Area",function(state)
  2156. autocollectMain = state;
  2157. if autocollectMain then
  2158. collecting()
  2159. end
  2160. end)
  2161.  
  2162. farm:Toggle("Auto Collect Industry Area",function(state)
  2163. autocollectindustry = state;
  2164. if autocollectindustry then
  2165. collectingindustry()
  2166. end
  2167. end)
  2168. farm:Label("Auto Selling")
  2169. farm:Toggle("Auto Sell",function(state)
  2170. autoselltoggle = state;
  2171. if autoselltoggle then
  2172. selling()
  2173. end
  2174. end)
  2175. farm:Toggle("Auto Sell At Max",function(state)
  2176. sellatmaxtoggle = state;
  2177. if sellatmaxtoggle then
  2178. sellatmax()
  2179. end
  2180. end)
  2181.  
  2182.  
  2183. upgr:Toggle("Auto Upgrade Max Size",function(state)
  2184. maxsizetoggle = state;
  2185. if maxsizetoggle then
  2186. maxsize()
  2187. end
  2188. end)
  2189.  
  2190.  
  2191. upgr:Toggle("Auto Upgrade Sell Value",function(state)
  2192. sellvaluetoggle = state;
  2193. if sellvaluetoggle then
  2194. sellvalue()
  2195. end
  2196. end)
  2197.  
  2198.  
  2199. upgr:Toggle("Auto Upgrade Speed",function(state)
  2200. speedtoggle = state;
  2201. if speedtoggle then
  2202. speed()
  2203. end
  2204. end)
  2205.  
  2206.  
  2207. upgr:Toggle("Auto Upgrade All",function(state)
  2208. autoupgradealltoggle = state;
  2209. if autoupgradealltoggle then
  2210. upgradingall()
  2211. end
  2212. end)
  2213. end
  2214. if game.PlaceId == 8750997647 then
  2215. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2216. local Window = OrionLib:MakeWindow({Name = "Tapping Legends X | Kooggy Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "Tapping Legends X Config"})
  2217. local autoclicktoggle = false;
  2218. function autoclick()
  2219. spawn(function()
  2220. while autoclicktoggle == true do
  2221. task.wait()
  2222. game:GetService("ReplicatedStorage").Remotes.Tap:FireServer()
  2223. if not autoclicktoggle then break end
  2224. end
  2225. end)
  2226. end
  2227. clicking = Window:MakeTab({
  2228. Name = "Auto Click",
  2229. Icon = "rbxassetid://4483345998",
  2230. PremiumOnly = false
  2231. })
  2232. autohatch = Window:MakeTab({
  2233. Name = "Auto Egg",
  2234. Icon = "rbxassetid://4483345998",
  2235. PremiumOnly = false
  2236. })
  2237. autoupgrade = Window:MakeTab({
  2238. Name = "Auto Upgrade",
  2239. Icon = "rbxassetid://4483345998",
  2240. PremiumOnly = false
  2241. })
  2242.  
  2243. tps = Window:MakeTab({
  2244. Name = "Teleports",
  2245. Icon = "rbxassetid://4483345998",
  2246. PremiumOnly = false
  2247. })
  2248. visual = Window:MakeTab({
  2249. Name = "Visual Stuff",
  2250. Icon = "rbxassetid://4483345998",
  2251. PremiumOnly = false
  2252. })
  2253.  
  2254. plr = Window:MakeTab({
  2255. Name = "Local Player",
  2256. Icon = "rbxassetid://4483345998",
  2257. PremiumOnly = false
  2258. })
  2259.  
  2260. clicking:AddToggle({
  2261. Name = "Auto Click",
  2262. Default = false,
  2263. Callback = function(state)
  2264. autoclicktoggle = state;
  2265. if autoclicktoggle then
  2266. autoclick()
  2267. end
  2268. end
  2269. })
  2270.  
  2271. local eggs = {}
  2272. for i,v in pairs(game:GetService("Workspace").Eggs:GetChildren()) do
  2273. table.insert(eggs, v.Name)
  2274. end
  2275. local singleopen = false;
  2276. function opensingle()
  2277. spawn(function()
  2278. while singleopen == true do
  2279. task.wait()
  2280. local args = {
  2281. [1] = selectedEgg,
  2282. [2] = 1
  2283. }
  2284.  
  2285. game:GetService("ReplicatedStorage").Remotes.BuyEgg:InvokeServer(unpack(args))
  2286. if not singleopen then break end
  2287. end
  2288. end)
  2289. end
  2290. local tripleopen = false;
  2291. function opentriple()
  2292. spawn(function()
  2293. while tripleopen == true do
  2294. task.wait()
  2295. local args = {
  2296. [1] = selectedEgg,
  2297. [2] = 3
  2298. }
  2299.  
  2300. game:GetService("ReplicatedStorage").Remotes.BuyEgg:InvokeServer(unpack(args))
  2301. if not tripleopen then break end
  2302. end
  2303. end)
  2304. end
  2305.  
  2306. autohatch:AddDropdown({
  2307. Name = "Choose Egg",
  2308. Default = "",
  2309. Options = eggs,
  2310. Callback = function(currentOption)
  2311. selectedEgg = currentOption
  2312. end
  2313. })
  2314.  
  2315. autohatch:AddToggle({
  2316. Name = "Open Selected Egg",
  2317. Default = false,
  2318. Callback = function(state)
  2319. singleopen = state;
  2320. if singleopen then
  2321. opensingle()
  2322. end
  2323. end
  2324. })
  2325. autohatch:AddToggle({
  2326. Name = "Triple Open Selected Egg",
  2327. Default = false,
  2328. Callback = function(state)
  2329. tripleopen = state;
  2330. if tripleopen then
  2331. opentriple()
  2332. end
  2333. end
  2334. })
  2335.  
  2336. tps:AddDropdown({
  2337. Name = "Choose Area",
  2338. Default = "",
  2339. Options = {"Spawn", "Forest", "Desert", "Winter", "Lava", "Aqua", "Sakura", "Mine", "Galaxy", "Heaven"},
  2340. Callback = function(selected)
  2341. if selected == "Spawn" then
  2342.  
  2343. local args = {
  2344. [1] = 1
  2345. }
  2346.  
  2347. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2348. end
  2349. if selected == "Forest" then
  2350.  
  2351. local args = {
  2352. [1] = 2
  2353. }
  2354.  
  2355. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2356. end
  2357. if selected == "Desert" then
  2358. local args = {
  2359. [1] = 3
  2360. }
  2361. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2362. end
  2363. if selected == "Winter" then
  2364. local args = {
  2365. [1] = 4
  2366. }
  2367.  
  2368. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2369. end
  2370. if selected == "Lava" then
  2371. local args = {
  2372. [1] = 5
  2373. }
  2374. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2375. end
  2376. if selected == "Aqua" then
  2377. local args = {
  2378. [1] = 6
  2379. }
  2380.  
  2381. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2382. end
  2383. if selected == "Sakura" then
  2384. local args = {
  2385. [1] = 7
  2386. }
  2387. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2388. end
  2389. if selected == "Mine" then
  2390.  
  2391. local args = {
  2392. [1] = 8
  2393. }
  2394.  
  2395. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2396. end
  2397. if selected == "Galaxy" then
  2398. local args = {
  2399. [1] = 9
  2400. }
  2401.  
  2402. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2403. end
  2404. if selected == "Heaven" then
  2405. local args = {
  2406. [1] = 10
  2407. }
  2408.  
  2409. game:GetService("ReplicatedStorage").Remotes.TPArea:FireServer(unpack(args))
  2410. end
  2411. end
  2412. })
  2413. visual:AddButton({
  2414. Name = "Give Lots Of Stats",
  2415. Callback = function()
  2416. game:GetService("Players").LocalPlayer.leaderstats.Rebirths.Value = math.huge
  2417. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Rebirths.Value = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  2418. game:GetService("Players").LocalPlayer.leaderstats.Taps.Value = math.huge
  2419. game:GetService("Players").LocalPlayer.leaderstats.Eggs.Value = math.huge
  2420. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Taps.Value = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  2421. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Rubies.Value = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  2422. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Tokens.Value = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  2423. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].TradeCoins.Value = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  2424.  
  2425. end
  2426. })
  2427. visual:AddButton({
  2428. Name = "Give High Boost Multipliers",
  2429. Callback = function()
  2430.  
  2431. game:GetService("ReplicatedStorage").Values.Luck.Value = 9999999999999999
  2432. game:GetService("ReplicatedStorage").Values.HatchSpeed.Value = 9999999999999999
  2433. game:GetService("ReplicatedStorage").Values.Tap.Value = 9999999999999999
  2434. game:GetService("Players").LocalPlayer.PlayerGui.Menus.Main.WorldBoost.Label.Text = 9999999999999999
  2435. end
  2436. })
  2437.  
  2438. visual:AddButton({
  2439. Name = "Unlock All Gamepasses(Some may work)",
  2440. Callback = function()
  2441. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.Luck.Value = true
  2442. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.FasterHatch.Value = true
  2443. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.GoldenHatch.Value = true
  2444. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.DoubleTaps.Value = true
  2445. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.DoubleRubies.Value = true
  2446. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.DoubleRebirths.Value = true
  2447. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.DoublePawTokens.Value = true
  2448. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.MaxRebirth.Value = true
  2449. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.AutoRebirth.Value = true
  2450. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.GoldenAutoClicker.Value = true
  2451. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses["+2PetsEquiped"].Value = true
  2452. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses["+3PetsEquiped"].Value = true
  2453. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses["+50PetStorage"].Value = true
  2454. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses["+150PetStorage"].Value = true
  2455. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses["+350PetStorage"].Value = true
  2456. game:GetService("ReplicatedStorage").Stats[game.Players.LocalPlayer.Name].Gamepasses.RainbowHatch.Value = true
  2457. end
  2458. })
  2459.  
  2460. plr:AddSlider({
  2461. Name = "WalkSpeed",
  2462. Min = 16,
  2463. Max = 500,
  2464. Default = 16,
  2465. Color = Color3.fromRGB(255,255,255),
  2466. Increment = 1,
  2467. ValueName = "WalkSpeed",
  2468. Callback = function(v)
  2469. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  2470. end
  2471. })
  2472. plr:AddSlider({
  2473. Name = "JumpPower",
  2474. Min = 50,
  2475. Max = 500,
  2476. Default = 50,
  2477. Color = Color3.fromRGB(255,255,255),
  2478. Increment = 1,
  2479. ValueName = "JumpPower",
  2480. Callback = function(v)
  2481. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  2482. end
  2483. })
  2484.  
  2485.  
  2486.  
  2487. end
  2488. if game.PlaceId == 3956818381 then
  2489. local StarterPack = game:GetService("StarterPack")
  2490. local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))()
  2491. local Window = OrionLib:MakeWindow({
  2492. Name = "Kooggy Hub | Ninja Legends",
  2493. HidePremium = false,
  2494. SaveConfig = true,
  2495. ConfigFolder = "Ninja Legends KH"
  2496. })
  2497. autoswing = false
  2498. function swinging()
  2499. spawn(function()
  2500. while autoswing == true do
  2501. task.wait()
  2502. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer("swingKatana")
  2503. if not autoswing then
  2504. break
  2505. end
  2506. end
  2507. end)
  2508. end
  2509. autosell = false
  2510. function selling()
  2511. spawn(function()
  2512. while autosell == true do
  2513. task.wait(.01)
  2514. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2515. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  2516. wait(.1)
  2517. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Workspace.Part.CFrame
  2518. if not autosell then
  2519. break
  2520. end
  2521. end
  2522. end
  2523. end)
  2524. end
  2525. autosellmax = false
  2526. function maxsell()
  2527. spawn(function()
  2528. while autosellmax == true do
  2529. task.wait()
  2530. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2531. if game.Players.LocalPlayer.PlayerGui.gameGui.maxNinjitsuMenu.Visible == true then
  2532. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  2533. task.wait()
  2534. game.workspace.sellAreaCircles["sellAreaCircle7"].circleInner.CFrame = game.Workspace.Part.CFrame
  2535. end
  2536. end
  2537. if not autosellmax then
  2538. break
  2539. end
  2540. end
  2541. end)
  2542. end
  2543. autobuyswords = false
  2544. function buyswords()
  2545. spawn(function()
  2546. while autobuyswords == true do
  2547. task.wait()
  2548. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2549. local oh1 = "buyAllSwords"
  2550. 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"}
  2551. for i = 1, #oh2 do
  2552. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  2553. end
  2554. end
  2555. if not autobuyswords then
  2556. break
  2557. end
  2558. end
  2559. end)
  2560. end
  2561. autobuybelts = false
  2562. function buybelts()
  2563. spawn(function()
  2564. while autobuybelts == true do
  2565. task.wait()
  2566. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2567. local oh1 = "buyAllBelts"
  2568. 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"}
  2569. for i = 1, #oh2 do
  2570. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  2571. end
  2572. end
  2573. if not autobuybelts then
  2574. break
  2575. end
  2576. end
  2577. end)
  2578. end
  2579. autobuyranks = false
  2580. function buyranks()
  2581. spawn(function()
  2582. while autobuyranks == true do
  2583. task.wait()
  2584. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2585. local oh1 = "buyRank"
  2586. local oh2 = game:GetService("ReplicatedStorage").Ranks.Ground:GetChildren()
  2587. for i = 1, #oh2 do
  2588. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i].Name)
  2589. end
  2590. end
  2591. if not autobuyranks then
  2592. break
  2593. end
  2594. end
  2595. end)
  2596. end
  2597. autobuyskill = false
  2598. function buyskill()
  2599. spawn(function()
  2600. while autobuyskill == true do
  2601. task.wait()
  2602. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2603. local oh1 = "buyAllSkills"
  2604. 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"}
  2605. for i = 1, #oh2 do
  2606. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  2607. end
  2608. end
  2609. if not autobuyskill then
  2610. break
  2611. end
  2612. end
  2613. end)
  2614. end
  2615. autobuyshurikens = false
  2616. function buyshurikens()
  2617. spawn(function()
  2618. while autobuyshurikens == true do
  2619. task.wait()
  2620. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2621. local oh1 = "buyAllShurikens"
  2622. 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"}
  2623. for i = 1, #oh2 do
  2624. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  2625. end
  2626. end
  2627. if not autobuyshurikens then
  2628. break
  2629. end
  2630. end
  2631. end)
  2632. end
  2633. autocrystal = false
  2634. function buycrystal()
  2635. spawn(function()
  2636. while autocrystal == true do
  2637. task.wait()
  2638. game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer("openCrystal", crystal)
  2639. if not autocrystal then
  2640. break
  2641. end
  2642. end
  2643. end)
  2644. end
  2645. local main = Window:MakeTab({
  2646. Name = "Main",
  2647. Icon = "rbxassetid://7072717697",
  2648. PremiumOnly = false
  2649. })
  2650. local buy = Window:MakeTab({
  2651. Name = "Auto Buy",
  2652. Icon = "rbxassetid://7072715646",
  2653. PremiumOnly = false
  2654. })
  2655. local hatch = Window:MakeTab({
  2656. Name = "Auto Hatch",
  2657. Icon = "rbxassetid://9692081121",
  2658. PremiumOnly = false
  2659. })
  2660. local sellpets = Window:MakeTab({
  2661. Name = "Auto Sell Pets",
  2662. Icon = "rbxassetid://7072717318",
  2663. PremiumOnly = false
  2664. })
  2665. local petupgrades = Window:MakeTab({
  2666. Name = "Auto Pet Upgrade",
  2667. Icon = "rbxassetid://7072706796",
  2668. PremiumOnly = false
  2669. })
  2670. local boss = Window:MakeTab({
  2671. Name = "Boss Farm",
  2672. Icon = "rbxassetid://7072723006",
  2673. PremiumOnly = false
  2674. })
  2675. local teleports = Window:MakeTab({
  2676. Name = "Teleports",
  2677. Icon = "rbxassetid://7072718266",
  2678. PremiumOnly = false
  2679. })
  2680. local misc = Window:MakeTab({
  2681. Name = "Misc",
  2682. Icon = "rbxassetid://7072718840",
  2683. PremiumOnly = false
  2684. })
  2685. main:AddLabel("Auto Swing")
  2686. main:AddToggle({
  2687. Name = "Auto Swing",
  2688. Default = false,
  2689. Callback = function(x)
  2690. autoswing = x
  2691. if autoswing then
  2692. swinging()
  2693. end
  2694. end
  2695. })
  2696. main:AddLabel("Auto Sell")
  2697. main:AddToggle({
  2698. Name = "Auto Sell",
  2699. Default = false,
  2700. Callback = function(x)
  2701. autosell = x
  2702. if autosell then
  2703. selling()
  2704. end
  2705. end
  2706. })
  2707. main:AddToggle({
  2708. Name = "Auto Max Sell",
  2709. Default = false,
  2710. Callback = function(x)
  2711. autosellmax = x
  2712. if autosellmax then
  2713. maxsell()
  2714. end
  2715. end
  2716. })
  2717. local leveluptoggle = false
  2718. function levelup()
  2719. spawn(function()
  2720. while leveluptoggle == true do
  2721. task.wait()
  2722. for _, v in pairs(workspace.Hoops:GetDescendants()) do
  2723. if v.ClassName == "MeshPart" then
  2724. v.touchPart.CFrame = plr.Character.HumanoidRootPart.CFrame
  2725. end
  2726. end
  2727. if not leveluptoggle then
  2728. break
  2729. end
  2730. end
  2731. end)
  2732. end
  2733. local chitoggle = false
  2734. function chi()
  2735. spawn(function()
  2736. while chitoggle == true do
  2737. task.wait(.033)
  2738. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2739. for _, v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  2740. if v.Name == "Blue Chi Crate" then
  2741. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  2742. wait(.16)
  2743. end
  2744. end
  2745. end
  2746. if not chitoggle then
  2747. break
  2748. end
  2749. end
  2750. end)
  2751. end
  2752. main:AddLabel("Other Main Stuff")
  2753. main:AddButton({
  2754. Name = "Unlock all elements",
  2755. Callback = function()
  2756. game.ReplicatedStorage.rEvents.elementMasteryEvent:FireServer("Frost")
  2757. game.ReplicatedStorage.rEvents.elementMasteryEvent:FireServer("Inferno")
  2758. game.ReplicatedStorage.rEvents.elementMasteryEvent:FireServer("Lightning")
  2759. game.ReplicatedStorage.rEvents.elementMasteryEvent:FireServer("Electral Chaos")
  2760. game.ReplicatedStorage.rEvents.elementMasteryEvent:FireServer("Masterful Wrath")
  2761. game.ReplicatedStorage.rEvents.elementMasteryEvent:FireServer("Shadow Charge")
  2762. end
  2763. })
  2764. main:AddToggle({
  2765. Name = "Auto Level Up Pets",
  2766. Default = false,
  2767. Callback = function(x)
  2768. leveluptoggle = x
  2769. if leveluptoggle then
  2770. levelup()
  2771. end
  2772. end
  2773. })
  2774. main:AddToggle({
  2775. Name = "Auto Collect Chi",
  2776. Default = false,
  2777. Callback = function(x)
  2778. chitoggle = x
  2779. if chitoggle then
  2780. chi()
  2781. end
  2782. end
  2783. })
  2784. main:AddButton({
  2785. Name = "Collect All Chests",
  2786. Callback = function()
  2787. game:GetService("Workspace").mythicalChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2788. wait(3.5)
  2789. game:GetService("Workspace").goldenChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2790. wait(3.5)
  2791. game:GetService("Workspace").enchantedChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2792. wait(3.5)
  2793. game:GetService("Workspace").magmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2794. wait(3.5)
  2795. game:GetService("Workspace").legendsChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2796. wait(3.5)
  2797. game:GetService("Workspace").eternalChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2798. wait(3.5)
  2799. game:GetService("Workspace").saharaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2800. wait(3.5)
  2801. game:GetService("Workspace").thunderChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2802. wait(3.5)
  2803. game:GetService("Workspace").ancientChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2804. wait(3.5)
  2805. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2806. wait(3.5)
  2807. game:GetService("Workspace").groupRewardsCircle["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2808. wait(3.5)
  2809. game:GetService("Workspace")["Daily Chest"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2810. wait(3.5)
  2811. game:GetService("Workspace")["wonderChest"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2812. wait(3.5)
  2813. game:GetService("Workspace").wonderChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2814. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2815. game:GetService("Workspace").ancientChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2816. game:GetService("Workspace").midnightShadowChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2817. game:GetService("Workspace").thunderChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2818. game:GetService("Workspace").saharaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2819. game:GetService("Workspace").eternalChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2820. game:GetService("Workspace").legendsChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2821. game:GetService("Workspace").magmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2822. game:GetService("Workspace").enchantedChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2823. game:GetService("Workspace").goldenChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2824. game:GetService("Workspace").mythicalChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2825. game:GetService("Workspace").groupRewardsCircle["circleInner"].CFrame = game.Workspace.Part.CFrame
  2826. game:GetService("Workspace")["Daily Chest"].circleInner.CFrame = game.Workspace.Part.CFrame
  2827. end
  2828. })
  2829. main:AddButton({
  2830. Name = "Collect Light Chest",
  2831. Callback = function()
  2832. game:GetService("Workspace").lightKarmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2833. wait(5)
  2834. game:GetService("Workspace").lightKarmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2835. end
  2836. })
  2837. main:AddButton({
  2838. Name = "Collect Evil Chest",
  2839. Callback = function()
  2840. game:GetService("Workspace").evilKarmaChest["circleInner"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2841. wait(5)
  2842. game:GetService("Workspace").evilKarmaChest["circleInner"].CFrame = game.Workspace.Part.CFrame
  2843. end
  2844. })
  2845. main:AddButton({
  2846. Name = "Unlock All Islands",
  2847. Callback = function()
  2848. for _, v in next, game.workspace.islandUnlockParts:GetChildren() do
  2849. if v then
  2850. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.islandSignPart.CFrame
  2851. wait(.5)
  2852. end
  2853. end
  2854. end
  2855. })
  2856. buy:AddToggle({
  2857. Name = "Auto Buy Swords",
  2858. Default = false,
  2859. Callback = function(x)
  2860. autobuyswords = x
  2861. if autobuyswords then
  2862. buyswords()
  2863. end
  2864. end
  2865. })
  2866. buy:AddToggle({
  2867. Name = "Auto Buy Belts",
  2868. Default = false,
  2869. Callback = function(x)
  2870. autobuybelts = x
  2871. if autobuybelts then
  2872. buybelts()
  2873. end
  2874. end
  2875. })
  2876. buy:AddToggle({
  2877. Name = "Auto Buy Ranks",
  2878. Default = false,
  2879. Callback = function(x)
  2880. autobuyranks = x
  2881. if autobuyranks then
  2882. buyranks()
  2883. end
  2884. end
  2885. })
  2886. buy:AddToggle({
  2887. Name = "Auto Buy Skills",
  2888. Default = false,
  2889. Callback = function(x)
  2890. autobuyskill = x
  2891. if autobuyskill then
  2892. buyskill()
  2893. end
  2894. end
  2895. })
  2896. buy:AddToggle({
  2897. Name = "Auto Buy Shurikens",
  2898. Default = false,
  2899. Callback = function(x)
  2900. autobuyshurikens = x
  2901. if autobuyshurikens then
  2902. buyshurikens()
  2903. end
  2904. end
  2905. })
  2906. crystals = {}
  2907. for _, v in pairs(game:GetService("Workspace").mapCrystalsFolder:GetChildren()) do
  2908. table.insert(crystals, v.Name)
  2909. end
  2910. hatch:AddDropdown({
  2911. Name = "Select Crystal",
  2912. Default = "",
  2913. Options = crystals,
  2914. Callback = function(selected)
  2915. crystal = selected
  2916. end
  2917. })
  2918. hatch:AddToggle({
  2919. Name = "Auto Open Crystal",
  2920. Default = false,
  2921. Callback = function(x)
  2922. autocrystal = x
  2923. if autocrystal then
  2924. buycrystal()
  2925. end
  2926. end
  2927. })
  2928. local autosellbasic = false
  2929. function sellbasic()
  2930. spawn(function()
  2931. while autosellbasic == true do
  2932. task.wait(1)
  2933. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2934. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Basic:GetChildren()) do
  2935. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  2936. end
  2937. end
  2938. if not autosellbasic then
  2939. break
  2940. end
  2941. end
  2942. end)
  2943. end
  2944. local autoselladvanced = false
  2945. function selladvanced()
  2946. spawn(function()
  2947. while autoselladvanced == true do
  2948. task.wait(1)
  2949. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2950. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Advanced:GetChildren()) do
  2951. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  2952. end
  2953. end
  2954. if not autoselladvanced then
  2955. break
  2956. end
  2957. end
  2958. end)
  2959. end
  2960. local autosellrare = false
  2961. function sellrare()
  2962. spawn(function()
  2963. while autosellrare == true do
  2964. task.wait(1)
  2965. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2966. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Rare:GetChildren()) do
  2967. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  2968. end
  2969. end
  2970. if not autosellrare then
  2971. break
  2972. end
  2973. end
  2974. end)
  2975. end
  2976. local autosellepic = false
  2977. function sellepic()
  2978. spawn(function()
  2979. while autosellepic == true do
  2980. task.wait(1)
  2981. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2982. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Epic:GetChildren()) do
  2983. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  2984. end
  2985. end
  2986. if not autosellepic then
  2987. break
  2988. end
  2989. end
  2990. end)
  2991. end
  2992. local autosellunique = false
  2993. function sellunique()
  2994. spawn(function()
  2995. while autosellunique == true do
  2996. task.wait(1)
  2997. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  2998. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Unique:GetChildren()) do
  2999. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  3000. end
  3001. end
  3002. if not autosellunique then
  3003. break
  3004. end
  3005. end
  3006. end)
  3007. end
  3008. local autosellomega = false
  3009. function sellomega()
  3010. spawn(function()
  3011. while autosellomega == true do
  3012. task.wait(1)
  3013. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3014. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Omega:GetChildren()) do
  3015. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  3016. end
  3017. end
  3018. if not autosellomega then
  3019. break
  3020. end
  3021. end
  3022. end)
  3023. end
  3024. local autosellelite = false
  3025. function sellelite()
  3026. spawn(function()
  3027. while autosellelite == true do
  3028. task.wait(1)
  3029. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3030. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Elite:GetChildren()) do
  3031. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  3032. end
  3033. end
  3034. if not autosellelite then
  3035. break
  3036. end
  3037. end
  3038. end)
  3039. end
  3040. local autosellinfinity = false
  3041. function sellinfinity()
  3042. spawn(function()
  3043. while autosellinfinity == true do
  3044. task.wait(1)
  3045. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3046. for _, v in pairs(game.Players.LocalPlayer.petsFolder.Infinity:GetChildren()) do
  3047. game.ReplicatedStorage.rEvents.sellPetEvent:FireServer("sellPet", v)
  3048. end
  3049. end
  3050. if not autosellinfinity then
  3051. break
  3052. end
  3053. end
  3054. end)
  3055. end
  3056. sellpets:AddToggle({
  3057. Name = "Auto Sell Basic",
  3058. Default = false,
  3059. Callback = function(state)
  3060. autosellbasic = state
  3061. if autosellbasic then
  3062. sellbasic()
  3063. end
  3064. end
  3065. })
  3066. sellpets:AddToggle({
  3067. Name = "Auto Sell Advanced",
  3068. Default = false,
  3069. Callback = function(state)
  3070. autoselladvanced = state
  3071. if autoselladvanced then
  3072. selladvanced()
  3073. end
  3074. end
  3075. })
  3076. sellpets:AddToggle({
  3077. Name = "Auto Sell Rare",
  3078. Default = false,
  3079. Callback = function(state)
  3080. autosellrare = state
  3081. if autosellrare then
  3082. sellrare()
  3083. end
  3084. end
  3085. })
  3086. sellpets:AddToggle({
  3087. Name = "Auto Sell Epic",
  3088. Default = false,
  3089. Callback = function(state)
  3090. autosellepic = state
  3091. if autosellepic then
  3092. sellepic()
  3093. end
  3094. end
  3095. })
  3096. sellpets:AddToggle({
  3097. Name = "Auto Sell Unique",
  3098. Default = false,
  3099. Callback = function(state)
  3100. autosellunique = state
  3101. if autosellunique then
  3102. sellunique()
  3103. end
  3104. end
  3105. })
  3106. sellpets:AddToggle({
  3107. Name = "Auto Sell Omega",
  3108. Default = false,
  3109. Callback = function(state)
  3110. autosellomega = state
  3111. if autosellomega then
  3112. sellomega()
  3113. end
  3114. end
  3115. })
  3116. sellpets:AddToggle({
  3117. Name = "Auto Sell Elite",
  3118. Default = false,
  3119. Callback = function(state)
  3120. autosellelite = state
  3121. if autosellelite then
  3122. sellelite()
  3123. end
  3124. end
  3125. })
  3126. sellpets:AddToggle({
  3127. Name = "Auto Sell Infinity",
  3128. Default = false,
  3129. Callback = function(state)
  3130. autosellinfinity = state
  3131. if autosellinfinity then
  3132. sellinfinity()
  3133. end
  3134. end
  3135. })
  3136. autoevolve = false
  3137. function evolve()
  3138. spawn(function()
  3139. while autoevolve == true do
  3140. task.wait(3)
  3141. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3142. for _, v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  3143. for _, x in pairs(v:GetChildren()) do
  3144. local oh1 = "evolvePet"
  3145. local oh2 = x.Name
  3146. game:GetService("ReplicatedStorage").rEvents.petEvolveEvent:FireServer(oh1, oh2)
  3147. end
  3148. end
  3149. end
  3150. if not autoevolve then
  3151. break
  3152. end
  3153. end
  3154. end)
  3155. end
  3156. autoeternalise = false
  3157. function eternalise()
  3158. spawn(function()
  3159. while autoeternalise == true do
  3160. task.wait(3)
  3161. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3162. for _, v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  3163. for _, x in pairs(v:GetChildren()) do
  3164. local oh1 = "eternalizePet"
  3165. local oh2 = x.Name
  3166. game:GetService("ReplicatedStorage").rEvents.petEternalizeEvent:FireServer(oh1, oh2)
  3167. end
  3168. end
  3169. end
  3170. if not autoeternalise then
  3171. break
  3172. end
  3173. end
  3174. end)
  3175. end
  3176. autoimmortalize = false
  3177. function immortalize()
  3178. spawn(function()
  3179. while autoimmortalize == true do
  3180. task.wait(3)
  3181. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3182. for _, v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  3183. for _, x in pairs(v:GetChildren()) do
  3184. local oh1 = "immortalizePet"
  3185. local oh2 = x.Name
  3186. game:GetService("ReplicatedStorage").rEvents.petImmortalizeEvent:FireServer(oh1, oh2)
  3187. end
  3188. end
  3189. end
  3190. if not autoimmortalize then
  3191. break
  3192. end
  3193. end
  3194. end)
  3195. end
  3196. autolegend = false
  3197. function legend()
  3198. spawn(function()
  3199. while autolegend == true do
  3200. task.wait(3)
  3201. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3202. for _, v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  3203. for _, x in pairs(v:GetChildren()) do
  3204. local oh1 = "legendizePet"
  3205. local oh2 = x.Name
  3206. game:GetService("ReplicatedStorage").rEvents.petLegendEvent:FireServer(oh1, oh2)
  3207. end
  3208. end
  3209. end
  3210. if not autolegend then
  3211. break
  3212. end
  3213. end
  3214. end)
  3215. end
  3216. autoelementalize = false
  3217. function elementalize()
  3218. spawn(function()
  3219. while autoelementalize == true do
  3220. task.wait(3)
  3221. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3222. for _, v in pairs(game:GetService("Players").LocalPlayer.petsFolder:GetChildren()) do
  3223. for _, x in pairs(v:GetChildren()) do
  3224. local oh1 = "elementalizePet"
  3225. local oh2 = x.Name
  3226. game:GetService("ReplicatedStorage").rEvents.petLegendEvent:FireServer(oh1, oh2)
  3227. end
  3228. end
  3229. end
  3230. if not autoelementalize then
  3231. break
  3232. end
  3233. end
  3234. end)
  3235. end
  3236. petupgrades:AddToggle({
  3237. Name = "Auto Evolve",
  3238. Default = false,
  3239. Callback = function(state)
  3240. autoevolve = state
  3241. if autoevolve then
  3242. evolve()
  3243. end
  3244. end
  3245. })
  3246. petupgrades:AddToggle({
  3247. Name = "Auto Eternalise",
  3248. Default = false,
  3249. Callback = function(state)
  3250. autoeternalise = state
  3251. if autoeternalise then
  3252. eternalise()
  3253. end
  3254. end
  3255. })
  3256. petupgrades:AddToggle({
  3257. Name = "Auto Immortalize",
  3258. Default = false,
  3259. Callback = function(state)
  3260. autoimmortalize = state
  3261. if autoimmortalize then
  3262. immortalize()
  3263. end
  3264. end
  3265. })
  3266. petupgrades:AddToggle({
  3267. Name = "Auto Legend",
  3268. Default = false,
  3269. Callback = function(state)
  3270. autolegend = state
  3271. if autolegend then
  3272. legend()
  3273. end
  3274. end
  3275. })
  3276. petupgrades:AddToggle({
  3277. Name = "Auto Elementalize",
  3278. Default = false,
  3279. Callback = function(state)
  3280. autoelementalize = state
  3281. if autoelementalize then
  3282. elementalize()
  3283. end
  3284. end
  3285. })
  3286. boss:AddDropdown({
  3287. Name = "Choose Boss",
  3288. Default = SelectedBoss,
  3289. Options = {"Robot Boss", "Eternal Boss", "Ancient Magma Boss", "Samurai Santa Boss"},
  3290. Callback = function(selected)
  3291. SelectedBoss = selected
  3292. end
  3293. })
  3294. boss:AddToggle({
  3295. Name = "Auto Farm Selected Robot",
  3296. Default = false,
  3297. Callback = function(state)
  3298. if SelectedBoss == "Robot Boss" then
  3299. getgenv().robot = true
  3300. while wait() and robot do
  3301. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3302. if game:GetService("Workspace").bossFolder:WaitForChild("RobotBoss"):WaitForChild("HumanoidRootPart") then
  3303. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.RobotBoss.HumanoidRootPart.CFrame
  3304. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3305. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):Activate()
  3306. else
  3307. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3308. if v:IsA("Tool") and v:FindFirstChild("attackKatanaScript") then
  3309. v.attackTime.Value = .2
  3310. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3311. if attackfar then
  3312. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3313. if v:IsA("Tool") and v:FindFirstChild("attackShurikenScript") then
  3314. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3315. end
  3316. end
  3317. end
  3318. end
  3319. end
  3320. end
  3321. end
  3322. else
  3323. robot = false
  3324. end
  3325. end
  3326. end
  3327. if SelectedBoss == "Eternal Boss" then
  3328. getgenv().robot = state
  3329. while wait() and robot do
  3330. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3331. if game:GetService("Workspace").bossFolder:WaitForChild("EternalBoss"):WaitForChild("HumanoidRootPart") then
  3332. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.EternalBoss.HumanoidRootPart.CFrame
  3333. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3334. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):Activate()
  3335. else
  3336. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3337. if v:IsA("Tool") and v:FindFirstChild("attackKatanaScript") then
  3338. v.attackTime.Value = .2
  3339. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3340. if attackfar then
  3341. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3342. if v:IsA("Tool") and v:FindFirstChild("attackShurikenScript") then
  3343. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3344. end
  3345. end
  3346. end
  3347. end
  3348. end
  3349. end
  3350. end
  3351. else
  3352. robot = false
  3353. end
  3354. end
  3355. end
  3356. if SelectedBoss == "Ancient Magma Boss" then
  3357. getgenv().robot = state
  3358. while wait() and robot do
  3359. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3360. if game:GetService("Workspace").bossFolder:WaitForChild("AncientMagmaBoss"):WaitForChild("HumanoidRootPart") then
  3361. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.AncientMagmaBoss.HumanoidRootPart.CFrame
  3362. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3363. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):Activate()
  3364. else
  3365. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3366. if v:IsA("Tool") and v:FindFirstChild("attackKatanaScript") then
  3367. v.attackTime.Value = .2
  3368. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3369. if attackfar then
  3370. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3371. if v:IsA("Tool") and v:FindFirstChild("attackShurikenScript") then
  3372. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3373. end
  3374. end
  3375. end
  3376. end
  3377. end
  3378. end
  3379. end
  3380. else
  3381. robot = false
  3382. end
  3383. end
  3384. end
  3385. if SelectedBoss == "Samurai Santa Boss" then
  3386. getgenv().robot = state
  3387. while wait() and robot do
  3388. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3389. if game:GetService("Workspace").bossFolder:WaitForChild("Samurai Santa"):WaitForChild("HumanoidRootPart") then
  3390. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder["Samurai Santa"].HumanoidRootPart.CFrame
  3391. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3392. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):Activate()
  3393. else
  3394. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3395. if v:IsA("Tool") and v:FindFirstChild("attackKatanaScript") then
  3396. v.attackTime.Value = .2
  3397. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3398. if attackfar then
  3399. for _, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3400. if v:IsA("Tool") and v:FindFirstChild("attackShurikenScript") then
  3401. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  3402. end
  3403. end
  3404. end
  3405. end
  3406. end
  3407. end
  3408. end
  3409. else
  3410. robot = false
  3411. end
  3412. end
  3413. end
  3414. end
  3415. })
  3416. local Islands = {}
  3417. for _, v in next, game.workspace.islandUnlockParts:GetChildren() do
  3418. if v then
  3419. table.insert(Islands, v.Name)
  3420. end
  3421. end
  3422. teleports:AddLabel("World Teleports")
  3423. teleports:AddDropdown({
  3424. Name = "Select World",
  3425. Default = "",
  3426. Options = Islands,
  3427. Callback = function(selected)
  3428. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.islandUnlockParts[selected].islandSignPart.CFrame
  3429. end
  3430. })
  3431. teleports:AddLabel("Light Training Areas")
  3432. teleports:AddButton({
  3433. Name = "Mystical Waters",
  3434. Callback = function()
  3435. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(347.74881, 8824.53809, 114.271019)
  3436. end
  3437. })
  3438. teleports:AddButton({
  3439. Name = "Sword of Legends",
  3440. Callback = function()
  3441. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1834.15967, 38.704483, -141.375641)
  3442. end
  3443. })
  3444. teleports:AddButton({
  3445. Name = "Elemental Tornado",
  3446. Callback = function()
  3447. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(299.758484, 30383.0957, -90.1542206)
  3448. end
  3449. })
  3450. teleports:AddLabel("Evil Training Areas")
  3451. teleports:AddButton({
  3452. Name = "Lava Pit",
  3453. Callback = function()
  3454. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-116.631485, 12952.5381, 271.14624)
  3455. end
  3456. })
  3457. teleports:AddButton({
  3458. Name = "Tornado",
  3459. Callback = function()
  3460. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(325.641174, 16872.0938, -9.9906435)
  3461. end
  3462. })
  3463. teleports:AddButton({
  3464. Name = "Swords of Ancients",
  3465. Callback = function()
  3466. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(648.365662, 38.704483, 2409.72266)
  3467. end
  3468. })
  3469. misc:AddToggle({
  3470. Name = "Fast Shuriken",
  3471. Default = false,
  3472. Callback = function(x)
  3473. getgenv().fastshuriken = x
  3474. while wait(.001) and fastshuriken do
  3475. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3476. local plr = game.Players.LocalPlayer
  3477. local Mouse = plr:GetMouse()
  3478. local velocity = 1e3
  3479. for _, p in pairs(game.Workspace.shurikensFolder:GetChildren()) do
  3480. if p.Name == "Handle" then
  3481. if p:FindFirstChild("BodyVelocity") then
  3482. local bv = p:FindFirstChildOfClass("BodyVelocity")
  3483. bv.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  3484. bv.Velocity = Mouse.Hit.lookVector * velocity
  3485. end
  3486. end
  3487. end
  3488. else
  3489. fastshuriken = false
  3490. end
  3491. end
  3492. end
  3493. })
  3494. misc:AddToggle({
  3495. Name = "Slow Shuriken",
  3496. Default = false,
  3497. Callback = function(x)
  3498. getgenv().slowshuriken = x
  3499. while wait(.001) and slowshuriken do
  3500. if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") then
  3501. local plr = game.Players.LocalPlayer
  3502. local Mouse = plr:GetMouse()
  3503. local velocity = 35
  3504. for _, p in pairs(game.Workspace.shurikensFolder:GetChildren()) do
  3505. if p.Name == "Handle" then
  3506. if p:FindFirstChild("BodyVelocity") then
  3507. local bv = p:FindFirstChildOfClass("BodyVelocity")
  3508. bv.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  3509. bv.Velocity = Mouse.Hit.lookVector * velocity
  3510. end
  3511. end
  3512. end
  3513. else
  3514. slowshuriken = false
  3515. end
  3516. end
  3517. end
  3518. })
  3519. misc:AddToggle({
  3520. Name = "Invisible",
  3521. Default = false,
  3522. Callback = function()
  3523. getgenv().invisible = true
  3524. while invisible do
  3525. task.wait(.001)
  3526. if state then
  3527. task.wait(.001)
  3528. local A_1 = "goInvisible"
  3529. local Event = game.Players.LocalPlayer.ninjaEvent
  3530. Event:FireServer(A_1)
  3531. else
  3532. getgenv().invisible = false
  3533. end
  3534. end
  3535. end
  3536. })
  3537. misc:AddButton({
  3538. Name = "Get Max Jumps",
  3539. Callback = function()
  3540. while wait(.0001) do
  3541. game.Players.LocalPlayer.multiJumpCount.Value = "50"
  3542. end
  3543. end
  3544. })
  3545. OrionLib:MakeNotification({
  3546. Name = "Kooggy Hub",
  3547. Content = "Kooggy Hub has successfuly loaded!",
  3548. Image = "rbxassetid://7072718307",
  3549. Time = 5
  3550. })
  3551.  
  3552. local vu = game:GetService("VirtualUser")
  3553. game:GetService("Players").LocalPlayer.Idled:connect(function()
  3554. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3555. wait(1)
  3556. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3557. end)
  3558. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement