Advertisement
lukeliam2012

les goooo

Jun 2nd, 2021
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 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("Natural Disaster", "Sentinel")
  3. local plr = game.Players.LocalPlayer
  4. local char = plr.Character
  5.  
  6. -- Main
  7. local Main = Window:NewTab("Main")
  8. local MainSection = Main:NewSection("Main")
  9. MainSection:NewButton("Delete Fall dmg", "Deletes fall dmg", function()
  10. game.Workspace.Alistair2007.FallDamageScript:Destroy()
  11. end)
  12.  
  13. -- Player
  14. local Player = Window:NewTab("Player")
  15. local PlayerSection = Player:NewSection("Player")
  16. PlayerSection:NewSlider("JumpPower", "Changes JumpPower", 250, 50, function(v) -- 500 (MaxValue) | 0 (MinValue)
  17. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  18. end)
  19. PlayerSection:NewSlider("WalkSpeed", "Changes WalkSpeed", 250, 16, function(v) -- 500 (MaxValue) | 0 (MinValue)
  20. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  21. end)
  22.  
  23. -- Teleport
  24. local Teleport = Window:NewTab("Teleport")
  25. local TeleportSection = Teleport:NewSection("Teleport")
  26. TeleportSection:NewButton("Teleport Back to tower", "Teleports back to tower", function()
  27. char.HumanoidRootPart.CFrame = CFrame.new(-251.062561, 206.899918, 391.613098, 0.863673508, 0, 0.504051626, 0, 1, 0, -0.504051626, 0, 0.863673508)
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement