Guest User

Auto Block TSB

a guest
Jul 21st, 2024
2,796
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. local Orion = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))()
  2.  
  3. local window = Orion:MakeWindow({
  4. Name = "TSB Auto Block Tester",
  5. HidePremium = false,
  6. SaveConfig = false,
  7. IntroEnabled = true,
  8. IntroText = "Welcome to TSB Auto Block Tester!",
  9. Icon = "rbxassetid://4483345998"
  10. })
  11.  
  12. -- Tab 1: Auto Block
  13. local autoBlockTab = window:MakeTab({
  14. Name = "Auto Block",
  15. Icon = "rbxassetid://4483345998",
  16. PremiumOnly = false
  17. })
  18.  
  19. local autoBlockSection = autoBlockTab:AddSection({
  20. Text = "Auto Block"
  21. })
  22.  
  23. local autoBlockToggle = autoBlockSection:AddToggle({
  24. Name = "Auto Block",
  25. Callback = function(state)
  26. if state then
  27. while true do
  28. wait()
  29. for _, v in pairs(game.Workspace:GetDescendants()) do
  30. if v:IsA("Part") and v.Name == "Sword" then
  31. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 0)
  32. wait(0.1)
  33. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 1)
  34. end
  35. end
  36. end
  37. else
  38. -- stop auto block code here
  39. end
  40. end
  41. })
  42.  
  43. local blockDelaySlider = autoBlockSection:AddSlider({
  44. Name = "Block Delay",
  45. Min = 0,
  46. Max = 10,
  47. Callback = function(value)
  48. -- set block delay here
  49. end
  50. })
  51.  
  52. local blockRangeSlider = autoBlockSection:AddSlider({
  53. Name = "Block Range",
  54. Min = 0,
  55. Max = 10,
  56. Callback = function(value)
  57. -- set block range here
  58. end
  59. })
Advertisement
Add Comment
Please, Sign In to add comment