Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("[UPDATE] Saber Simulator", "DarkTheme")
- -- Main Tab
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Main")
- MainSection:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function() Library:ToggleUI() end)
- -- Auto Swing
- MainSection:NewToggle("Auto Swing", "Automatically swings your saber", function(v)
- getgenv().Swing = v
- while getgenv().Swing do
- game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
- game:GetService("RunService").Heartbeat:Wait()
- end
- end)
- -- Auto Buy Features
- MainSection:NewToggle("Auto Buy Saber", "Automatically buys the best saber", function(v)
- getgenv().b = v
- if v then
- while getgenv().b do
- game:GetService("ReplicatedStorage").Events.BuyAll:FireServer("Swords")
- wait(3)
- end
- end
- end)
- -- Auto Buy DNA
- MainSection:NewToggle("Auto Buy DNA", "Automatically buys the best DNA", function(v)
- getgenv().c = v
- if v then
- while getgenv().c do
- game:GetService("ReplicatedStorage").Events.BuyAll:FireServer("Backpacks")
- wait(3)
- end
- end
- end)
- -- Eggs and Pets
- local eggsList = {}
- for i, v in pairs(game:GetService("ReplicatedStorage").Eggs:GetChildren()) do
- if v:IsA("Folder") then table.insert(eggsList, v.Name) end
- end
- MainSection:NewDropdown("Eggs", "Select an egg to auto-open", eggsList, function(c) Eggs = c end)
- MainSection:NewToggle("Auto Open Egg", "Automatically opens selected eggs", function(v)
- getgenv().pets = v
- while getgenv().pets do
- local eggInstance = game:GetService("ReplicatedStorage").Eggs[Eggs]
- game:GetService("ReplicatedStorage").Events.HatchEggs:InvokeServer(eggInstance, 1)
- game:GetService("RunService").Heartbeat:Wait()
- end
- end)
- -- Misc Tab
- local Misc = Window:NewTab("Misc")
- local MiscSection = Misc:NewSection("Miscellaneous")
- MiscSection:NewButton("Go to King of Hill", "Teleports you to the King of the Hill area", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(790.539, 249.753, 32.121)
- end)
- MiscSection:NewButton("Go to Sell Area", "Teleports you to the sell area", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").SellArea.CFrame
- end)
- -- Player Tab
- local Player = Window:NewTab("Player")
- local PlayerSection = Player:NewSection("Player")
- PlayerSection:NewSlider("Walk Speed", "Adjust your walk speed", 0, 200, 50, function(v)
- pcall(function()
- game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = v
- end)
- end)
- PlayerSection:NewSlider("Jump Power", "Adjust your jump power", 0, 200, 50, function(v)
- pcall(function()
- game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = v
- end)
- end)
- -- Teleport Tab
- local TeleT = Window:NewTab("Teleport")
- local TeleSE = TeleT:NewSection("Teleport!")
- local player = game.Players.LocalPlayer
- -- Teleport Button for Island
- local island = game:GetService("Workspace"):WaitForChild("IslandDoors")
- for _, v in pairs(island:GetDescendants()) do
- if v:IsA("CFrameValue") and v.Name == "P2" then
- local islandName = v.Parent.Name
- local buttonLabel = "Teleport to: " .. islandName
- local buttonInfo = "Click to teleport to " .. islandName
- TeleSE:NewButton(buttonLabel, buttonInfo, function()
- if typeof(v.Value) == "CFrame" then
- player.Character:MoveTo(v.Value.Position)
- else
- print("Invalid CFrame value for " .. islandName)
- end
- end)
- end
- end
- -- Discord Tab
- local Discord = Window:NewTab("Discord")
- local DiscordSection = Discord:NewSection("Discord")
- DiscordSection:NewButton("Copy Discord Invite", "Copies the invite to your clipboard", function()
- setclipboard("https://discord.gg/wk7Wer9rGk")
- Library:Notify("Discord invite copied!", 3)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement