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("Pilfering Pirates", "Ocean")
- local Tab = Window:NewTab("Classic Mode")
- local Classic = Tab:NewSection("Classic Mode")
- Classic:NewButton("Red Ship", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Red.MegaBombDropPart.Position)
- end)
- Classic:NewButton("Blue Ship", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Blue.MegaBombDropPart.Position)
- end)
- Classic:NewButton("Green Ship", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Green.MegaBombDropPart.Position)
- end)
- Classic:NewButton("Yellow Ship", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Yellow.MegaBombDropPart.Position)
- end)
- local Tab = Window:NewTab("Mega Ship")
- local Mega = Tab:NewSection("Mega Ship")
- Mega:NewButton("Red Ship", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Red.MegaBombDropPart.Position)
- end)
- Mega:NewButton("Blue Ship", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(game:GetService("Workspace").Map.Ships.Blue.MegaBombDropPart.Position)
- end)
- local Tab = Window:NewTab("King Of The Hill")
- local King = Tab:NewSection("King Of The Hill")
- King:NewButton("Red Spawn", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-170, 263, -381)
- end)
- King:NewButton("Blue Spawn", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(383, 255, 432)
- end)
- King:NewButton("Green Spawn", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-119, 265, 432)
- end)
- King:NewButton("Yellow Spawn", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(609, 255, -146)
- end)
- King:NewButton("Middle Area", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(107, 255, 4)
- end)
- local Tab = Window:NewTab("Abilities")
- local Abili = Tab:NewSection("Abilities")
- Abili:NewButton("Ghost Sword", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-263, 278, -427)
- end)
- Abili:NewButton("Boom Ball", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(657, 256, -124)
- end)
- Abili:NewButton("Turbo Paintball", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(-143, 267, 483)
- end)
- local Tab = Window:NewTab("Misc")
- local Misc = Tab:NewSection("Misc")
- Misc:NewButton("No Water Damage", "Click to execute!", function()
- game:GetService("Workspace").WaterParts:Destroy()
- end)
- Misc:NewButton("Teleport to lobby", "Click to tp", function()
- game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame = CFrame.new(133, 702, -48)
- end)
- local Toggle = Tab:NewSection("Toggle UI")
- Toggle:NewKeybind("Toggle UI", "Click to change keybinds", Enum.KeyCode.RightControl, function()
- Library:ToggleUI()
- end)
- local Tab = Window:NewTab("Credit")
- local Credit = Tab:NewSection("Credit")
- Credit:NewLabel("Made by Kob")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement