Advertisement
fxdogxd
May 13th, 2023
44
0
Never
2
This is comment for paste _G.Key = "" loadstring(game:HttpGet("ht...
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("FD 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)
Advertisement
Comments
  • fxdogxd
    1 year (edited)
    # text 9.73 KB | 0 0
    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", "BloodTheme")
    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("Midnight Theme", "ButtonInfo", function()
    139. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
    140. local Window = Library.CreateLib("EQ HUB x Player", "Midnight")
    141. local Tab = Window:NewTab("Main")
    142. local Section = Tab:NewSection("Player")
    143. Section:NewSlider("speed me", "speed me", 5000, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
    144. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
    145. end)
    146. Section:NewSlider("JumpPower", "JumpPower", 5000, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
    147. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
    148. end)
    149. Section:NewButton("noclip", "noclip", function()
    150. local Noclip = nil
    151. local Clip = nil
    152.  
    153. function noclip()
    154. Clip = false
    155. local function Nocl()
    156. if Clip == false and game.Players.LocalPlayer.Character ~= nil then
    157. for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
    158. if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
    159. v.CanCollide = false
    160. end
    161. end
    162. end
    163. wait(0.21) -- basic optimization
    164. end
    165. Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
    166. end
    167.  
    168. function clip()
    169. if Noclip then Noclip:Disconnect() end
    170. Clip = true
    171. end
    172.  
    173. noclip() -- to toggle noclip() and clip()
    174. end)
    175. Section:NewButton("Fly", "Fly", function()
    176. repeat wait()
    177. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
    178. local mouse = game.Players.LocalPlayer:GetMouse()
    179. repeat wait() until mouse
    180. local plr = game.Players.LocalPlayer
    181. local torso = plr.Character.HumanoidRootPart
    182. local flying = true
    183. local deb = true
    184. local ctrl = {f = 0, b = 0, l = 0, r = 0}
    185. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
    186. local maxspeed = 50
    187. local speed = 0
    188.  
    189. function Fly()
    190. local bg = Instance.new("BodyGyro", torso)
    191. bg.P = 9e4
    192. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
    193. bg.cframe = torso.CFrame
    194. local bv = Instance.new("BodyVelocity", torso)
    195. bv.velocity = Vector3.new(0,0.1,0)
    196. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
    197. repeat wait()
    198. plr.Character.Humanoid.PlatformStand = true
    199. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
    200. speed = speed+.5+(speed/maxspeed)
    201. if speed > maxspeed then
    202. speed = maxspeed
    203. end
    204. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
    205. speed = speed-1
    206. if speed < 0 then
    207. speed = 0
    208. end
    209. end
    210. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
    211. 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
    212. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
    213. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
    214. 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
    215. else
    216. bv.velocity = Vector3.new(0,0.1,0)
    217. end
    218. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
    219. until not flying
    220. ctrl = {f = 0, b = 0, l = 0, r = 0}
    221. lastctrl = {f = 0, b = 0, l = 0, r = 0}
    222. speed = 0
    223. bg:Destroy()
    224. bv:Destroy()
    225. plr.Character.Humanoid.PlatformStand = false
    226. end
    227. mouse.KeyDown:connect(function(key)
    228. if key:lower() == "e" then
    229. if flying then flying = false
    230. else
    231. flying = true
    232. Fly()
    233. end
    234. elseif key:lower() == "w" then
    235. ctrl.f = 1
    236. elseif key:lower() == "s" then
    237. ctrl.b = -1
    238. elseif key:lower() == "a" then
    239. ctrl.l = -1
    240. elseif key:lower() == "d" then
    241. ctrl.r = 1
    242. end
    243. end)
    244. mouse.KeyUp:connect(function(key)
    245. if key:lower() == "w" then
    246. ctrl.f = 0
    247. elseif key:lower() == "s" then
    248. ctrl.b = 0
    249. elseif key:lower() == "a" then
    250. ctrl.l = 0
    251. elseif key:lower() == "d" then
    252. ctrl.r = 0
    253. end
    254. end)
    255. Fly()
    256. end)
    257. Section:NewButton("infjump", "infjump", function()
    258. local InfiniteJumpEnabled = true
    259. game:GetService("UserInputService").JumpRequest:connect(function()
    260. if InfiniteJumpEnabled then
    261. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
    262. end
    263. end)
    264. end)
    265. Section:NewButton("Mode God", "Mode God", function()
    266. loadstring(game:HttpGet("https://raw.githubusercontent.com/cypherdh/GodMode-V3/main/script"))()
    267. end)
    268.  
    269. Section:NewButton("Rejoin", "brooooooooooo", function()
    270. while wait(0) do
    271. game:GetService("TeleportService"):Teleport(game.PlaceId)
    272. end
    273. end)
    274. local Tab = Window:NewTab("Theme")
    275. local Section = Tab:NewSection("Theme")
    276. Section:NewButton("Blood Theme", "ButtonInfo", function()
    277. loadstring(game:HttpGet("https://pastebin.com/raw/XV0sZh9v",true))()
    278. end)
    279. end)
  • fxdogxd
    1 year
    # text 4.90 KB | 0 0
    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)
Add Comment
Please, Sign In to add comment
Advertisement