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"))()
- -- Main Frame
- local Window = Library.CreateLib("Backpacking CursedGui", "DarkTheme")
- local TabMain = Window:NewTab("Main")
- local TabTeleports = Window:NewTab("Teleports")
- local TabCredits = Window:NewTab("Credits")
- -- Main Tab
- -- Main Section
- local SectionPlayer = TabMain:NewSection("Player")
- local SectionOthers = TabMain:NewSection("Others")
- SectionPlayer:NewSlider("Walkspeed", "Changes your walkspeed", 200, 16, function(SetWalkspeed)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = SetWalkspeed
- end)
- SectionPlayer:NewSlider("Jumppower", "Changes your jumppower", 200, 16, function(SetJumppower)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = SetJumppower
- end)
- SectionPlayer:NewButton("Auto Collect Marshmellows", "Collects your marshmellows every 60 seconds", function()
- while true do
- local PlrName = game.Players.LocalPlayer.Name
- if game.Workspace.PlayerCampingItems[PlrName]:FindFirstChild("MallowMachine") then
- workspace.PlayerCampingItems[PlrName].MallowMachine.MallowScript.RetrieveEvent:FireServer()
- wait(60)
- end
- end
- wait(0.1)
- end)
- -- Others Section
- SectionOthers:NewButton("Car Mods", "Mods the currently equiped vehicle", function()
- for i, v in pairs(game:GetService("Workspace").Vehicles:GetChildren()) do
- if v.OwnerName.Value == game.Players.LocalPlayer.Name then
- v.Config.ConfigUpdate:Destroy()
- v.Config.Movement.MaxSpeed.Value = v.Config.Movement.MaxSpeed.Value + 100
- v.Config.Movement.Acceleration.Value = v.Config.Movement.Acceleration.Value + 1.5
- end
- wait()
- end
- end)
- SectionOthers:NewButton("Remove Bears", "Removes all bears", function()
- while true do
- for i, v in pairs(game:GetService("Workspace").Animals.Bears:GetChildren()) do
- v:Destroy()
- end
- wait(5)
- end
- end)
- SectionPlayer:NewButton("Collect all chests", "Collects all chests", function()
- local Humr = game.Players.LocalPlayer.Character.HumanoidRootPart
- local OldPos = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
- for i, v in pairs(game:GetService("Workspace").Scenery.Chests.ChestObjects:GetChildren()) do
- Humr.CFrame = v.Part.CFrame * CFrame.new(0, 10, 0)
- wait(1)
- Humr.CFrame = v.Part.CFrame * CFrame.new(0, 5, 0)
- wait(1)
- Humr.CFrame = v.Part.CFrame * CFrame.new(0, 1, 0)
- wait(1)
- end
- Humr.CFrame = CFrame.new(OldPos)
- end)
- SectionOthers:NewButton("Set time day", "Makes the lightning go to day", function()
- game:GetService("Lighting").TimeOfDay = "16:00:00"
- end)
- SectionOthers:NewButton("Set time night", "Makes the lightning go to night", function()
- game:GetService("Lighting").TimeOfDay = "23:00:00"
- end)
- -- Teleports Tab
- -- Teleport to section
- local SectionTeleports = TabTeleports:NewSection("Teleports")
- local Humr = game.Players.LocalPlayer.Character.HumanoidRootPart
- SectionTeleports:NewButton("Spawn", "Teleports you to the given location", function()
- Humr.CFrame = CFrame.new(-3014.79, 126.953, -2935.28)
- end)
- SectionTeleports:NewButton("Volcano", "Teleports you to the given location", function()
- Humr.CFrame = CFrame.new(-703.354, 540.383, 153.276)
- end)
- SectionTeleports:NewButton("Glider Platform", "Teleports you to the given location", function()
- Humr.CFrame = CFrame.new(759.966, 1144.78, -1899.79)
- end)
- SectionTeleports:NewButton("Spa", "Teleports you to the given location", function()
- Humr.CFrame = CFrame.new(2714.68, 425.211, 517.646)
- end)
- SectionTeleports:NewTextBox("Teleport to player: ", "Teleports you to the player", function(plrtarget)
- Humr.CFrame = game.Players[plrtarget].Character.HumanoidRootPart.CFrame
- end)
- SectionPlayer:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.RightShift, function()
- Library:ToggleUI()
- end)
- -- Credits Tab
- -- Credits Section
- local SectionCredits = TabCredits:NewSection("Full credits go to cursedv2#3199")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement