Advertisement
Guest User

cframe

a guest
Jul 23rd, 2022
1,876
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Speed", "DarkTheme")
  3.  
  4. local speed = Window:NewTab("Speed")
  5. local rs = speed:NewSection("CFrame Speed")
  6. rs:NewButton("CFrame Guns FIX", "ButtonInfo", function()
  7. for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  8. if v:IsA("Script") and v.Name ~= "Health" and v.Name ~= "Sound" and v:FindFirstChild("LocalScript") then
  9. v:Destroy()
  10. end
  11. end
  12. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  13. repeat
  14. wait()
  15. until game.Players.LocalPlayer.Character
  16. char.ChildAdded:Connect(function(child)
  17. if child:IsA("Script") then
  18. wait(0.1)
  19. if child:FindFirstChild("LocalScript") then
  20. child.LocalScript:FireServer()
  21. end
  22. end
  23. end)
  24. end)
  25. end)
  26. rs:NewButton("CFrame Speed (C)", "ButtonInfo", function()
  27. repeat
  28. wait()
  29. until game:IsLoaded()
  30. local L_134_ = game:service('Players')
  31. local L_135_ = L_134_.LocalPlayer
  32. repeat
  33. wait()
  34. until L_135_.Character
  35. local L_136_ = game:service('UserInputService')
  36. local L_137_ = game:service('RunService')
  37. getgenv().Multiplier = 0.5
  38. local L_138_ = true
  39. local L_139_
  40. L_136_.InputBegan:connect(function(L_140_arg0)
  41. if L_140_arg0.KeyCode == Enum.KeyCode.LeftBracket then
  42. Multiplier = Multiplier + 0.01
  43. print(Multiplier)
  44. wait(0.2)
  45. while L_136_:IsKeyDown(Enum.KeyCode.LeftBracket) do
  46. wait()
  47. Multiplier = Multiplier + 0.01
  48. print(Multiplier)
  49. end
  50. end
  51. if L_140_arg0.KeyCode == Enum.KeyCode.RightBracket then
  52. Multiplier = Multiplier - 0.01
  53. print(Multiplier)
  54. wait(0.2)
  55. while L_136_:IsKeyDown(Enum.KeyCode.RightBracket) do
  56. wait()
  57. Multiplier = Multiplier - 0.01
  58. print(Multiplier)
  59. end
  60. end
  61. if L_140_arg0.KeyCode == Enum.KeyCode.C then
  62. L_138_ = not L_138_
  63. if L_138_ == true then
  64. repeat
  65. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.Humanoid.MoveDirection * Multiplier
  66. game:GetService("RunService").Stepped:wait()
  67. until L_138_ == false
  68. end
  69. end
  70. end)
  71. end)
  72. rs:NewSlider("CFrame Speed ", "SliderInfo", 5, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  73. getgenv().Multiplier = s
  74. end)
  75. rs:NewKeybind("Toggle UI", "KeybindInfo", Enum.KeyCode.V, function()
  76. Library.ToggleUI()
  77. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement