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("Bobby's OP Cart Delivery Service GUI V1.1", "BloodTheme")
- -- MADE BY BOBBYJONESLARRY2 DONT DELETE
- -- MAIN
- local Tab = Window:NewTab("Teleportation")
- local TeleportationSection = Tab:NewSection("Teleportation")
- TeleportationSection:NewButton("Spawn", "Teleport to Spawn", function()
- 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)
- end)
- TeleportationSection:NewButton("Tilt", "Teleport to tilt", function()
- 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)
- end)
- TeleportationSection:NewButton("TrafficJam", "Teleport to TJ", function()
- 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)
- end)
- TeleportationSection:NewButton("BlastOff", "Teleport to BO", function()
- 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)
- end)
- TeleportationSection:NewButton("The Drop", "Teleport to TD", function()
- 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)
- end)
- TeleportationSection:NewButton("Black & White", "Teleport to B&W", function()
- 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)
- end)
- TeleportationSection:NewButton("Tower Of Doom/TOD", "Teleport to TOD", function()
- 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)
- end)
- TeleportationSection:NewButton("Winners", "Teleport to Winners", function()
- 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)
- end)
- local Tab = Window:NewTab("LocalPlayer")
- local LocalPlayerSection = Tab:NewSection("LocalPlayer")
- LocalPlayerSection:NewSlider("SpeedSlider", "Speed Slider", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- LocalPlayerSection:NewToggle("Infinite Jump", "Lets you infinitely jump", function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- end)
- LocalPlayerSection:NewButton("Mute Music BROKEN", "Mutes Music", function()
- local args = {
- [1] = true
- }
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteFunctions.DataStore.SetMusicMuted:InvokeServer(unpack(args))
- end)
- LocalPlayerSection:NewButton("UnMute Music BROKEN", "UnMutes Music", function()
- local args = {
- [1] = false
- }
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteFunctions.DataStore.SetMusicMuted:InvokeServer(unpack(args))
- end)
- local Tab = Window:NewTab("Upgrades")
- local UpgradesSection = Tab:NewSection("Upgrading Defult Cart")
- UpgradesSection:NewButton("Upgrade speed of defult cart", "Upgrade speed", function()
- local args = {
- [1] = "Default Car",
- [2] = 1
- }
- end)
- UpgradesSection:NewButton("Upgrade boost of defult cart", "Upgrade boost", function()
- local args = {
- [1] = "Default Car",
- [2] = 1
- }
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteFunctions.Cars.PurchaseUpgrade:InvokeServer(unpack(args))
- end)
- UpgradesSection:NewButton("Upgrade brakes of defult cart", "Upgrade brakes", function()
- local args = {
- [1] = "Default Car",
- [2] = 2
- }
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteFunctions.Cars.PurchaseUpgrade:InvokeServer(unpack(args))
- end)
- UpgradesSection:NewButton("Upgrade packages of defult cart", "Upgrade packages", function()
- local args = {
- [1] = "Default Car",
- [2] = 4
- }
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteFunctions.Cars.PurchaseUpgrade:InvokeServer(unpack(args))
- end)
- local Tab = Window:NewTab("Credits")
- local CreditsSection = Tab:NewSection("Credits")
- local CreditsSection = Tab:NewSection("BobbyJonesLarry2 Main Coder")
- local CreditsSection = Tab:NewSection("Nogod123plsno Secondary Coder")
- local CreditsSection = Tab:NewSection("Kavo-UI Libary Website Used")
- local Tab = Window:NewTab("FE")
- local FESection = Tab:NewSection("FE")
- FESection:NewButton("INFINITE BOOST", "NOTE: DOSENT ACTUALLY BOOST", function()
- local args = {
- [1] = true
- }
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteEvents.CarControl_SetBoostFxState:FireServer(unpack(args))
- end)
- FESection:NewButton("INFINITE BRAKES", "NOTE: DOSENT ACTUALLY BRAKE", function()
- local args = {
- [1] = true,
- [2] = false
- }
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteEvents.CarControl_SetBrakeFxState:FireServer(unpack(args))
- end)
- FESection:NewButton("RESET TO START", "RESET FULLY", function()
- game:GetService("ReplicatedStorage").ReplicatedStorageShared.RemoteEvents.ResetProgress:FireServer()
- end)
- FESection:NewButton("FAKELAG", "Makes you look like you have mcdonalds wifi", function()
- loadstring(game:HttpGet('https://pastebin.com/raw/VM3b0Thg'))()
- end)
- local Tab = Window:NewTab("Admin")
- local AdminSection = Tab:NewSection("FE Admin Script")
- --BUTTONS
- AdminSection:NewButton("Infinity Yield", "FE ADMIN COMMANDS WORKING", function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
- end)
- if game.PlaceId == 11454403177 then
- Script()
- end
Advertisement
Advertisement