Advertisement
fxdogxd
May 13th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("EQ HUB x Player", "Midnight")
  3. local Tab = Window:NewTab("Main")
  4. local Section = Tab:NewSection("Player")
  5. Section:NewSlider("speed me", "speed me", 5000, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  6. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  7. end)
  8. Section:NewSlider("JumpPower", "JumpPower", 5000, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  9. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  10. end)
  11. Section:NewButton("noclip", "noclip", function()
  12. local Noclip = nil
  13. local Clip = nil
  14.  
  15. function noclip()
  16. Clip = false
  17. local function Nocl()
  18. if Clip == false and game.Players.LocalPlayer.Character ~= nil then
  19. for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  20. if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
  21. v.CanCollide = false
  22. end
  23. end
  24. end
  25. wait(0.21) -- basic optimization
  26. end
  27. Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
  28. end
  29.  
  30. function clip()
  31. if Noclip then Noclip:Disconnect() end
  32. Clip = true
  33. end
  34.  
  35. noclip() -- to toggle noclip() and clip()
  36. end)
  37. Section:NewButton("Fly", "Fly", function()
  38. repeat wait()
  39. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  40. local mouse = game.Players.LocalPlayer:GetMouse()
  41. repeat wait() until mouse
  42. local plr = game.Players.LocalPlayer
  43. local torso = plr.Character.HumanoidRootPart
  44. local flying = true
  45. local deb = true
  46. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  47. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  48. local maxspeed = 50
  49. local speed = 0
  50.  
  51. function Fly()
  52. local bg = Instance.new("BodyGyro", torso)
  53. bg.P = 9e4
  54. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  55. bg.cframe = torso.CFrame
  56. local bv = Instance.new("BodyVelocity", torso)
  57. bv.velocity = Vector3.new(0,0.1,0)
  58. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  59. repeat wait()
  60. plr.Character.Humanoid.PlatformStand = true
  61. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  62. speed = speed+.5+(speed/maxspeed)
  63. if speed > maxspeed then
  64. speed = maxspeed
  65. end
  66. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  67. speed = speed-1
  68. if speed < 0 then
  69. speed = 0
  70. end
  71. end
  72. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  73. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  74. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  75. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  76. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  77. else
  78. bv.velocity = Vector3.new(0,0.1,0)
  79. end
  80. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  81. until not flying
  82. ctrl = {f = 0, b = 0, l = 0, r = 0}
  83. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  84. speed = 0
  85. bg:Destroy()
  86. bv:Destroy()
  87. plr.Character.Humanoid.PlatformStand = false
  88. end
  89. mouse.KeyDown:connect(function(key)
  90. if key:lower() == "e" then
  91. if flying then flying = false
  92. else
  93. flying = true
  94. Fly()
  95. end
  96. elseif key:lower() == "w" then
  97. ctrl.f = 1
  98. elseif key:lower() == "s" then
  99. ctrl.b = -1
  100. elseif key:lower() == "a" then
  101. ctrl.l = -1
  102. elseif key:lower() == "d" then
  103. ctrl.r = 1
  104. end
  105. end)
  106. mouse.KeyUp:connect(function(key)
  107. if key:lower() == "w" then
  108. ctrl.f = 0
  109. elseif key:lower() == "s" then
  110. ctrl.b = 0
  111. elseif key:lower() == "a" then
  112. ctrl.l = 0
  113. elseif key:lower() == "d" then
  114. ctrl.r = 0
  115. end
  116. end)
  117. Fly()
  118. end)
  119. Section:NewButton("infjump", "infjump", function()
  120. local InfiniteJumpEnabled = true
  121. game:GetService("UserInputService").JumpRequest:connect(function()
  122. if InfiniteJumpEnabled then
  123. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  124. end
  125. end)
  126. end)
  127. Section:NewButton("Mode God", "Mode God", function()
  128. loadstring(game:HttpGet("https://raw.githubusercontent.com/cypherdh/GodMode-V3/main/script"))()
  129. end)
  130.  
  131. Section:NewButton("Rejoin", "brooooooooooo", function()
  132. while wait(0) do
  133. game:GetService("TeleportService"):Teleport(game.PlaceId)
  134. end
  135. end)
  136. local Tab = Window:NewTab("Theme")
  137. local Section = Tab:NewSection("Theme")
  138. Section:NewButton("Blood Theme", "ButtonInfo", function()
  139. loadstring(game:HttpGet("https://pastebin.com/raw/XV0sZh9v",true))()
  140. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement