Advertisement
fxdogxd
Apr 18th, 2023
34
0
Never
1
This is comment for paste speed script
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", "Midnight")
  3. local Tab = Window:NewTab("Player")
  4. local Section = Tab:NewSection("GO TO WIN")
  5. Section:NewToggle("Auto win", "", function(t)
  6. _G.TPPlayer = t
  7. while _G.TPPlayer do wait()
  8. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12,300,22)
  9. end
  10. end)
  11. local Section = Tab:NewSection("auto win")
  12.  
  13. Section:NewSlider("speed", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  15. end)
  16.  
  17. Section:NewButton("inf jump", "ButtonInfo", function()
  18. local InfiniteJumpEnabled = true game:GetService("UserInputService").JumpRequest:connect(function() if InfiniteJumpEnabled then game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") end end)
  19. end)
  20. Section:NewButton("ESP", "ButtonInfo", function()
  21. local FillColor = Color3.fromRGB(175,25,255)
  22. local DepthMode = "AlwaysOnTop"
  23. local FillTransparency = 0.5
  24. local OutlineColor = Color3.fromRGB(255,255,255)
  25. local OutlineTransparency = 0
  26.  
  27. local CoreGui = game:FindService("CoreGui")
  28. local Players = game:FindService("Players")
  29. local lp = Players.LocalPlayer
  30. local connections = {}
  31.  
  32. local Storage = Instance.new("Folder")
  33. Storage.Parent = CoreGui
  34. Storage.Name = "Highlight_Storage"
  35.  
  36. local function Highlight(plr)
  37. local Highlight = Instance.new("Highlight")
  38. Highlight.Name = plr.Name
  39. Highlight.FillColor = FillColor
  40. Highlight.DepthMode = DepthMode
  41. Highlight.FillTransparency = FillTransparency
  42. Highlight.OutlineColor = OutlineColor
  43. Highlight.OutlineTransparency = 0
  44. Highlight.Parent = Storage
  45.  
  46. local plrchar = plr.Character
  47. if plrchar then
  48. Highlight.Adornee = plrchar
  49. end
  50.  
  51. connections[plr] = plr.CharacterAdded:Connect(function(char)
  52. Highlight.Adornee = char
  53. end)
  54. end
  55.  
  56. Players.PlayerAdded:Connect(Highlight)
  57. for i,v in next, Players:GetPlayers() do
  58. Highlight(v)
  59. end
  60.  
  61. Players.PlayerRemoving:Connect(function(plr)
  62. local plrname = plr.Name
  63. if Storage[plrname] then
  64. Storage[plrname]:Destroy()
  65. end
  66. if connections[plr] then
  67. connections[plr]:Disconnect()
  68. end
  69. end)
  70. end)
  71.  
  72. Section:NewButton("noclip", "ButtonInfo", function()
  73. local Noclip = nil
  74. local Clip = nil
  75.  
  76. function noclip()
  77. Clip = false
  78. local function Nocl()
  79. if Clip == false and game.Players.LocalPlayer.Character ~= nil then
  80. for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  81. if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
  82. v.CanCollide = false
  83. end
  84. end
  85. end
  86. wait(0.21) -- basic optimization
  87. end
  88. Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
  89. end
  90.  
  91. function clip()
  92. if Noclip then Noclip:Disconnect() end
  93. Clip = true
  94. end
  95.  
  96. noclip() -- to toggle noclip() and clip()
  97. end)
  98.  
  99. Section:NewButton("TP To Game", "ButtonInfo", function()
  100. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,7,0)
  101. end)
  102.  
  103. local Tab = Window:NewTab("TP Players")
  104. local Section = Tab:NewSection("Select Player plssss")
  105. Plr = {}
  106. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  107. table.insert(Plr,v.Name)
  108. end
  109. local drop = Section:NewDropdown("Select Player!", "Click To Select", Plr, function(t)
  110. PlayerTP = t
  111. end)
  112. Section:NewButton("Click To TP", "", function()
  113. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
  114. end)
  115. Section:NewToggle("Auto Tp", "", function(t)
  116. _G.TPPlayer = t
  117. while _G.TPPlayer do wait()
  118. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
  119. end
  120. end)
  121.  
  122. Section:NewButton("Refresh Dropdown","Refresh Dropdown", function()
  123. drop:Refresh(Plr)
  124. end)
  125.  
Advertisement
Comments
  • fxdogxd
    1 year
    # text 0.13 KB | 0 0
    1. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-51.5656433, 65.0000458, 1369.09009, 1, 0, 0, 0, 1, 0, 0, 0, 1)
    2.  
Add Comment
Please, Sign In to add comment
Advertisement