Advertisement
2AreYouMental110

blox fruits modify boat gui

Sep 19th, 2022 (edited)
1,685
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.98 KB | None | 0 0
  1. --------------------------SETTINGS---------------------------------
  2.  
  3. local pl = 70000 -- max value for power
  4. local dl = 500 -- max value for dampening (kinda dangerous)
  5. local tsl = 50 -- max value for turn speed
  6. local tl = 500 -- max value for torque
  7. local msl = 16 -- max value for max speed (also kinda dangerous)
  8.  
  9. -------------------------------------------------------------------
  10.  
  11.  
  12. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  13. local Window = Library.CreateLib("Blox Fruits Boat Gui", "Sentinel")
  14.  
  15. local A = Window:NewTab("Boat Stuff")
  16. local A1 = A:NewSection("Note: you have to be in a vehicle seat on the boat")
  17.  
  18. A1:NewSlider("Boat Power", "power", pl, 0, function(power)
  19.     local seat = game.Players.LocalPlayer.Character.Humanoid.SeatPart
  20.     if seat == nil then
  21.         warn("why arent you on a boat")
  22.     else
  23.         seat.BodyGyro.P = power
  24.     end
  25. end)
  26.  
  27. A1:NewSlider("Boat Turn Speed", "turn speed", tsl, 0, function(turnspeed)
  28.     local seat = game.Players.LocalPlayer.Character.Humanoid.SeatPart
  29.     if seat == nil then
  30.         warn("why arent you on a boat")
  31.     else
  32.         seat.TurnSpeed = turnspeed
  33.     end
  34. end)
  35.  
  36. A1:NewSlider("Boat Dampening", "dampening", dl, 0, function(dampening)
  37.     local seat = game.Players.LocalPlayer.Character.Humanoid.SeatPart
  38.     if seat == nil then
  39.         warn("why arent you on a boat")
  40.     else
  41.         seat.BodyGyro.D = dampening
  42.     end
  43. end)
  44.  
  45. A1:NewSlider("Boat Torque", "torque", tl, 0, function(torque)
  46.     local seat = game.Players.LocalPlayer.Character.Humanoid.SeatPart
  47.     if seat == nil then
  48.         warn("why arent you on a boat")
  49.     else
  50.         seat.Torque = torque
  51.     end
  52. end)
  53.  
  54. A1:NewSlider("Boat Max Speed", "max speed", ms, 0, function(ms)
  55.     local seat = game.Players.LocalPlayer.Character.Humanoid.SeatPart
  56.     if seat == nil then
  57.         warn("why arent you on a boat")
  58.     else
  59.         seat.MaxSpeed = mx
  60.     end
  61. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement