Advertisement
Jackson190098

Cobra Kai GUI

Mar 8th, 2022
1,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. local VLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vep1032/VepStuff/main/Rgb%20Ui"))()
  2.  
  3. MAINTTL = "STRAW HUB"
  4.  
  5. local win = VLib:Window("COBRA KAI", Color3.fromRGB(196, 40, 28))
  6.  
  7. local ss = win:Tab("MAIN")
  8. local sss = win:Tab("CREDITS")
  9.  
  10. --ANTI AFK
  11. pcall(function()
  12. local VirtualUser=game:service'VirtualUser'
  13. game:service'Players'.LocalPlayer.Idled:connect(function()
  14. warn("anti-afk")
  15. VirtualUser:CaptureController()
  16. VirtualUser:ClickButton2(Vector2.new())
  17. end)
  18. end)
  19.  
  20. --GLOBALS
  21. LP = game.Players.LocalPlayer
  22. VIM = game:GetService("VirtualInputManager")
  23.  
  24. --MAIN SCRIPT
  25. ss:Toggle("Autofarm Bags",function(t)
  26. farm2 = t
  27. while farm2 do wait()
  28. pcall(function()
  29. game:GetService("ReplicatedStorage").Attack:FireServer(math.random(1,5))
  30. for i,v in pairs(game:GetService("Workspace").PunchingBag:GetChildren()) do
  31. if v:IsA("MeshPart") then
  32. v.CFrame = CFrame.new(-150.175339, 17.7124176, 138.312851)
  33. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-150.075424, 17.7124176, 140.618729)
  34. VIM:SendKeyEvent(true, Enum.KeyCode.A, false, game)
  35. end
  36. end
  37. end)
  38. end
  39. end)
  40.  
  41. ss:Toggle("Autofarm Pushups",function(t)
  42. farm = t
  43. while farm do wait()
  44. pcall(function()
  45. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer()
  46. end)
  47. end
  48. end)
  49.  
  50. ss:Toggle("Autofarm Situps",function(t)
  51. farm3 = t
  52. while farm3 do wait()
  53. pcall(function()
  54. game:GetService("ReplicatedStorage").Remotes.SitUp:FireServer()
  55. end)
  56. end
  57. end)
  58.  
  59. ss:Button("NO STUN",function(t)
  60. LP.StatsFolder.Stunned:Destroy()
  61. game:GetService("ReplicatedStorage").Remotes.Stun:Destroy()
  62. end)
  63.  
  64. ss:Button("HideName",function()
  65. LP.Character.Head.PlayerHeader:Destroy()
  66. end)
  67.  
  68. ss:Button("Hide Accesory",function()
  69. ss:Button("Remove Accesory", function(t)
  70. local player = game.Players.LocalPlayer
  71. for i,v in pairs(player.Character:GetChildren()) do
  72. if v.ClassName == "Accessory" or v.Name == "Belt" or v.Name == "Shirt" or v.Name == "Pants" then
  73. v:Destroy()
  74. local player = game.Players.LocalPlayer
  75. for i,v in pairs(player.Character.Head:GetChildren()) do
  76. if v:IsA("Decal") then
  77. v:remove()
  78. end
  79. end
  80. end
  81. end
  82. end)
  83. end)
  84.  
  85. ss:Label("THE BOTTOM FEATURES ARE FOR PEOPLE WITH GAMEPASS")
  86.  
  87.  
  88. ss:Toggle("AutoClick Benchpress OP",function(t)
  89. bench = t
  90. while bench do wait()
  91. pcall(function()
  92. game:GetService("ReplicatedStorage").Remotes.Bench:FireServer()
  93. end )
  94. end
  95. end)
  96.  
  97. ss:Toggle("AutoUse Dumbells",function(t)
  98. dumb = t
  99. while dumb do wait()
  100. pcall(function()
  101. game:GetService("ReplicatedStorage").Remotes.Dumbell:FireServer("Equip")
  102. game:GetService("ReplicatedStorage").Remotes.Dumbell:FireServer("Rep",math.random(1,2))
  103. end)
  104. end
  105. end)
  106.  
  107. ss:Button("Invite Everyone In Dojo",function()
  108. for i,v in pairs(game.Players:GetChildren()) do
  109. if v~= game.Players.LocalPlayer then
  110. game:GetService("ReplicatedStorage").Invite:FireServer(v.Name)
  111. end
  112. end
  113. end)
  114.  
  115.  
  116.  
  117. sss:Label("MADE BY VEP#1003")
  118.  
  119. sss:Label("BUY STRAW HUB NOW")
  120.  
  121. sss:Button("Copy Straw Hub Discord",function(t)
  122. setclipboard("https://discord.gg/73jRJuYrnc")
  123. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement