Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Orion = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))()
- local window = Orion:MakeWindow({
- Name = "TSB Auto Block Tester",
- HidePremium = false,
- SaveConfig = false,
- IntroEnabled = true,
- IntroText = "Welcome to TSB Auto Block Tester!",
- Icon = "rbxassetid://4483345998"
- })
- -- Tab 1: Auto Block
- local autoBlockTab = window:MakeTab({
- Name = "Auto Block",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local autoBlockSection = autoBlockTab:AddSection({
- Text = "Auto Block"
- })
- local autoBlockToggle = autoBlockSection:AddToggle({
- Name = "Auto Block",
- Callback = function(state)
- if state then
- while true do
- wait()
- for _, v in pairs(game.Workspace:GetDescendants()) do
- if v:IsA("Part") and v.Name == "Sword" then
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 0)
- wait(0.1)
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 1)
- end
- end
- end
- else
- -- stop auto block code here
- end
- end
- })
- local blockDelaySlider = autoBlockSection:AddSlider({
- Name = "Block Delay",
- Min = 0,
- Max = 10,
- Callback = function(value)
- -- set block delay here
- end
- })
- local blockRangeSlider = autoBlockSection:AddSlider({
- Name = "Block Range",
- Min = 0,
- Max = 10,
- Callback = function(value)
- -- set block range here
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment