Advertisement
NxtB

Backpacking Gui

Dec 15th, 2021 (edited)
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.08 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3. -- Main Frame
  4. local Window = Library.CreateLib("Backpacking CursedGui", "DarkTheme")
  5. local TabMain = Window:NewTab("Main")
  6. local TabTeleports = Window:NewTab("Teleports")
  7. local TabCredits = Window:NewTab("Credits")
  8.  
  9.  
  10. -- Main Tab
  11. -- Main Section
  12. local SectionPlayer = TabMain:NewSection("Player")
  13. local SectionOthers = TabMain:NewSection("Others")
  14.  
  15.  
  16. SectionPlayer:NewSlider("Walkspeed", "Changes your walkspeed", 200, 16, function(SetWalkspeed)
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = SetWalkspeed
  18. end)
  19. SectionPlayer:NewSlider("Jumppower", "Changes your jumppower", 200, 16, function(SetJumppower)
  20. game.Players.LocalPlayer.Character.Humanoid.JumpPower = SetJumppower
  21. end)
  22.  
  23. SectionPlayer:NewButton("Auto Collect Marshmellows", "Collects your marshmellows every 60 seconds", function()
  24. while true do
  25. local PlrName = game.Players.LocalPlayer.Name
  26. if game.Workspace.PlayerCampingItems[PlrName]:FindFirstChild("MallowMachine") then
  27. workspace.PlayerCampingItems[PlrName].MallowMachine.MallowScript.RetrieveEvent:FireServer()
  28. wait(60)
  29. end
  30. end
  31. wait(0.1)
  32. end)
  33.  
  34. -- Others Section
  35. SectionOthers:NewButton("Car Mods", "Mods the currently equiped vehicle", function()
  36. for i, v in pairs(game:GetService("Workspace").Vehicles:GetChildren()) do
  37. if v.OwnerName.Value == game.Players.LocalPlayer.Name then
  38. v.Config.ConfigUpdate:Destroy()
  39. v.Config.Movement.MaxSpeed.Value = v.Config.Movement.MaxSpeed.Value + 100
  40. v.Config.Movement.Acceleration.Value = v.Config.Movement.Acceleration.Value + 1.5
  41. end
  42. wait()
  43. end
  44. end)
  45. SectionOthers:NewButton("Remove Bears", "Removes all bears", function()
  46. while true do
  47. for i, v in pairs(game:GetService("Workspace").Animals.Bears:GetChildren()) do
  48. v:Destroy()
  49. end
  50. wait(5)
  51. end
  52. end)
  53.  
  54. SectionPlayer:NewButton("Collect all chests", "Collects all chests", function()
  55. local Humr = game.Players.LocalPlayer.Character.HumanoidRootPart
  56. local OldPos = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  57. for i, v in pairs(game:GetService("Workspace").Scenery.Chests.ChestObjects:GetChildren()) do
  58. Humr.CFrame = v.Part.CFrame * CFrame.new(0, 10, 0)
  59. wait(1)
  60. Humr.CFrame = v.Part.CFrame * CFrame.new(0, 5, 0)
  61. wait(1)
  62. Humr.CFrame = v.Part.CFrame * CFrame.new(0, 1, 0)
  63. wait(1)
  64. end
  65. Humr.CFrame = CFrame.new(OldPos)
  66. end)
  67.  
  68. SectionOthers:NewButton("Set time day", "Makes the lightning go to day", function()
  69. game:GetService("Lighting").TimeOfDay = "16:00:00"
  70. end)
  71. SectionOthers:NewButton("Set time night", "Makes the lightning go to night", function()
  72. game:GetService("Lighting").TimeOfDay = "23:00:00"
  73. end)
  74.  
  75. -- Teleports Tab
  76. -- Teleport to section
  77. local SectionTeleports = TabTeleports:NewSection("Teleports")
  78. local Humr = game.Players.LocalPlayer.Character.HumanoidRootPart
  79. SectionTeleports:NewButton("Spawn", "Teleports you to the given location", function()
  80. Humr.CFrame = CFrame.new(-3014.79, 126.953, -2935.28)
  81. end)
  82. SectionTeleports:NewButton("Volcano", "Teleports you to the given location", function()
  83. Humr.CFrame = CFrame.new(-703.354, 540.383, 153.276)
  84. end)
  85. SectionTeleports:NewButton("Glider Platform", "Teleports you to the given location", function()
  86. Humr.CFrame = CFrame.new(759.966, 1144.78, -1899.79)
  87. end)
  88. SectionTeleports:NewButton("Spa", "Teleports you to the given location", function()
  89. Humr.CFrame = CFrame.new(2714.68, 425.211, 517.646)
  90. end)
  91. SectionTeleports:NewTextBox("Teleport to player: ", "Teleports you to the player", function(plrtarget)
  92. Humr.CFrame = game.Players[plrtarget].Character.HumanoidRootPart.CFrame
  93. end)
  94.  
  95.  
  96. SectionPlayer:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.RightShift, function()
  97. Library:ToggleUI()
  98. end)
  99.  
  100. -- Credits Tab
  101. -- Credits Section
  102. local SectionCredits = TabCredits:NewSection("Full credits go to cursedv2#3199")
  103.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement