Advertisement
BobbyJonesLarry

Cart Ride Delivery Service GUI V1

Mar 24th, 2023
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.64 KB | Gaming | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Bobby's OP Cart Delivery Service GUI", "BloodTheme")
  3.  
  4. -- MADE BY BOBBYJONESLARRY2 DONT DELETE
  5. -- MAIN
  6.  
  7. local Tab = Window:NewTab("Teleportation")
  8. local TeleportationSection = Tab:NewSection("Teleportation")
  9.  
  10. TeleportationSection:NewButton("Spawn", "Teleport to Spawn", function()
  11. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(38.3172569, 2.97110009, 49.2681351, 0.913577855, 9.23363217e-08, -0.406663895, -8.4307608e-08, 1, 3.76595004e-08, 0.406663895, -1.20026628e-10, 0.913577855)
  12. end)
  13.  
  14. TeleportationSection:NewButton("Tilt", "Teleport to tilt", function()
  15. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-281.076996, 143.500336, 88.4678802, 0.766061246, 0, 0.642767608, 0, 1, 0, -0.642767608, 0, 0.766061246)
  16. end)
  17.  
  18. TeleportationSection:NewButton("TrafficJam", "Teleport to TJ", function()
  19. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(264.051422, 78.8787308, 176.154205, 0.950219333, -2.65832014e-08, 0.311581761, 3.76416054e-08, 1, -2.94772722e-08, -0.311581761, 3.97383104e-08, 0.950219333)
  20. end)
  21.  
  22. TeleportationSection:NewButton("BlastOff", "Teleport to BO", function()
  23. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(500.975403, 162.843872, 34.9243011, 0.434579104, 3.70479492e-09, -0.900633693, -7.98308264e-09, 1, 2.61498323e-10, 0.900633693, 7.07619119e-09, 0.434579104)
  24. end)
  25.  
  26. TeleportationSection:NewButton("The Drop", "Teleport to TD", function()
  27. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-107.784927, 173.038544, 757.076904, 0.744515061, -7.03518097e-08, -0.667605639, 4.3467157e-08, 1, -5.69046357e-08, 0.667605639, 1.33474405e-08, 0.744515061)
  28. end)
  29.  
  30. TeleportationSection:NewButton("Black & White", "Teleport to B&W", function()
  31. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(404.947357, 313.522614, 524.374817, 0.273961395, -5.36065525e-10, -0.961740673, -2.5853969e-10, 1, -6.31038499e-10, 0.961740673, 4.21528312e-10, 0.273961395)
  32. end)
  33.  
  34.  
  35. TeleportationSection:NewButton("Tower Of Doom/TOD", "Teleport to TOD", function()
  36. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(680.496399, 248.035736, 436.566406, 0.982961476, 6.37048245e-08, 0.183811828, -5.49500285e-08, 1, -5.27227542e-08, -0.183811828, 4.17239718e-08, 0.982961476)
  37. end)
  38.  
  39. TeleportationSection:NewButton("Winners", "Teleport to Winners", function()
  40. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1013.52167, 10.5653419, 115.161285, -0.660219848, -2.78281798e-09, 0.751072407, -6.7493473e-09, 1, -2.22779462e-09, -0.751072407, -6.5400827e-09, -0.660219848)
  41. end)
  42.  
  43. local Tab = Window:NewTab("LocalPlayer")
  44. local LocalPlayerSection = Tab:NewSection("LocalPlayer")
  45.  
  46. LocalPlayerSection:NewSlider("SpeedSlider", "Speed Slider", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  47. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  48. end)
  49.  
  50. LocalPlayerSection:NewToggle("Infinite Jump", "Lets you infinitely jump", function()
  51. local InfiniteJumpEnabled = true
  52. game:GetService("UserInputService").JumpRequest:connect(function()
  53. if InfiniteJumpEnabled then
  54. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  55. end
  56. end)
  57. end)
  58.  
  59.  
  60. local Tab = Window:NewTab("Credits")
  61. local CreditsSection = Tab:NewSection("Credits")
  62. local CreditsSection = Tab:NewSection("BobbyJonesLarry2 Main Coder")
  63. local CreditsSection = Tab:NewSection("Nogod123plsno Secondary Coder")
  64. local CreditsSection = Tab:NewSection("Kavo-UI Libary Website Used")
  65.  
  66. local Tab = Window:NewTab("FE")
  67. local FESection = Tab:NewSection("FE")
  68. FESection:NewButton("INFINITE BOOST", "NOTE: DOSENT ACTUALLY BOOST", function()
  69. local args = {
  70. [1] = true
  71. }
  72.  
  73. game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteEvents.CarControl_SetBoostFxState:FireServer(unpack(args))
  74.  
  75. end)
  76. FESection:NewButton("INFINITE BRAKES", "NOTE: DOSENT ACTUALLY BRAKE", function()
  77. local args = {
  78. [1] = true,
  79. [2] = false
  80. }
  81.  
  82. game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteEvents.CarControl_SetBrakeFxState:FireServer(unpack(args))
  83. end)
  84. FESection:NewButton("RESET TO START", "RESET FULLY", function()
  85.  
  86. game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteEvents.ResetProgress:FireServer()
  87.  
  88. end)
  89. if game.PlaceId == 11454403177 then
  90. Script()
  91. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement