D3M0N_Scripts

test2

Jan 21st, 2023 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1.  
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3.  
  4. local Window = Library.CreateLib("Counter Blox Ultra", "BloodTheme")
  5. --Main
  6. local Tab = Window:NewTab("Main")
  7.  
  8. local MainSection = Tab:NewSection("Main Cheats")
  9.  
  10. MainSection:NewButton("ESP&Aimbot", "Target Enemies/Wallhack", function()
  11. loadstring(game:HttpGet("https://raw.githubusercontent.com/Blissful4992/Miscellaneous/main/UNIVERSAL.lua"))() print("Clicked")
  12. end)
  13.  
  14. MainSection:NewButton("FOV Changer", "Changes your FOV", function()
  15. loadstring(game:HttpGet("https://pastebin.com/raw/VBn4XRju"))() print("Clicked")
  16. end)
  17. --Local Player
  18.  
  19. local Player = Window:NewTab("Local Player")
  20. local PlayerSection = Player:NewSection("Player")
  21.  
  22. PlayerSection:NewSlider("Walkspeed", "Increase your walkspeed", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  23. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  24. end)
  25.  
  26. PlayerSection:NewSlider("Jumppower", "Increase your jumppower", 350, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  27. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  28. end)
  29.  
  30. PlayerSection:NewButton("Fly", "A simple fly command, press 'E' to toggle.", function()
  31. loadstring(game:HttpGet("https://raw.githubusercontent.com/TR011F4C3/PANDA/main/scripts/fly.lua", true))()
  32. end)
  33.  
  34. PlayerSection:NewToggle("Infinite Jump", "You can jump infinite", function(state)
  35. if state then
  36. _G.infinjump = true
  37. local Player = game:GetService("Players").LocalPlayer
  38. local Mouse = Player:GetMouse()
  39. Mouse.KeyDown:connect(function(k)
  40. if _G.infinjump then
  41. if k:byte() == 32 then
  42. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  43. Humanoid:ChangeState("Jumping")
  44. wait(0.1)
  45. Humanoid:ChangeState("Seated")
  46. end
  47. end
  48. end)
  49. local Player = game:GetService("Players").LocalPlayer
  50. local Mouse = Player:GetMouse()
  51. else
  52. if _G.infinjump == true then
  53. _G.infinjump = false
  54. else
  55. _G.infinjump = true
  56. end
  57. end
  58. end)
  59. --Credit
  60. local Tab = Window:NewTab("Credits")
  61.  
  62. local Section = Tab:NewSection("Created by D3M0N_HUN")
  63.  
  64. local Section = Tab:NewSection("Script Vault")
Tags: test
Advertisement
Add Comment
Please, Sign In to add comment