fxdogxd
Apr 18th, 2023
35
0
Never
6
This is comment for paste speed script
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. _G.Key = ""
  2. loadstring(game:HttpGet("https://testfdhub.000webhostapp.com/FD%20HUB%20GOD"))()
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  4. local Window = Library.CreateLib("FD HUB", "Midnight")
  5. local Tab = Window:NewTab("Player")
  6. local Section = Tab:NewSection("GO TO WIN")
  7. Section:NewToggle("Auto win", "", function(t)
  8. _G.TPPlayer = t
  9. while _G.TPPlayer do wait()
  10. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12,300,22)
  11. end
  12. end)
  13. local Section = Tab:NewSection("auto win")
  14.  
  15. Section:NewSlider("speed", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  16. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  17. end)
  18.  
  19. Section:NewButton("inf jump", "ButtonInfo", function()
  20. local InfiniteJumpEnabled = true game:GetService("UserInputService").JumpRequest:connect(function() if InfiniteJumpEnabled then game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") end end)
  21. end)
  22. Section:NewButton("ESP", "ButtonInfo", function()
  23. local FillColor = Color3.fromRGB(175,25,255)
  24. local DepthMode = "AlwaysOnTop"
  25. local FillTransparency = 0.5
  26. local OutlineColor = Color3.fromRGB(255,255,255)
  27. local OutlineTransparency = 0
  28.  
  29. local CoreGui = game:FindService("CoreGui")
  30. local Players = game:FindService("Players")
  31. local lp = Players.LocalPlayer
  32. local connections = {}
  33.  
  34. local Storage = Instance.new("Folder")
  35. Storage.Parent = CoreGui
  36. Storage.Name = "Highlight_Storage"
  37.  
  38. local function Highlight(plr)
  39. local Highlight = Instance.new("Highlight")
  40. Highlight.Name = plr.Name
  41. Highlight.FillColor = FillColor
  42. Highlight.DepthMode = DepthMode
  43. Highlight.FillTransparency = FillTransparency
  44. Highlight.OutlineColor = OutlineColor
  45. Highlight.OutlineTransparency = 0
  46. Highlight.Parent = Storage
  47.  
  48. local plrchar = plr.Character
  49. if plrchar then
  50. Highlight.Adornee = plrchar
  51. end
  52.  
  53. connections[plr] = plr.CharacterAdded:Connect(function(char)
  54. Highlight.Adornee = char
  55. end)
  56. end
  57.  
  58. Players.PlayerAdded:Connect(Highlight)
  59. for i,v in next, Players:GetPlayers() do
  60. Highlight(v)
  61. end
  62.  
  63. Players.PlayerRemoving:Connect(function(plr)
  64. local plrname = plr.Name
  65. if Storage[plrname] then
  66. Storage[plrname]:Destroy()
  67. end
  68. if connections[plr] then
  69. connections[plr]:Disconnect()
  70. end
  71. end)
  72. end)
  73.  
  74. Section:NewButton("noclip", "ButtonInfo", function()
  75. local Noclip = nil
  76. local Clip = nil
  77.  
  78. function noclip()
  79. Clip = false
  80. local function Nocl()
  81. if Clip == false and game.Players.LocalPlayer.Character ~= nil then
  82. for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  83. if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
  84. v.CanCollide = false
  85. end
  86. end
  87. end
  88. wait(0.21) -- basic optimization
  89. end
  90. Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
  91. end
  92.  
  93. function clip()
  94. if Noclip then Noclip:Disconnect() end
  95. Clip = true
  96. end
  97.  
  98. noclip() -- to toggle noclip() and clip()
  99. end)
  100.  
  101. Section:NewButton("TP To Game", "ButtonInfo", function()
  102. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,7,0)
  103. end)
  104.  
  105. local Tab = Window:NewTab("TP Players")
  106. local Section = Tab:NewSection("Select Player plssss")
  107. Plr = {}
  108. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  109. table.insert(Plr,v.Name)
  110. end
  111. local drop = Section:NewDropdown("Select Player!", "Click To Select", Plr, function(t)
  112. PlayerTP = t
  113. end)
  114. Section:NewButton("Click To TP", "", function()
  115. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
  116. end)
  117. Section:NewToggle("Auto Tp", "", function(t)
  118. _G.TPPlayer = t
  119. while _G.TPPlayer do wait()
  120. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
  121. end
  122. end)
  123.  
  124. Section:NewButton("Refresh Dropdown","Refresh Dropdown", function()
  125. drop:Refresh(Plr)
  126. end)
  127.  
Comments
  • fxdogxd
    1 year
    # text 0.97 KB | 0 0
    1. local lp = game:GetService "Players".LocalPlayer
    2. if lp.Character:FindFirstChild "Head" then
    3. local char = lp.Character
    4. char.Archivable = true
    5. local new = char:Clone()
    6. new.Parent = workspace
    7. lp.Character = new
    8. wait(2)
    9. local oldhum = char:FindFirstChildWhichIsA "Humanoid"
    10. local newhum = oldhum:Clone()
    11. newhum.Parent = char
    12. newhum.RequiresNeck = false
    13. oldhum.Parent = nil
    14. wait(2)
    15. lp.Character = char
    16. new:Destroy()
    17. wait(1)
    18. newhum:GetPropertyChangedSignal("Health"):Connect(
    19. function()
    20. if newhum.Health <= 0 then
    21. oldhum.Parent = lp.Character
    22. wait(1)
    23. oldhum:Destroy()
    24. end
    25. end)
    26. workspace.CurrentCamera.CameraSubject = char
    27. if char:FindFirstChild "Animate" then
    28. char.Animate.Disabled = true
    29. wait(.1)
    30. char.Animate.Disabled = false
    31. end
    32. lp.Character:FindFirstChild "Head":Destroy()
    33. end
  • fxdogxd
    1 year
    2
    # text 0.13 KB | 0 0
    1. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-8048.36426, 65.4999237, 4.4999876, 0, 0, -1, 0, 1, 0, 1, 0, 0)
    2.  
  • fxdogxd
    1 year
    # text 0.19 KB | 0 0
    1. local args = {
    2. [1] = "LOL",
    3. [2] = "All"
    4. }
    5.  
    6. game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest"):FireServer(unpack(args))
  • fxdogxd
    1 year
    2
    # text 4.69 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("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)
  • fxdogxd
    1 year
    # text 0.11 KB | 0 0
    1. local args = {
    2. [1] = "Sell"
    3. }
    4. game:GetService("ReplicatedStorage").Events.UIAction:FireServer(unpack(args))
  • fxdogxd
    1 year
    # text 0.24 KB | 0 0
    1.  
    2. local args = {
    3. [1] = "ec40655e-49ac-4997-a176-da6760420ef0"
    4. }
    5.  
    6. game:GetService("ReplicatedStorage").External.KnitPackages._Index:FindFirstChild("sleitnick_knit@1.4.3").knit.Services.WallService.RF.DoDamageToWall:InvokeServer(unpack(args))
    7.  
Add Comment
Please, Sign In to add comment