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 Window = Library.CreateLib("Natural Disaster", "Sentinel")
- local plr = game.Players.LocalPlayer
- local char = plr.Character
- -- Main
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Main")
- MainSection:NewButton("Delete Fall dmg", "Deletes fall dmg", function()
- game.Workspace.Alistair2007.FallDamageScript:Destroy()
- end)
- -- Player
- local Player = Window:NewTab("Player")
- local PlayerSection = Player:NewSection("Player")
- PlayerSection:NewSlider("JumpPower", "Changes JumpPower", 250, 50, function(v) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
- end)
- PlayerSection:NewSlider("WalkSpeed", "Changes WalkSpeed", 250, 16, function(v) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
- end)
- -- Teleport
- local Teleport = Window:NewTab("Teleport")
- local TeleportSection = Teleport:NewSection("Teleport")
- TeleportSection:NewButton("Teleport Back to tower", "Teleports back to tower", function()
- char.HumanoidRootPart.CFrame = CFrame.new(-251.062561, 206.899918, 391.613098, 0.863673508, 0, 0.504051626, 0, 1, 0, -0.504051626, 0, 0.863673508)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement