Advertisement
kob123678

Pilfering Pirates

Mar 6th, 2023
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Pilfering Pirates", "Ocean")
  3.  
  4. local Tab = Window:NewTab("Classic Mode")
  5. local Classic = Tab:NewSection("Classic Mode")
  6.  
  7. Classic:NewButton("Red Ship", "Click to tp", function()
  8. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Red.MegaBombDropPart.Position)
  9. end)
  10.  
  11. Classic:NewButton("Blue Ship", "Click to tp", function()
  12. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Blue.MegaBombDropPart.Position)
  13. end)
  14.  
  15. Classic:NewButton("Green Ship", "Click to tp", function()
  16. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Green.MegaBombDropPart.Position)
  17. end)
  18.  
  19. Classic:NewButton("Yellow Ship", "Click to tp", function()
  20. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Yellow.MegaBombDropPart.Position)
  21. end)
  22.  
  23. local Tab = Window:NewTab("Mega Ship")
  24. local Mega = Tab:NewSection("Mega Ship")
  25.  
  26. Mega:NewButton("Red Ship", "Click to tp", function()
  27. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Red.MegaBombDropPart.Position)
  28. end)
  29.  
  30. Mega:NewButton("Blue Ship", "Click to tp", function()
  31. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Blue.MegaBombDropPart.Position)
  32. end)
  33.  
  34. local Tab = Window:NewTab("King Of The Hill")
  35. local King = Tab:NewSection("King Of The Hill")
  36.  
  37. King:NewButton("Red Spawn", "Click to tp", function()
  38. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-170, 263, -381)
  39. end)
  40.  
  41. King:NewButton("Blue Spawn", "Click to tp", function()
  42. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(383, 255, 432)
  43. end)
  44.  
  45. King:NewButton("Green Spawn", "Click to tp", function()
  46. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-119, 265, 432)
  47. end)
  48.  
  49. King:NewButton("Yellow Spawn", "Click to tp", function()
  50. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(609, 255, -146)
  51. end)
  52.  
  53. King:NewButton("Middle Area", "Click to tp", function()
  54. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(107, 255, 4)
  55. end)
  56.  
  57. local Tab = Window:NewTab("Abilities")
  58. local Abili = Tab:NewSection("Abilities")
  59.  
  60. Abili:NewButton("Ghost Sword", "Click to tp", function()
  61. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-263, 278, -427)
  62. end)
  63.  
  64. Abili:NewButton("Boom Ball", "Click to tp", function()
  65. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(657, 256, -124)
  66. end)
  67.  
  68. Abili:NewButton("Turbo Paintball", "Click to tp", function()
  69. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-143, 267, 483)
  70. end)
  71.  
  72. local Tab = Window:NewTab("Misc")
  73. local Misc = Tab:NewSection("Misc")
  74.  
  75. Misc:NewButton("No Water Damage", "Click to execute!", function()
  76. game:GetService("Workspace").WaterParts:Destroy()
  77. end)
  78.  
  79. Misc:NewButton("Teleport to lobby", "Click to tp", function()
  80. game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(133, 702, -48)
  81. end)
  82.  
  83. local Toggle = Tab:NewSection("Toggle UI")
  84.  
  85. Toggle:NewKeybind("Toggle UI", "Click to change keybinds", Enum.KeyCode.RightControl, function()
  86. Library:ToggleUI()
  87. end)
  88.  
  89. local Tab = Window:NewTab("Credit")
  90. local Credit = Tab:NewSection("Credit")
  91.  
  92. Credit:NewLabel("Made by Kob")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement