Advertisement
1zxyuuki

Inv

Sep 21st, 2024 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 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("AU Reborn", "DarkTheme")
  3. local Tab = Window:NewTab("Player")
  4. local A = Tab:NewSection("Player Features")
  5.  
  6. A:NewToggle("Invisibility", "", function(t)
  7. if t then
  8. A = Instance.new("Part", workspace)
  9. A.Anchored = true
  10. A.Size = Vector3.new(2000,1,2000)
  11. A.Position = game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,-45,0)
  12. task.wait(.1)
  13. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,-44,0)
  14. task.wait(.1)
  15. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.Part1 = nil
  16. task.wait(.1)
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,47,0)
  18. else
  19. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.Part1 = game.Players.LocalPlayer.Character.Torso
  20. end
  21. end)
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement