-- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! local kavoUi = loadstring(game:HttpGet("https://raw.githubusercontent.com/PrototypeHub/SytroNight4ROBLOX/main/libraries/kavo.lua"))() local entity = loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/Libraries/entityHandler.lua", true))() -- Function to insult players in chat local function insultPlayer() local players = game.Players:GetChildren() local randomPlayer = players[math.random(1, #players)] game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(randomPlayer.Name .. " Imagine Not Being Able To Exploit", "All") end -- Bind to stepped event for insults local function bindInsults() while wait(math.random(5, 15)) do insultPlayer() end end -- Create UI local window = kavoUi.CreateLib("NestersHub Bedwars (By FuseBuzzFart)", "Midnight") local Tab1 = window:NewTab("Main") local Tab1Section = Tab1:NewSection("Bedwars") -- Toggle to insult players Tab1Section:NewToggle("Auto Insult", "Insults players automatically", function(state) if state then bindInsults() end end) -- Section for miscellaneous features local Tab2 = window:NewTab("Exploits") local Tab2Section = Tab2:NewSection("Other Exploits") -- Button to make the server leave Tab2Section:NewButton("Make Server Leave", "Opens Make Server Leave", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/JNHHGaming123/JN-HH-Gaming-AutoToxic1/main/README.md", true))() end) -- Section for animations and effects local Tab3 = window:NewTab("Animations & Effects") local Tab3Section = Tab3:NewSection("Animations") -- Button to play zombie animation Tab3Section:NewButton("Zombie Animation", "Plays Zombie Animation", function() loadstring(game:HttpGet("https://pastebin.com/raw/t3yTSPRn", true))() end) -- Button to play ninja animation Tab3Section:NewButton("Ninja Animation", "Plays Ninja Animation", function() loadstring(game:HttpGet("https://pastebin.com/raw/bwGLPVV7", true))() end) -- Button to play robot animation Tab3Section:NewButton("Robot Animation", "Plays Robot Animation", function() local Animate = game.Players.LocalPlayer.Character.Animate Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616088211" Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616089559" Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616095330" Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616091570" Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616090535" Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616086039" Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616087089" end) -- Section for effects local Tab4 = window:NewTab("Effects") local Tab4Section = Tab4:NewSection("Special Effects") -- Button to enable light effect Tab4Section:NewButton("Light Effect", "Opens Light Effect", function() loadstring(game:HttpGet("https://pastebin.com/raw/QSR8pjFn", true))() end) -- Button to make you feel angry Tab4Section:NewButton("Make You Feel Angry", "Opens Make You Feel Angry", function() loadstring(game:HttpGet("https://pastebin.com/raw/0W2VG7DZ", true))() end) -- Button for a cool effect Tab4Section:NewButton("Cool Effect", "Cool", function() print("Are you cool?") loadstring(game:HttpGet("https://pastebin.com/raw/MSZPFVfE", true))() end) -- Label for upcoming feature Tab4Section:NewLabel("Coming Soon") -- Bind to character added event local oldCharacterAdded = entity.characterAdded entity.characterAdded = function(plr, char, localcheck) return oldCharacterAdded(plr, char, localcheck, function() end) end entity.fullEntityRefresh()