Advertisement
kooggy

Untitled

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