ScriptsQP

Untitled

May 27th, 2024
541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 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("LHUB", "Synapse")
  3. local Tab = Window:NewTab("AutoTP")
  4. ---------------------------------------------------
  5. local Section = Tab:NewSection("Select Player")
  6. ---------------------------------------------------
  7. plr = {}
  8. for i,v in pairs(workspace.Live:GetChildren()) do
  9. table.insert(plr,v.Name)
  10. end
  11. local dropplayer = Section:NewDropdown("Sel Player", "DropdownInf", plr, function(tplr)
  12. tp = tplr
  13. end)
  14. Section:NewButton("Refresh Players", "Refreshes Dropdown", function()
  15. dropplayer:Refresh(plr)
  16. end)
  17. Section:NewToggle("TP", "ToggleInfo", function(state)
  18. if state then
  19. pcall(function()
  20. _G.AutoTP = true
  21. while _G.AutoTP do wait()
  22. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[tp].Character.HumanoidRootPart.CFrame * CFrame.new(0,0,5)
  23. end
  24. end)
  25. else
  26. _G.AutoTP = false
  27. end
  28. end)
  29.  
  30. -----------------------------------------------------
  31. local Section = Tab:NewSection("AutoFIGHT")
  32.  
  33. Section:NewToggle("AUTOHIT", "ToggleInfo", function(state)
  34. if state then
  35. pcall(function()
  36. _G.AutoTP = true
  37. while _G.AutoTP do wait()
  38. local args = {
  39. [1] = {
  40. ["Goal"] = "LeftClick"
  41. }
  42. }
  43.  
  44. game:GetService("Players").LocalPlayer.Character.Communicate:FireServer(unpack(args))
  45. end
  46. end)
  47. else
  48. _G.AutoTP = false
  49. end
  50. end)
  51. -----------------------------------------------------
  52. Section:NewToggle("AUTOSKILL", "ToggleInfo", function(state)
  53. if state then
  54. _G.AutoTP = true
  55. while _G.AutoTP do wait()
  56. -- Script generated by SimpleSpy - credits to exx#9394
  57.  
  58. local args = {
  59. [1] = {
  60. ["Goal"] = "KeyRelease",
  61. ["Key"] = Enum.KeyCode.One
  62. }
  63. }
  64.  
  65. game:GetService("Players").LocalPlayer.Character.Communicate:FireServer(unpack(args))
  66. -- Script generated by SimpleSpy - credits to exx#9394
  67. wait(1)
  68. local args = {
  69. [1] = {
  70. ["Goal"] = "KeyPress",
  71. ["Key"] = Enum.KeyCode.Two
  72. }
  73. }
  74.  
  75. game:GetService("Players").LocalPlayer.Character.Communicate:FireServer(unpack(args))
  76. -- Script generated by SimpleSpy - credits to exx#9394
  77. wait(1)
  78. local args = {
  79. [1] = {
  80. ["Goal"] = "KeyPress",
  81. ["Key"] = Enum.KeyCode.Three
  82. }
  83. }
  84.  
  85. game:GetService("Players").LocalPlayer.Character.Communicate:FireServer(unpack(args))
  86. -- Script generated by SimpleSpy - credits to exx#9394
  87. wait(1)
  88. local args = {
  89. [1] = {
  90. ["Goal"] = "KeyPress",
  91. ["Key"] = Enum.KeyCode.Four
  92. }
  93. }
  94.  
  95. game:GetService("Players").LocalPlayer.Character.Communicate:FireServer(unpack(args))
  96. end
  97. else
  98. _G.AutoTP = false
  99. end
  100. end)
Add Comment
Please, Sign In to add comment