local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local window = library.CreateLib("OpScripts - Spider Clan", "DarkTheme") local tab = window:NewTab("Main") local players = game:GetService("Players") local webevent = game:GetService("ReplicatedStorage"):WaitForChild("WebEvent") local player = players.LocalPlayer local section = tab:NewSection("Anti attack + tp") local section2 = tab:NewSection("Anti Attack") local tab2 = window:NewTab("Webs") local section3 = tab2:NewSection("Webs") section:NewButton("Anti Attack Window Spiders", "Select a team then run this", function() game:GetService("ReplicatedStorage").TeamA:FireServer() end) section:NewButton("Anti Attack Wolf Spiders", "Select a team then run this", function() game:GetService("ReplicatedStorage").TeamB:FireServer() end) section:NewButton("Anti Attack Widow Spiders", "Select a team then run this", function() game:GetService("ReplicatedStorage").TeamC:FireServer() end) section:NewButton("Anti Attack Tarantulas", "Select a team then run this", function() game:GetService("ReplicatedStorage").TeamD:FireServer() end) section2:NewButton("Anti Attack Window Spiders", "Select a team then run this", function() local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") local originalcframe = hrp.CFrame game:GetService("ReplicatedStorage").TeamA:FireServer() wait(1) hrp.CFrame = originalcframe end) section2:NewButton("Anti Attack Wolf Spiders", "Select a team then run this", function() local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") local originalcframe = hrp.CFrame game:GetService("ReplicatedStorage").TeamB:FireServer() wait(1) hrp.CFrame = originalcframe end) section2:NewButton("Anti Attack Widow Spiders", "Select a team then run this", function() local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") local originalcframe = hrp.CFrame game:GetService("ReplicatedStorage").TeamC:FireServer() wait(1) hrp.CFrame = originalcframe end) section2:NewButton("Anti Attack Tarantulas", "Select a team then run this", function() local character = player.Character or player.CharacterAdded:Wait() local hrp = character:WaitForChild("HumanoidRootPart") local originalcframe = hrp.CFrame game:GetService("ReplicatedStorage").TeamD:FireServer() wait(1) hrp.CFrame = originalcframe end) local superweb = false local spamweb = false local crashing = false section3:NewToggle("Super Spam Webs", "Spams webs alot", function(state) superweb = state end) section3:NewToggle("Spam Webs", "Spams webs slower", function(state) spamweb = state end) section3:NewToggle("Crash Server", "Might take a bit", function(state) crashing = state end) coroutine.wrap(function() while true do if superweb then webevent:FireServer(player) task.wait(0) end if spamweb then webevent:FireServer(player) task.wait(0.1) end if crashing then for i = 1, 100000 do webevent:FireServer(player) end end task.wait() end end)()