Advertisement
trixade

Untitled

Oct 3rd, 2021
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.92 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("PλNDA Blue", "Ocean")
  3.  
  4. local Tab = Window:NewTab("Universal")
  5. local Section = Tab:NewSection("Movement Scripts")
  6. Section:NewButton("Fly", "A simple fly command, press 'E' to toggle.", function()
  7. loadstring(game:HttpGet("https://raw.githubusercontent.com/TR011F4C3/PANDA/main/scripts/fly.lua", true))()
  8. end)
  9.  
  10. Section:NewButton("Noclip", "A simple noclip command, press 'V' to toggle.", function()
  11. noclip = false
  12. game:GetService('RunService').Stepped:connect(function()
  13. if noclip then
  14. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  15. end
  16. end)
  17. plr = game.Players.LocalPlayer
  18. mouse = plr:GetMouse()
  19. mouse.KeyDown:connect(function(key)
  20.  
  21. if key == "v" then
  22. noclip = not noclip
  23. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  24. end
  25. end)
  26. end)
  27.  
  28.  
  29. Section:NewButton("ClickTP", "Click Teleportation.", function()
  30.     mouse = game.Players.LocalPlayer:GetMouse()
  31. tool = Instance.new("Tool")
  32. tool.RequiresHandle = false
  33. tool.Name = "ClickTP"
  34. tool.Activated:connect(function()
  35. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  36. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  37. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  38. end)
  39. tool.Parent = game.Players.LocalPlayer.Backpack
  40. end)
  41.  
  42. Section:NewToggle("Infinite Jump", "A simple Infinite Jump script.", function(state)
  43.     if state then
  44. _G.infinjump = true
  45. local Player = game:GetService("Players").LocalPlayer
  46. local Mouse = Player:GetMouse()
  47. Mouse.KeyDown:connect(function(k)
  48. if _G.infinjump then
  49. if k:byte() == 32 then
  50. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  51. Humanoid:ChangeState("Jumping")
  52. wait(0.1)
  53. Humanoid:ChangeState("Seated")
  54. end
  55. end
  56. end)
  57. local Player = game:GetService("Players").LocalPlayer
  58. local Mouse = Player:GetMouse()
  59.     else
  60. if _G.infinjump == true then
  61. _G.infinjump = false
  62. else
  63. _G.infinjump = true
  64. end
  65. end
  66. end)
  67.  
  68.  
  69.  
  70. Section:NewSlider("Walk Speed", "A simple Walk Speed slider.", 500, 0, function(WalkScript) -- 500 (MaxValue) | 0 (MinValue)
  71.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkScript
  72. end)
  73.  
  74. Section:NewSlider("Jump Power", "A simple Jump Power slider.", 500, 0, function(JumpScript) -- 500 (MaxValue) | 0 (MinValue)
  75.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpScript
  76. end)
  77.  
  78. Section:NewTextBox("Goto", "Go to a player.", function(PlayerTeleportName)
  79. local playerone = game.Players.LocalPlayer.Character
  80. local playertwo = game.Workspace:FindFirstChild(PlayerTeleportName)
  81. playerone.HumanoidRootPart.CFrame = playertwo.HumanoidRootPart.CFrame * CFrame.new(0,2,0)
  82. end)
  83.  
  84. local Tab = Window:NewTab("Command Scripts")
  85. local Section = Tab:NewSection("Command Line Scripts")
  86. Section:NewButton("Infinite Yield", "Launches Infinite Yield.", function()
  87.     loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source", true))()
  88. end)
  89. Section:NewButton("CMD-X", "Launches CMD-X.", function()
  90.     loadstring(game:HttpGet("https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source", true))()
  91. end)
  92. Section:NewButton("Homebrew Admin", "Launches Homebrew Admin.", function()
  93. loadstring(game:HttpGet(('https://raw.githubusercontent.com/mgamingpro/HomebrewAdmin/master/Main'),true))()
  94. end)
  95.  
  96.  
  97.  
  98. local Tab = Window:NewTab("Game Specific")
  99. if game.PlaceId == 4913581664 then
  100. local Section = Tab:NewSection("Cart Ride Into Rdite!")
  101. Section:NewButton("Win", "Teleport to the end.", function()
  102.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(310.673279, 852.799805, 321.170715, -1, -2.03773265e-08, -1.86249469e-08, -2.03773247e-08, 1, -6.54766623e-08, 1.86249487e-08, -6.54766623e-08, -1)
  103. end)
  104.  
  105. Section:NewButton("Break Carts", "Makes carts no longer work.", function()
  106.     local function hook(cart)
  107.    pcall(function()
  108.        cart:WaitForChild("On")
  109.        cart.On:WaitForChild("Click")
  110.  
  111.        cart:WaitForChild("Configuration")
  112.        local onValue = cart.Configuration:WaitForChild("CarOn")
  113.  
  114.        if onValue.Value == true then
  115.            fireclickdetector(cart.On.Click, math.random(50,100) / 100)
  116.        end
  117.        onValue:GetPropertyChangedSignal("Value"):Connect(function()
  118.            if onValue.Value == true then
  119.                fireclickdetector(cart.On.Click, math.random(50,100) / 100)
  120.            end
  121.        end)
  122.    end)
  123. end
  124.  
  125. local cartFolder
  126. for _,v in pairs(workspace:GetChildren()) do if v.Name == "Carts" and not v:FindFirstChildOfClass("Part") then cartFolder = v end end
  127.  
  128. for _,cart in pairs(cartFolder:GetChildren()) do
  129.    if string.find(cart.Name:lower(), "cart") then hook(cart) end
  130. end
  131. cartFolder.ChildAdded:Connect(function(child)
  132.    if string.find(child.Name:lower(), "cart") then hook(child) end
  133. end)
  134. end)
  135. end
  136.  
  137. if game.PlaceId == 7396361612 then
  138.    local Section = Tab:NewSection("Game Detection is Functional")
  139. end
  140.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement