Advertisement
2AreYouMental110

eg vv

Aug 3rd, 2022
1,117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.16 KB | None | 0 0
  1. s
  2. local thing = [[
  3. getgenv().autokillt = false
  4. getgenv().autotpt = false
  5.  
  6. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  7. local Window = Library.CreateLib("Sanic Chase", "Sentinel")
  8.  
  9. local M = Window:NewTab("Main")
  10. local M1 = M:NewSection("Main")
  11.  
  12.  
  13. M1:NewToggle("autokill", "autolag", function(bool)
  14.     getgenv().autokillt = bool
  15.     if bool == true then
  16.         autokill()
  17.     end
  18.     if bool == false then
  19.         game.Players.LocalPlayer.Character.HumanoidRootPart.Size = Vector3.new("2","2","1")
  20.         game.Players.LocalPlayer.Character.Humanoid.HipHeight = (0)
  21.     end
  22. end)
  23.  
  24. M1:NewToggle("autotp", "autolag", function(bool)
  25.     getgenv().autotpt = bool
  26.     if bool == true then
  27.         autotp()
  28.     end
  29. end)
  30.  
  31. function autotp()
  32.     spawn(function()
  33.         while getgenv().autotpt do
  34.             for i, p in ipairs(game.Players:GetPlayers()) do
  35.                 p.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  36.                 wait()
  37.             end
  38.         end
  39.     end)
  40. end
  41.  
  42. function autokill()
  43.     spawn(function()
  44.         while getgenv().autokillt do
  45.             game.Players.LocalPlayer.Character.HumanoidRootPart.Size = Vector3.new("10000","5","10000")
  46.             game.Players.LocalPlayer.Character.HumanoidRootPart.Transparency = (0.5)
  47.             game.Players.LocalPlayer.Character.Humanoid.HipHeight = (0)
  48.             wait(0.1)
  49.             game.Players.LocalPlayer.Character.HumanoidRootPart.Size = Vector3.new("10000","3","10000")
  50.             game.Players.LocalPlayer.Character.Humanoid.HipHeight = (2)
  51.             wait(0.1)
  52.             game.Players.LocalPlayer.Character.HumanoidRootPart.Size = Vector3.new("10000","4","10000")
  53.             game.Players.LocalPlayer.Character.Humanoid.HipHeight = (1)
  54.         end
  55.     end)
  56. end
  57.  
  58. ]]
  59.  
  60.  
  61.  
  62. local encoded = thing:gsub(".", function(bb) return "\\" .. bb:byte() end) or thing .. "\""
  63.  
  64. setclipboard(encoded)
  65.  
  66.  
  67. print(encoded)
  68. print("Put the above encoded string into the loadstring below between the quotation marks for the obfuscated scrippts.")
  69. print'loadstring("")()'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement