local redzlib=loadstring(game:HttpGet("https://raw.githubusercontent.com/tbao143/Library-ui/refs/heads/main/Redzhubui"))()local Window=redzlib:MakeWindow({Title="Shifer X | Brookhaven RP 🏡 1.0",SubTitle="By ShifeGaming-YT",SaveFolder="testando Kakah Hub"})Window:AddMinimizeButton({Button={Image="rbxassetid://10341849885",BackgroundTransparency=0},Corner={CornerRadius=UDim.new(35,1)},})local Tab1=Window:MakeTab({"Credits","info"})local Tab2=Window:MakeTab({"Fun","fun"})local Tab3=Window:MakeTab({"Avatar","shirt"})local Tab4=Window:MakeTab({"House","Home"})local Tab5=Window:MakeTab({"Car","Car"})local Tab6=Window:MakeTab({"RGB","brush"})local Tab7=Window:MakeTab({"Music All","radio"})local Tab8=Window:MakeTab({"Music","music"})local Tab9=Window:MakeTab({"Troll","skull"})local Tab10=Window:MakeTab({"Lag Server","bomb"})local Tab11=Window:MakeTab({"Scripts","scroll"})local Tab12=Window:MakeTab({"Teleportes","map-pin"})local Tab13=Window:MakeTab({"Painel Adm","shield"})Tab1:AddSection({"Créditos do Hub"})Tab1:AddDiscordInvite({Name="Shife-Revolution Scripting",Description="Click Copy",Logo="rbxassetid://10341849885",Invite="https://discord.gg/jrcG6zb5RQ",})local function detectExecutor()if identifyexecutor then return identifyexecutor()elseif syn then return "Synapse X" elseif KRNL_LOADED then return "KRNL" elseif is_sirhurt_closure then return "SirHurt" elseif pebc_execute then return "ProtoSmasher" elseif getexecutorname then return getexecutorname()else return "Executor Desconhecido" end end local executorName=detectExecutor()local Paragraph=Tab1:AddParagraph({"Executor",executorName})local Section=Tab1:AddSection({"Version 1.0"})local Paragraph=Tab1:AddParagraph({"Creadores","ShifeGaming"})Tab1:AddButton({Name="-Copiar Link de Telegram",Callback=function()setclipboard("@kaykaka2")setclipboard("https://t.me/ShifeScripter")end})local Section=Tab2:AddSection({"Player Character"})local Players=game:GetService("Players")local localPlayer=Players.LocalPlayer local selectedPlayerName=nil local headsitActive=false local function headsitOnPlayer(targetPlayer)local character=localPlayer.Character or localPlayer.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")if not targetPlayer.Character or not targetPlayer.Character:FindFirstChild("Head")then warn("Jogador alvo sem cabeça ou personagem.")return false end local targetHead=targetPlayer.Character.Head local localRoot=character:FindFirstChild("HumanoidRootPart")if not localRoot then warn("Seu personagem não tem HumanoidRootPart.")return false end localRoot.CFrame=targetHead.CFrame*CFrame.new(0,2.2,0)for _,v in pairs(localRoot:GetChildren())do if v:IsA("WeldConstraint")then v:Destroy()end end local weld=Instance.new("WeldConstraint")weld.Part0=localRoot weld.Part1=targetHead weld.Parent=localRoot if humanoid then humanoid.Sit=true end print("Headsit ativado em " .. targetPlayer.Name)return true end local function removeHeadsit()local character=localPlayer.Character or localPlayer.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")local localRoot=character:FindFirstChild("HumanoidRootPart")if localRoot then for _,v in pairs(localRoot:GetChildren())do if v:IsA("WeldConstraint")then v:Destroy()end end end if humanoid then humanoid.Sit=false end print("Headsit desativado.")end local function findPlayerByPartialName(partial)partial=partial:lower()for _,player in pairs(Players:GetPlayers())do if player~=localPlayer and player.Name:lower():sub(1,#partial)==partial then return player end end return nil end local function notifyPlayerSelected(player)local StarterGui=game:GetService("StarterGui")local thumbType=Enum.ThumbnailType.HeadShot local thumbSize=Enum.ThumbnailSize.Size100x100 local content,_=Players:GetUserThumbnailAsync(player.UserId,thumbType,thumbSize)StarterGui:SetCore("SendNotification",{Title="Player Selecionado",Text=player.Name .. " foi selecionado!",Icon=content,Duration=5})end Tab2:AddTextBox({Name="Nombre del Jugador",Description="Escribe el nombre",PlaceholderText="Ej:Shiro → Shife",Callback=function(Value)local foundPlayer=findPlayerByPartialName(Value)if foundPlayer then selectedPlayerName=foundPlayer.Name notifyPlayerSelected(foundPlayer)else warn("Nenhum jogador encontrado com esse nome.")end end})Tab2:AddButton({"",function()if not selectedPlayerName then return end if not headsitActive then local target=Players:FindFirstChild(selectedPlayerName)if target and headsitOnPlayer(target)then headsitActive=true end else removeHeadsit()headsitActive=false end end})Tab2:AddSlider({Name="Speed Player",Increase=1,MinValue=16,MaxValue=888,Default=16,Callback=function(Value)local player=game.Players.LocalPlayer local character=player.Character or player.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")if humanoid then humanoid.WalkSpeed=Value end end})Tab2:AddSlider({Name="Jumppower",Increase=1,MinValue=50,MaxValue=500,Default=50,Callback=function(Value)local player=game.Players.LocalPlayer local character=player.Character or player.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")if humanoid then humanoid.JumpPower=Value end end})Tab2:AddSlider({Name="Gravity",Increase=1,MinValue=0,MaxValue=10000,Default=196.2,Callback=function(Value)game.Workspace.Gravity=Value end})local InfiniteJumpEnabled=false game:GetService("UserInputService").JumpRequest:Connect(function()if InfiniteJumpEnabled then local character=game.Players.LocalPlayer.Character if character and character:FindFirstChild("Humanoid")then character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)end end end)Tab2:AddButton({Name="Reset Speed/Gravity/Jumppower.✅",Callback=function()local player=game.Players.LocalPlayer local character=player.Character or player.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")if humanoid then humanoid.WalkSpeed=16 humanoid.JumpPower=50 end game.Workspace.Gravity=196.2 InfiniteJumpEnabled=false end})Tab2:AddToggle({Name="Infinite Jump",Default=false,Callback=function(Value)InfiniteJumpEnabled=Value end})local UltimateNoclip={Enabled=false,Connections={},SoccerBalls={}}local Players=game:GetService("Players")local RunService=game:GetService("RunService")local Workspace=game:GetService("Workspace")local LocalPlayer=Players.LocalPlayer local function managePlayerCollisions(character)if not character then return end for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=not UltimateNoclip.Enabled part.Anchored=false end end end local function voidProtection(rootPart)if rootPart.Position.Y<-500 then local safeCFrame=CFrame.new(0,100,0)local rayParams=RaycastParams.new()rayParams.FilterDescendantsInstances={LocalPlayer.Character}local result=Workspace:Raycast(rootPart.Position,Vector3.new(0,500,0),rayParams)rootPart.CFrame=result and CFrame.new(result.Position+Vector3.new(0,5,0))or safeCFrame end end local function manageSoccerBalls()local soccerFolder=Workspace:FindFirstChild("Com",true)and Workspace.Com:FindFirstChild("001_SoccerBalls")if soccerFolder then for _,ball in ipairs(soccerFolder:GetChildren())do if ball.Name:match("^Soccer")then pcall(function()ball.CanCollide=not UltimateNoclip.Enabled ball.Anchored=UltimateNoclip.Enabled end)UltimateNoclip.SoccerBalls[ball]=true end end if not UltimateNoclip.Connections.BallAdded then UltimateNoclip.Connections.BallAdded=soccerFolder.ChildAdded:Connect(function(ball)if ball.Name:match("^Soccer")then task.wait(0.3)pcall(function()ball.CanCollide=not UltimateNoclip.Enabled ball.Anchored=UltimateNoclip.Enabled end)end end)end end end local function mainLoop()UltimateNoclip.Connections.Heartbeat=RunService.Heartbeat:Connect(function()local character=LocalPlayer.Character if character then managePlayerCollisions(character)local rootPart=character:FindFirstChild("HumanoidRootPart")if rootPart then voidProtection(rootPart)end end if tick()%2<0.1 then manageSoccerBalls()end end)end local NoclipToggle=Tab2:AddToggle({Name="Ultimate Noclip",Description="Noclip+Controle de bolas integrado",Default=false})NoclipToggle:Callback(function(state)UltimateNoclip.Enabled=state if state then mainLoop()manageSoccerBalls()UltimateNoclip.Connections.CharAdded=LocalPlayer.CharacterAdded:Connect(function()task.wait(0.5)managePlayerCollisions(LocalPlayer.Character)end)else for _,conn in pairs(UltimateNoclip.Connections)do conn:Disconnect()end if LocalPlayer.Character then managePlayerCollisions(LocalPlayer.Character)end for ball in pairs(UltimateNoclip.SoccerBalls)do if ball.Parent then pcall(function()ball.CanCollide=true ball.Anchored=false end)end end end end)local antiSitConnection=nil local antiSitEnabled=false Tab2:AddToggle({Name="Anti-Sit",Description="Impede o jogador de sentar",Default=false,Callback=function(state)antiSitEnabled=state local LocalPlayer=game:GetService("Players").LocalPlayer if state then local function applyAntiSit(character)local humanoid=character:FindFirstChild("Humanoid")if humanoid then humanoid.Sit=false humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,false)if antiSitConnection then antiSitConnection:Disconnect()end antiSitConnection=humanoid.Seated:Connect(function(isSeated)if isSeated then humanoid.Sit=false humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)end end if LocalPlayer.Character then applyAntiSit(LocalPlayer.Character)end local characterAddedConnection characterAddedConnection=LocalPlayer.CharacterAdded:Connect(function(character)if not antiSitEnabled then characterAddedConnection:Disconnect()return end local humanoid=character:WaitForChild("Humanoid",5)if humanoid then applyAntiSit(character)end end)else if antiSitConnection then antiSitConnection:Disconnect()antiSitConnection=nil end if LocalPlayer.Character then local humanoid=LocalPlayer.Character:FindFirstChild("Humanoid")if humanoid then humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,true)end end end end})local Players=game:GetService("Players")local RunService=game:GetService("RunService")local billboardGuis={}local connections={}local espEnabled=false local selectedColor="RGB Suave" Tab2:AddButton({Name="Ativar Fly GUI",Description="Carrega um GUI de fly universal",Callback=function()local success,_=pcall(function()loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fly-gui-v3-30439"))()end)game.StarterGui:SetCore("SendNotification",{Title=success and "Sucesso" or "Erro",Text=success and "Fly GUI carregado!" or "Falha ao carregar o Fly GUI.",Duration=5})end})local Section=Tab2:AddSection({"ESP"})Tab2:AddDropdown({Name="Cor do ESP",Default="RGB ",Options={"RGB","Branco","Preto","Vermelho","Verde","Azul","Amarelo","Rosa","Roxo"},Callback=function(value)selectedColor=value end})local function getESPColor()if selectedColor=="RGB" then local h=(tick()%5)/5 return Color3.fromHSV(h,1,1)elseif selectedColor=="Preto" then return Color3.fromRGB(0,0,0)elseif selectedColor=="Branco" then return Color3.fromRGB(255,255,255)elseif selectedColor=="Vermelho" then return Color3.fromRGB(255,0,0)elseif selectedColor=="Verde" then return Color3.fromRGB(0,255,0)elseif selectedColor=="Azul" then return Color3.fromRGB(0,170,255)elseif selectedColor=="Amarelo" then return Color3.fromRGB(255,255,0)elseif selectedColor=="Rosa" then return Color3.fromRGB(255,105,180)elseif selectedColor=="Roxo" then return Color3.fromRGB(128,0,128)end return Color3.new(1,1,1)end local function updateESP(player)if player==Players.LocalPlayer then return end if not espEnabled then return end local character=player.Character if character then local head=character:FindFirstChild("Head")if head then if billboardGuis[player]then billboardGuis[player]:Destroy()end local billboard=Instance.new("BillboardGui")billboard.Name="ESP_Billboard" billboard.Parent=head billboard.Adornee=head billboard.Size=UDim2.new(0,200,0,50)billboard.StudsOffset=Vector3.new(0,3,0)billboard.AlwaysOnTop=true local textLabel=Instance.new("TextLabel")textLabel.Name="TextLabel" textLabel.Parent=billboard textLabel.Size=UDim2.new(1,0,1,0)textLabel.BackgroundTransparency=1 textLabel.TextStrokeTransparency=0.5 textLabel.Font=Enum.Font.SourceSansBold textLabel.TextSize=14 textLabel.Text=player.Name .. " | " .. player.AccountAge .. " dias" textLabel.TextColor3=getESPColor()billboardGuis[player]=billboard end end end local function removeESP(player)if billboardGuis[player]then billboardGuis[player]:Destroy()billboardGuis[player]=nil end end local Toggle1=Tab2:AddToggle({Name="ESP Ativado",Description="Mostra nome e idade da conta dos jogadores.",Default=false})Toggle1:Callback(function(value)espEnabled=value if espEnabled then for _,player in pairs(Players:GetPlayers())do updateESP(player)end local updateConnection=RunService.Heartbeat:Connect(function()for _,player in pairs(Players:GetPlayers())do updateESP(player)end if selectedColor=="RGB" then for _,player in pairs(Players:GetPlayers())do local gui=billboardGuis[player]if gui and gui:FindFirstChild("TextLabel")then gui.TextLabel.TextColor3=getESPColor()end end end end)table.insert(connections,updateConnection)local playerAdded=Players.PlayerAdded:Connect(function(player)updateESP(player)local charConn=player.CharacterAdded:Connect(function()updateESP(player)end)table.insert(connections,charConn)end)table.insert(connections,playerAdded)local playerRemoving=Players.PlayerRemoving:Connect(function(player)removeESP(player)end)table.insert(connections,playerRemoving)else for _,player in pairs(Players:GetPlayers())do removeESP(player)end for _,conn in pairs(connections)do conn:Disconnect()end connections={}billboardGuis={}end end)local Section=Tab3:AddSection({"Copy Avatar"})local Players=game:GetService("Players")local LocalPlayer=Players.LocalPlayer local ReplicatedStorage=game:GetService("ReplicatedStorage")local Remotes=ReplicatedStorage:WaitForChild("Remotes")local valor_do_nome_do_joagdor local Target=nil local function GetPlayerNames()local playerNames={}for _,player in ipairs(Players:GetPlayers())do if player.Name~=LocalPlayer.Name then table.insert(playerNames,player.Name)end end return playerNames end local Dropdown=Tab3:AddDropdown({Name="Players List",Description="",Options=GetPlayerNames(),Default="",Flag="player list",Callback=function(playername)valor_do_nome_do_joagdor=playername Target=playername end})local function UptadePlayers()Dropdown:Set(GetPlayerNames())end UptadePlayers()Tab3:AddButton({"Atualizar lista",function()UptadePlayers()end})Players.PlayerAdded:Connect(UptadePlayers)Players.PlayerRemoving:Connect(UptadePlayers)Tab3:AddButton({Name="Copy Avatar",Callback=function()if not Target then return end local LP=Players.LocalPlayer local LChar=LP.Character local TPlayer=Players:FindFirstChild(Target)if TPlayer and TPlayer.Character then local LHumanoid=LChar and LChar:FindFirstChildOfClass("Humanoid")local THumanoid=TPlayer.Character:FindFirstChildOfClass("Humanoid")if LHumanoid and THumanoid then local LDesc=LHumanoid:GetAppliedDescription()for _,acc in ipairs(LDesc:GetAccessories(true))do if acc.AssetId and tonumber(acc.AssetId)then Remotes.Wear:InvokeServer(tonumber(acc.AssetId))task.wait(0.2)end end if tonumber(LDesc.Shirt)then Remotes.Wear:InvokeServer(tonumber(LDesc.Shirt))task.wait(0.2)end if tonumber(LDesc.Pants)then Remotes.Wear:InvokeServer(tonumber(LDesc.Pants))task.wait(0.2)end if tonumber(LDesc.Face)then Remotes.Wear:InvokeServer(tonumber(LDesc.Face))task.wait(0.2)end local PDesc=THumanoid:GetAppliedDescription()local argsBody={[1]={[1]=PDesc.Torso,[2]=PDesc.RightArm,[3]=PDesc.LeftArm,[4]=PDesc.RightLeg,[5]=PDesc.LeftLeg,[6]=PDesc.Head}}Remotes.ChangeCharacterBody:InvokeServer(unpack(argsBody))task.wait(0.5)if tonumber(PDesc.Shirt)then Remotes.Wear:InvokeServer(tonumber(PDesc.Shirt))task.wait(0.3)end if tonumber(PDesc.Pants)then Remotes.Wear:InvokeServer(tonumber(PDesc.Pants))task.wait(0.3)end if tonumber(PDesc.Face)then Remotes.Wear:InvokeServer(tonumber(PDesc.Face))task.wait(0.3)end for _,v in ipairs(PDesc:GetAccessories(true))do if v.AssetId and tonumber(v.AssetId)then Remotes.Wear:InvokeServer(tonumber(v.AssetId))task.wait(0.3)end end local SkinColor=TPlayer.Character:FindFirstChild("Body Colors")if SkinColor then Remotes.ChangeBodyColor:FireServer(tostring(SkinColor.HeadColor))task.wait(0.3)end if tonumber(PDesc.IdleAnimation)then Remotes.Wear:InvokeServer(tonumber(PDesc.IdleAnimation))task.wait(0.3)end local Bag=TPlayer:FindFirstChild("PlayersBag")if Bag then if Bag:FindFirstChild("RPName")and Bag.RPName.Value~="" then Remotes.RPNameText:FireServer("RolePlayName",Bag.RPName.Value)task.wait(0.3)end if Bag:FindFirstChild("RPBio")and Bag.RPBio.Value~="" then Remotes.RPNameText:FireServer("RolePlayBio",Bag.RPBio.Value)task.wait(0.3)end if Bag:FindFirstChild("RPNameColor")then Remotes.RPNameColor:FireServer("PickingRPNameColor",Bag.RPNameColor.Value)task.wait(0.3)end if Bag:FindFirstChild("RPBioColor")then Remotes.RPNameColor:FireServer("PickingRPBioColor",Bag.RPBioColor.Value)task.wait(0.3)end end end end end})local Section=Tab3:AddSection({"Roupas 3D"})local ReplicatedStorage=game:GetService("ReplicatedStorage")local AvatarManager={}AvatarManager.ReplicatedStorage=ReplicatedStorage function AvatarManager:MostrarNotificacao(mensagem)pcall(function()game:GetService("StarterGui"):SetCore("SendNotification",{Title="Aviso",Text=mensagem,Duration=5})end)end AvatarManager.Avatares={{Nome="Gato de Manga",ID=124948425515124},{Nome="Tung Saur",ID=117098257036480},{Nome="Tralaleiro",ID=99459753608381},{Nome="Monstro S.A",ID=123609977175226},{Nome="Trenzinho",ID=80468697076178},{Nome="Dino",ID=11941741105},{Nome="Pou idoso",ID=15742966010},{Nome="Coco/boxt@",ID=77013984520332},{Nome="Coelho",ID=71797333686800},{Nome="Hipopótamo",ID=73215892129281},{Nome="Ratatui",ID=108557570415453},{Nome="Galinha",ID=71251793812515},{Nome="Pepa pig",ID=92979204778377},{Nome="pinguin",ID=94944293759578},{Nome="Sid",ID=87442757321244},{Nome="puga grande",ID=111436158728716},{Nome="SHREK AMALDIÇOADO",ID=120960401202173},{Nome="mosquito grande",ID=108052868536435},{Nome="Noob Invertido",ID=106596990206151},{Nome="Pato(a)",ID=135132836238349},{Nome="Cachorro Chihuahua",ID=18656467256},{Nome="Gato sla",ID=18994959003},{Nome="Gato fei ",ID=77506186615650},{Nome="Inpostor",ID=18234669337},{Nome="Simon amarelo",ID=75183593514657},{Nome="Simon azul",ID=76155710249925}}function AvatarManager:GetAvatarNames()local nomes={}for _,avatar in ipairs(self.Avatares)do table.insert(nomes,avatar.Nome)end return nomes end function AvatarManager:EquiparAvatar(avatarName)for _,avatar in ipairs(self.Avatares)do if avatar.Nome==avatarName then local args={avatar.ID}local success,result=pcall(function()return self.ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("Wear"):InvokeServer(unpack(args))end)if success then self:MostrarNotificacao("Avatar " .. avatarName .. " equipado com sucesso!")else self:MostrarNotificacao("Falha ao equipar o avatar " .. avatarName .. "!")end return end end self:MostrarNotificacao("Avatar " .. avatarName .. " não encontrado!")end local AvatarDropdown=Tab3:AddDropdown({Name="assesorios 3D",Description="Selecione para equipar",Default=nil,Options=AvatarManager:GetAvatarNames(),Callback=function(avatarSelecionado)_G.SelectedAvatar=avatarSelecionado end})Tab3:AddButton({Name="equipar ",Description="Equipar selecionado",Callback=function()if not _G.SelectedAvatar or _G.SelectedAvatar=="" then AvatarManager:MostrarNotificacao("Nenhum avatar selecionado!")return end AvatarManager:EquiparAvatar(_G.SelectedAvatar)end})local Section=Tab3:AddSection({"Avatar Editor"})Tab3:AddParagraph({Title="aviso vai resetar seu avatar",Content=""})Tab3:AddButton({Name="Mini REPO",Callback=function()local args={{117101023704825,125767940563838,137301494386930,87357384184710,133391239416999,111818794467824}}game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ChangeCharacterBody"):InvokeServer(unpack(args))print("Todas as partes do corpo equipadas!")end})Tab3:AddButton({Name="mini garanhao",Callback=function()local args={{124355047456535,120507500641962,82273782655463,113625313757230,109182039511426,0}}game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ChangeCharacterBody"):InvokeServer(unpack(args))print("Todas as partes do corpo equipadas!")end})Tab3:AddButton({Name="stick",Callback=function()local args={{14731384498,14731377938,14731377894,14731377875,14731377941,14731382899}}game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ChangeCharacterBody"):InvokeServer(unpack(args))print("Todas as partes do corpo equipadas!")end})Tab3:AddButton({Name="Chunky-Bug",Callback=function()local args={{15527827600,15527827578,15527831669,15527836067,15527827184,15527827599}}game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ChangeCharacterBody"):InvokeServer(unpack(args))print("Todas as partes do corpo equipadas!")end})Tab3:AddButton({Name="Cursed-Spider",Callback=function()local args={{134555168634906,100269043793774,125607053187319,122504853343598,95907982259204,91289185840375}}game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ChangeCharacterBody"):InvokeServer(unpack(args))print("Todas as partes do corpo equipadas!")end})Tab3:AddButton({Name="Possessed-Horror",Callback=function()local args={{122800511983371,132465361516275,125155800236527,83070163355072,102906187256945,78311422507297}}game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ChangeCharacterBody"):InvokeServer(unpack(args))print("Todas as partes do corpo equipadas!")end})Tab3:AddParagraph({Title="vai ter mais coisas aqui na proxima atualizaçao",Content=""})Tab4:AddParagraph({Title="Funções para você usar em você",Content=""})Tab4:AddButton({Name="Remover Ban de Todas as Casas",Description="Tenta remover o ban de todas as casas ",Callback=function()local successCount=0 local failCount=0 for i=1,37 do local bannedBlockName="BannedBlock" .. i local bannedBlock=Workspace:FindFirstChild(bannedBlockName,true)if bannedBlock then local success,_=pcall(function()bannedBlock:Destroy()end)if success then successCount=successCount+1 else failCount=failCount+1 end end end for _,house in pairs(Workspace:GetDescendants())do if house.Name:match("BannedBlock")then local success,_=pcall(function()house:Destroy()end)if success then successCount=successCount+1 else failCount=failCount+1 end end end if successCount>0 then game.StarterGui:SetCore("SendNotification",{Title="Sucesso",Text="Bans removidos de " .. successCount .. " casas!",Duration=5})end if failCount>0 then game.StarterGui:SetCore("SendNotification",{Title="Aviso",Text="Falha ao remover bans de " .. failCount .. " casas.",Duration=5})end if successCount==0 and failCount==0 then game.StarterGui:SetCore("SendNotification",{Title="Aviso",Text="Nenhum ban encontrado para remover.",Duration=5})end end})Tab4:AddParagraph({Title="to sem ideias para colocar aqui._.",Content=""})local Section=Tab5:AddSection({"all car functions"})local Players=game:GetService("Players")local Workspace=game:GetService("Workspace")local LocalPlayer=Players.LocalPlayer local Camera=Workspace.CurrentCamera local TeleportCarro={}TeleportCarro.Players=Players TeleportCarro.Workspace=Workspace TeleportCarro.LocalPlayer=LocalPlayer TeleportCarro.Camera=Camera function TeleportCarro:MostrarNotificacao(mensagem)pcall(function()game:GetService("StarterGui"):SetCore("SendNotification",{Title="Aviso",Text=mensagem,Duration=5})end)end function TeleportCarro:ToggleFallDamage(disable)if not self.LocalPlayer.Character or not self.LocalPlayer.Character:FindFirstChild("Humanoid")then return false end local humanoid=self.LocalPlayer.Character.Humanoid if disable then humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,false)humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll,false)humanoid:SetStateEnabled(Enum.HumanoidStateType.GettingUp,true)humanoid.PlatformStand=false return true else humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,true)humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll,true)return false end end function TeleportCarro:TeleportToSeat(seat,car)if not self.LocalPlayer.Character or not self.LocalPlayer.Character:FindFirstChild("Humanoid")then self:MostrarNotificacao("Personagem não encontrado!")return false end local humanoid=self.LocalPlayer.Character.Humanoid local rootPart=self.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")if not rootPart then self:MostrarNotificacao("Parte raiz do personagem não encontrada!")return false end humanoid.Sit=false task.wait(0.1)rootPart.CFrame=seat.CFrame+Vector3.new(0,5,0)task.wait(0.1)seat:Sit(humanoid)task.wait(0.5)return humanoid.SeatPart==seat end function TeleportCarro:TeleportToVoid(car)if not car then self:MostrarNotificacao("Veículo inválido!")return end if not car.PrimaryPart then local body=car:FindFirstChild("Body",true)or car:FindFirstChild("Chassis",true)if body and body:IsA("BasePart")then car.PrimaryPart=body else self:MostrarNotificacao("Parte principal do veículo não encontrada!")return end end local voidPosition=Vector3.new(0,-1000,0)car:SetPrimaryPartCFrame(CFrame.new(voidPosition))task.wait(0.5)end function TeleportCarro:TeleportToPlayer(car,playerPos)if not car then self:MostrarNotificacao("Veículo inválido!")return end if not car.PrimaryPart then local body=car:FindFirstChild("Body",true)or car:FindFirstChild("Chassis",true)if body and body:IsA("BasePart")then car.PrimaryPart=body else self:MostrarNotificacao("Parte principal do veículo não encontrada!")return end end local targetPos=playerPos+Vector3.new(5,0,5)car:SetPrimaryPartCFrame(CFrame.new(targetPos))task.wait(0.5)end function TeleportCarro:ExitCarAndReturn(originalPos)if not self.LocalPlayer.Character or not self.LocalPlayer.Character:FindFirstChild("Humanoid")then return end local humanoid=self.LocalPlayer.Character.Humanoid if humanoid.SeatPart then humanoid.Sit=false end task.wait(0.1)if originalPos then self.LocalPlayer.Character:PivotTo(CFrame.new(originalPos))end end function TeleportCarro:AtualizarListaCarros()local pastaVeiculos=self.Workspace:FindFirstChild("Vehicles")local listaCarros={}if pastaVeiculos then for _,carro in ipairs(pastaVeiculos:GetChildren())do if carro.Name:match("Car$")then table.insert(listaCarros,carro.Name)end end end return listaCarros end Tab5:AddParagraph({Title="use o void protection",Content=""})Tab5:AddToggle({Name="Matar todos os carros do server",Description="Teleporta os carros para o void",Default=false,Callback=function(state)local originalPosition local teleportActive=state local fallDamageDisabled=false if state then if self.LocalPlayer.Character and self.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")then originalPosition=self.LocalPlayer.Character.HumanoidRootPart.Position else TeleportCarro:MostrarNotificacao("Personagem não encontrado!")return end fallDamageDisabled=TeleportCarro:ToggleFallDamage(true)spawn(function()local vehiclesFolder=TeleportCarro.Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then TeleportCarro:MostrarNotificacao("Pasta de veículos não encontrada!")return end local cars={}for _,car in ipairs(vehiclesFolder:GetChildren())do if car.Name:match("Car$")then table.insert(cars,car)end end for _,car in ipairs(cars)do if not teleportActive then break end local vehicleSeat=car:FindFirstChildWhichIsA("VehicleSeat",true)if vehicleSeat and vehicleSeat.Occupant==nil then local success=TeleportCarro:TeleportToSeat(vehicleSeat,car)if success then TeleportCarro:TeleportToVoid(car)TeleportCarro:ExitCarAndReturn(originalPosition)task.wait(1)end end end if teleportActive then teleportActive=false TeleportCarro:ToggleFallDamage(false)end end)else teleportActive=false TeleportCarro:ToggleFallDamage(false)end end})local Section=Tab5:AddSection({"functions dos carro"})local Dropdown=Tab5:AddDropdown({Name="Selecionar Carro do Jogador",Description="Selecione o carro de um jogador",Default=nil,Options=TeleportCarro:AtualizarListaCarros(),Callback=function(carroSelecionado)_G.SelectedVehicle=carroSelecionado end})Tab5:AddToggle({Name="Ver Câmera do Carro Selecionado",Description="Foca a câmera no carro selecionado",Default=false,Callback=function(state)if state then if not _G.SelectedVehicle or _G.SelectedVehicle=="" then TeleportCarro:MostrarNotificacao("Nenhum carro selecionado!")return end local vehiclesFolder=TeleportCarro.Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then TeleportCarro:MostrarNotificacao("Pasta de veículos não encontrada!")return end local vehicle=vehiclesFolder:FindFirstChild(_G.SelectedVehicle)if not vehicle then TeleportCarro:MostrarNotificacao("Carro selecionado não encontrado!")return end local vehicleSeat=vehicle:FindFirstChildWhichIsA("VehicleSeat",true)if not vehicleSeat then TeleportCarro:MostrarNotificacao("Assento do carro não encontrado!")return end TeleportCarro.OriginalCameraSubject=TeleportCarro.Camera.CameraSubject TeleportCarro.OriginalCameraType=TeleportCarro.Camera.CameraType TeleportCarro.Camera.CameraSubject=vehicleSeat TeleportCarro.Camera.CameraType=Enum.CameraType.Follow TeleportCarro:MostrarNotificacao("Câmera ajustada para o carro " .. _G.SelectedVehicle .. "!")else if TeleportCarro.OriginalCameraSubject then TeleportCarro.Camera.CameraSubject=TeleportCarro.OriginalCameraSubject TeleportCarro.Camera.CameraType=TeleportCarro.OriginalCameraType or Enum.CameraType.Custom TeleportCarro:MostrarNotificacao("Câmera restaurada ao normal!")TeleportCarro.OriginalCameraSubject=nil TeleportCarro.OriginalCameraType=nil end end end})TeleportCarro.Workspace:WaitForChild("Vehicles").ChildAdded:Connect(function()Dropdown:Set(TeleportCarro:AtualizarListaCarros())end)TeleportCarro.Workspace:WaitForChild("Vehicles").ChildRemoved:Connect(function()Dropdown:Set(TeleportCarro:AtualizarListaCarros())end)local Section=Tab5:AddSection({"functions kill e trazer"})Tab5:AddButton({Name="Destruir Carro Selecionado",Description="Teleporta o carro selecionado para o void",Callback=function()if not _G.SelectedVehicle or _G.SelectedVehicle=="" then TeleportCarro:MostrarNotificacao("Nenhum carro selecionado!")return end local vehiclesFolder=TeleportCarro.Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then TeleportCarro:MostrarNotificacao("Pasta de veículos não encontrada!")return end local vehicle=vehiclesFolder:FindFirstChild(_G.SelectedVehicle)if not vehicle then TeleportCarro:MostrarNotificacao("Carro selecionado não encontrado!")return end local vehicleSeat=vehicle:FindFirstChildWhichIsA("VehicleSeat",true)if not vehicleSeat then TeleportCarro:MostrarNotificacao("Assento do carro não encontrado!")return end if vehicleSeat.Occupant then TeleportCarro:MostrarNotificacao("O kill car não foi possível,há alguém sentado no assento do motorista!")return end local originalPos if TeleportCarro.LocalPlayer.Character and TeleportCarro.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")then originalPos=TeleportCarro.LocalPlayer.Character.HumanoidRootPart.Position else TeleportCarro:MostrarNotificacao("Personagem do jogador não encontrado!")return end local isFallDamageOff=TeleportCarro:ToggleFallDamage(true)local success=TeleportCarro:TeleportToSeat(vehicleSeat,vehicle)if success then TeleportCarro:TeleportToVoid(vehicle)TeleportCarro:MostrarNotificacao("Carro " .. _G.SelectedVehicle .. " foi teleportado para o void!")TeleportCarro:ExitCarAndReturn(originalPos)else TeleportCarro:MostrarNotificacao("Falha ao sentar no carro!")end TeleportCarro:ToggleFallDamage(false)end})Tab5:AddButton({Name="Trazer Carro Selecionado",Description="Teleporta o carro selecionado para sua posição",Callback=function()if not _G.SelectedVehicle or _G.SelectedVehicle=="" then TeleportCarro:MostrarNotificacao("Nenhum carro selecionado!")return end local vehiclesFolder=TeleportCarro.Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then TeleportCarro:MostrarNotificacao("Pasta de veículos não encontrada!")return end local vehicle=vehiclesFolder:FindFirstChild(_G.SelectedVehicle)if not vehicle then TeleportCarro:MostrarNotificacao("Carro selecionado não encontrado!")return end local vehicleSeat=vehicle:FindFirstChildWhichIsA("VehicleSeat",true)if not vehicleSeat then TeleportCarro:MostrarNotificacao("Assento do carro não encontrado!")return end if vehicleSeat.Occupant then TeleportCarro:MostrarNotificacao("O teleporte do carro não foi possível,há alguém sentado no assento do motorista!")return end local originalPos if TeleportCarro.LocalPlayer.Character and TeleportCarro.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")then originalPos=TeleportCarro.LocalPlayer.Character.HumanoidRootPart.Position else TeleportCarro:MostrarNotificacao("Personagem do jogador não encontrado!")return end local isFallDamageOff=TeleportCarro:ToggleFallDamage(true)local success=TeleportCarro:TeleportToSeat(vehicleSeat,vehicle)if success then TeleportCarro:TeleportToPlayer(vehicle,originalPos)TeleportCarro:MostrarNotificacao("Carro " .. _G.SelectedVehicle .. " foi teleportado para você!")TeleportCarro:ExitCarAndReturn(originalPos)else TeleportCarro:MostrarNotificacao("Falha ao sentar no carro!")end TeleportCarro:ToggleFallDamage(false)end})Tab5:AddButton({Name="Trazer Todos os Carros",Description="Teleporta todos os carros do servidor para sua posição",Callback=function()local originalPos if TeleportCarro.LocalPlayer.Character and TeleportCarro.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")then originalPos=TeleportCarro.LocalPlayer.Character.HumanoidRootPart.Position else TeleportCarro:MostrarNotificacao("Personagem do jogador não encontrado!")return end local vehiclesFolder=TeleportCarro.Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then TeleportCarro:MostrarNotificacao("Pasta de veículos não encontrada!")return end local isFallDamageOff=TeleportCarro:ToggleFallDamage(true)local cars={}for _,car in ipairs(vehiclesFolder:GetChildren())do if car.Name:match("Car$")then table.insert(cars,car)end end for _,car in ipairs(cars)do local vehicleSeat=car:FindFirstChildWhichIsA("VehicleSeat",true)if vehicleSeat and vehicleSeat.Occupant==nil then local success=TeleportCarro:TeleportToSeat(vehicleSeat,car)if success then TeleportCarro:TeleportToPlayer(car,originalPos)TeleportCarro:ExitCarAndReturn(originalPos)TeleportCarro:MostrarNotificacao("Carro " .. car.Name .. " foi teleportado para você!")task.wait(1)else TeleportCarro:MostrarNotificacao("Falha ao sentar no carro " .. car.Name .. "!")end else if vehicleSeat then TeleportCarro:MostrarNotificacao("Carro " .. car.Name .. " ignorado:alguém está no assento do motorista!")else TeleportCarro:MostrarNotificacao("Carro " .. car.Name .. " ignorado:assento não encontrado!")end end end TeleportCarro:ToggleFallDamage(false)if#cars==0 then TeleportCarro:MostrarNotificacao("Nenhum carro disponível para teleportar!")end end})local fallDamageDisabled=false TeleportCarro.LocalPlayer.CharacterAdded:Connect(function(character)local humanoid=character:WaitForChild("Humanoid")if fallDamageDisabled then humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,false)humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll,false)humanoid:SetStateEnabled(Enum.HumanoidStateType.GettingUp,true)humanoid.PlatformStand=false else humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,true)humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll,true)end end)local Section=Tab6:AddSection({""})local rgbSpeed=1 Tab6:AddSlider({Name="Velocidade RGB",Description="Aumenta a velocidade do efeito RGB",Min=1,Max=5,Increase=1,Default=3,Callback=function(Value)rgbSpeed=Value end})local function getRainbowColor(speedMultiplier)local h=(tick()*speedMultiplier%5)/5 return Color3.fromHSV(h,1,1)end local function fireServer(eventName,args)local event=game:GetService("ReplicatedStorage"):FindFirstChild("RE")if event and event:FindFirstChild(eventName)then pcall(function()event[eventName]:FireServer(unpack(args))end)end end local Section=Tab6:AddSection({"RGB para usar em você"})local nameBioRGBActive=false Tab6:AddToggle({Name="Nome+Bio RGB ",Default=false,Callback=function(state)nameBioRGBActive=state if state then task.spawn(function()while nameBioRGBActive and LocalPlayer.Character do local color=getRainbowColor(rgbSpeed)fireServer("1RPNam1eColo1r",{"PickingRPNameColor",color})fireServer("1RPNam1eColo1r",{"PickingRPBioColor",color})task.wait(0.03)end end)end end})local ToggleCorpo=Tab6:AddToggle({Name="RGB Corpo",Description="RGB no corpo",Default=false})ToggleCorpo:Callback(function(Value)getgenv().rgbCorpo=Value task.spawn(function()while getgenv().rgbCorpo do local remote=game:GetService("ReplicatedStorage"):FindFirstChild("Remotes")if remote and remote:FindFirstChild("ChangeBodyColor")then pcall(function()remote.ChangeBodyColor:FireServer({BrickColor.new(getRainbowColor(rgbSpeed))})end)end task.wait(0.1)end end)end)local ToggleCabelo=Tab6:AddToggle({Name="RGB Cabelo",Description="RGB no cabelo",Default=false})ToggleCabelo:Callback(function(Value)getgenv().rgbCabelo=Value task.spawn(function()while getgenv().rgbCabelo do fireServer("1Max1y",{"ChangeHairColor2",getRainbowColor(rgbSpeed)})task.wait(0.5)end end)end)local Section=Tab6:AddSection({"veiculos e casa"})local ToggleCasa=Tab6:AddToggle({Name="RGB Casa",Description="RGB na casa",Default=false})ToggleCasa:Callback(function(Value)getgenv().rgbCasa=Value task.spawn(function()while getgenv().rgbCasa do fireServer("1Player1sHous1e",{"ColorPickHouse",getRainbowColor(rgbSpeed)})task.wait(0.1)end end)end)local carRGBActive=false Tab6:AddToggle({Name="Carro RGB(Premium)",Description="Altera a cor do carro com RGB contínuo. Pode causar kick se não for premium!",Default=false,Callback=function(state)carRGBActive=state if state then task.spawn(function()while carRGBActive and LocalPlayer.Character do local color=getRainbowColor(rgbSpeed)fireServer("1Player1sCa1r",{"PickingCarColor",color})task.wait(0.03)end end)end end})local ToggleBicicleta=Tab6:AddToggle({Name="RGB Bicicleta",Description="RGB na bicicleta",Default=false})ToggleBicicleta:Callback(function(Value)getgenv().rgbBicicleta=Value task.spawn(function()while getgenv().rgbBicicleta do fireServer("1Player1sCa1r",{"NoMotorColor",getRainbowColor(rgbSpeed)})task.wait(0.1)end end)end)local Section=Tab6:AddSection({"itens/tool"})local radioRGBActive=false Tab6:AddToggle({Name="Rádio RGB ",Description="Altera a cor do rádio com RGB contínuo",Default=false,Callback=function(state)radioRGBActive=state if state then task.spawn(function()while radioRGBActive and LocalPlayer.Character do local color=getRainbowColor(rgbSpeed)local success,remote=pcall(function()return LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("ToolGui"):WaitForChild("ToolSettings"):WaitForChild("Settings"):WaitForChild("PropsColor"):WaitForChild("SetColor")end)if success and remote then pcall(function()remote:FireServer(color)end)end task.wait(0.03)end end)end end})local ToggleMegafone=Tab6:AddToggle({Name="RGB Megafone",Description="RGB no megafone",Default=false})ToggleMegafone:Callback(function(Value)getgenv().rgbMegafone=Value task.spawn(function()while getgenv().rgbMegafone do local color=getRainbowColor(rgbSpeed)local gui=game:GetService("Players").LocalPlayer:FindFirstChild("PlayerGui")if gui then local btn=gui:FindFirstChild("ToolGui")if btn then local settings=btn:FindFirstChild("ToolSettings")if settings then local props=settings:FindFirstChild("Settings"):FindFirstChild("PropsColor")if props and props:FindFirstChild("SetColor")then pcall(function()props.SetColor:FireServer(color)end)end end end end task.wait(0.1)end end)end)local ToggleRosquinha=Tab6:AddToggle({Name="RGB Rosquinha",Description="RGB na rosquinha",Default=false})ToggleRosquinha:Callback(function(Value)getgenv().rgbRosquinha=Value task.spawn(function()while getgenv().rgbRosquinha do local color=getRainbowColor(rgbSpeed)local gui=game:GetService("Players").LocalPlayer:FindFirstChild("PlayerGui")if gui then local btn=gui:FindFirstChild("ToolGui")if btn then local settings=btn:FindFirstChild("ToolSettings")if settings then local props=settings:FindFirstChild("Settings"):FindFirstChild("PropsColor")if props and props:FindFirstChild("SetColor")then pcall(function()props.SetColor:FireServer(color)end)end end end end task.wait(0.1)end end)end)local loopAtivo=false local InputID="" Tab7:AddTextBox({Name="Insira o ID Audio All",Description="Digite o ID do som que deseja tocar",Default="",PlaceholderText="Exemplo:6832470734",ClearTextOnFocus=true,Callback=function(text)InputID=tonumber(text)end})local function fireServer(eventName,args)local ReplicatedStorage=game:GetService("ReplicatedStorage")local event=ReplicatedStorage:FindFirstChild("RE")and ReplicatedStorage.RE:FindFirstChild(eventName)if event then pcall(function()event:FireServer(unpack(args))end)end end Tab7:AddButton({Name="Tocar Som",Description="Clique para tocar a música inserida",Callback=function()if InputID then fireServer("1Gu1nSound1s",{Workspace,InputID,1})local globalSound=Instance.new("Sound",Workspace)globalSound.SoundId="rbxassetid://" .. InputID globalSound.Looped=false globalSound:Play()task.wait(3)globalSound:Destroy()end end})Tab7:AddToggle({Name="Loop",Description="Ative para colocar o som em loop",Default=false,Callback=function(state)loopAtivo=state if loopAtivo then spawn(function()while loopAtivo do if InputID then fireServer("1Gu1nSound1s",{Workspace,InputID,1})local globalSound=Instance.new("Sound",Workspace)globalSound.SoundId="rbxassetid://" .. InputID globalSound.Looped=false globalSound:Play()task.spawn(function()task.wait(3)globalSound:Destroy()end)end task.wait(1)end end)end end})local function createSoundDropdown(title,musicOptions,defaultOption)local musicNames={}local categoryMap={}for category,sounds in pairs(musicOptions)do for _,music in ipairs(sounds)do if music.name~="" and music.id~="4354908569" then table.insert(musicNames,music.name)categoryMap[music.name]={id=music.id,category=category}end end end local selectedSoundID=nil local currentVolume=1 local currentPitch=1 local function playSound(soundId,volume,pitch)fireServer("1Gu1nSound1s",{Workspace,soundId,volume})local globalSound=Instance.new("Sound")globalSound.Parent=Workspace globalSound.SoundId="rbxassetid://" .. soundId globalSound.Volume=volume globalSound.Pitch=pitch globalSound.Looped=false globalSound:Play()task.spawn(function()task.wait(3)globalSound:Destroy()end)end Tab7:AddDropdown({Name=title,Description="Escolha um som para tocar no servidor",Default=defaultOption,Multi=false,Options=musicNames,Callback=function(selectedSound)if selectedSound and categoryMap[selectedSound]then selectedSoundID=categoryMap[selectedSound].id else selectedSoundID=nil end end})Tab7:AddButton({Name="Tocar Som Selecionado",Description="Clique para tocar o som do dropdown",Callback=function()if selectedSoundID then playSound(selectedSoundID,currentVolume,currentPitch)end end})local dropdownLoopActive=false Tab7:AddToggle({Name="Loop",Description="Ativa o loop do som selecionado",Default=false,Callback=function(state)dropdownLoopActive=state if state then task.spawn(function()while dropdownLoopActive do if selectedSoundID then playSound(selectedSoundID,currentVolume,currentPitch)end task.wait(1)end end)end end})end createSoundDropdown("Selecione um meme",{["Memes"]={{name="pankapakan",id="122547522269143"},{name="Gemido ultra rápido",id="128863565301778"},{name="vai g0z@?",id="116293771329297"},{name="G0z33iiii",id="93462644278510"},{name="Hommmm ",id="133135656929513"},{name="gemido1",id="105263704862377"},{name=" gemido2",id="92186909873950"},{name="sus sex",id="128137573022197"},{name="gemido estranho",id="131219411501419"},{name="gemido kawai",id="100409245129170"},{name="Hentai wiaaaaan",id="88332347208779"},{name="iamete cunasai",id="108494476595033"},{name="dodichan onnn...",id="134640594695384"},{name="Loly gemiD0",id="119277017538197"},{name="ai poison",id="115870718113313"},{name="chegachega SUS",id="77405864184828"},{name="uwu",id="76820720070248"},{name="ai meu cuzin",id="130714479795369"},{name="girl audio 2",id="84207358477461"},{name="Hoo ze da manga",id="106624090319571"},{name="ai alexandre de moraes",id="107261471941570"},{name="haaii meme",id="120006672159037"},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="GoGogo gogogo",id="103262503950995"},{name="Toma jack",id="132603645477541"},{name="Toma jackV2",id="100446887985203"},{name="Toma jack no sol quente",id="97476487963273"},{name="ifood",id="133843750864059"},{name="pelo geito ela ta querendo ram",id="94395705857835"},{name="lula vai todo mundo",id="136804576009416"},{name="coringa",id="84663543883498"},{name="shoope",id="8747441609"},{name="quenojo",id="103440368630269"},{name="sai dai lava prato",id="101232400175829"},{name="se e loko numconpeça",id="78442476709262"},{name="mita sequer que eu too uma",id="94889439372168"},{name="Hoje vou ser tua mulher e tu",id="90844637105538"},{name="Deita aqui eu mandei vc deitar sirens",id="100291188941582"},{name="miau",id="131804436682424"},{name="skibidi",id="128771670035179"},{name="BIRULEIBI",id="121569761604968"},{name="biseabesjnjkasnakjsndjkafb",id="133106998846260"},{name="vai corinthians!!....",id="127012936767471"},{name="my sigman",id="103431815659907"},{name="mama",id="106850066985594"},{name="OH MY GOD",id="73349649774476"},{name="aahhh plankton meme",id="95982351322190"},{name="CHINABOY",id="84403553163931"},{name="PASTOR MIRIM E A LÍNGUA DOS ANJOS",id="71153532555470"},{name="Sai d3sgraç@",id="106973692977609"},{name="opa salve tudo bem?",id="80870678096428"},{name="OLHA O CARRO DO DANONE",id="110493863773948"},{name="Nãoooo,Nãoooo,Nãooo!!!!!",id="95825536480898"},{name="UM PÉ DE SIRIGUELA KK",id="112804043442210"},{name="e o carro da pamonha",id="94951629392683"},{name="BOM DIAAAAAAAAAA",id="136579844511260"},{name="ai-meu-chiclete",id="92911732806153"},{name="posso te ligar ou tua mulher...",id="103211341252816"},{name="Boa chi joga muito cara",id="110707564387669"},{name="Oqueee meme",id="120092799810101"},{name="kkk muito fei",id="79241074803021"},{name="lula cade o ze gotinha",id="86012585992725"},{name="morreu",id="8872409975"},{name="a-pia-ta-cheia-de-louca",id="98076927129047"},{name="Mahito killSong",id="128669424001766"},{name="Sucumba",id="7946300950"},{name="nem clicou o thurzin",id="84428355313544"},{name="fiui OLHA MENSAGEM",id="121668429878811"},{name="tooomeee",id="128319664118768"},{name="risada de ladrao",id="133065882609605"},{name="E o PIX nada ainda",id="113831443375212"},{name="Vo nada vo nada",id="89093085290586"},{name="Eli gosta",id="105012436535315"},{name="um cavalo de tres pernas?",id="8164241439"},{name="voces sao um bado de fdp",id="8232773326"},{name="HAHA TROLLEI ATÉ VOCÊ",id="7021794555"},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="Calaboca Kenga",id="86494561679259"},{name="alvincut",id="88788640194373"},{name="e a risada faz como?",id="140713372459057"},{name="voce deve se m@t4",id="100227426848009"},{name="receba",id="94142662616215"},{name="UUIIII",id="73210569653520"},{name="sai",id="121169949217007"},{name="risada boa dms",id="127589011971759"},{name="vacilo perna de pau",id="106809680656199"},{name="gomo gomo no!!!",id="137067472449625"},{name="arroto",id="140203378050178"},{name="iraaaa",id="136752451575091"},{name="não fica se achando muito não",id="101588606280167"},{name="WhatsApp notificaçaoV1",id="107004225739474"},{name="WhatsApp notificaçaoV2",id="18850631582"},{name="SamsungV1",id="123767635061073"},{name="SamsungV2",id="96579234730244"},{name="Shiiii",id="120566727202986"},{name="ai_tomaa miku",id="139770074770361"},{name="Miku Miku",id="72812231495047"},{name="kuru_kuru",id="122465710753374"},{name="PM ROCAM",id="96161547081609"},{name="cavalo!!",id="78871573440184"},{name="deixa os garoto brinca",id="80291355054807"},{name="flamengo",id="137774355552052"},{name="sai do mei satnas",id="127944706557246"},{name="namoral agora e a hora",id="120677947987369"},{name="n pode me chutar pq seu celebro e burro",id="82284055473737"},{name="vc ta fudido vou te pegar",id="120214772725166"},{name="deley",id="102906880476838"},{name="Tu e um beta",id="130233956349541"},{name="Porfavor n tira eu nao",id="85321374020324"},{name="Olá beleza vc pode me dá muitos",id="74235334504693"},{name="Discord sus",id="122662798976905"},{name="rojao apito",id="6549021381"},{name="off",id="1778829098"},{name="Kazuma kazuma",id="127954653962405"},{name="sometourado",id="123592956882621"},{name="Estouradoespad",id="136179020015211"},{name="Alaku bommm",id="110796593805268"},{name="busss",id="139841197791567"},{name="Estourado wItb",id="137478052262430"},{name="sla",id="116672405522828"},{name="HA HA HA",id="138236682866721"}}},"pankapakan")local Section=Tab7:AddSection({" tacar o terror ou efeito no server"})createSoundDropdown("Selecione um terror ou efeito",{["efeito/terror"]={{name="jumpscar",id="91784486966761"},{name="n se preocupe",id="87041057113780"},{name="eles estao todos mortos",id="70605158718179"},{name="gritoestourado",id="7520729342"},{name="gritomedo",id="113029085566978"},{name="Nukesiren",id="9067330158"},{name="nuclear sirenv2",id="675587093"},{name="Alertescola",id="6607047008"},{name="Memealertsiren",id="8379374771"},{name="sirenv3",id="6766811806"},{name="Alarm estourAAAA...",id="93354528379052"},{name="MegaMan Alarm",id="1442382907"},{name="Alarm bookhaven",id="1526192493"},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="alet malaysia",id="7714172940"},{name="Risada",id="79191730206814"},{name="Hahahah",id="90096947219465"},{name="scream",id="314568939"},{name="Terrified meme scream",id="5853668794"},{name="Sonic.exe Scream Effect",id="146563959"},{name="Demon Scream",id="2738830850"},{name="SCP-096 Scream(raging)",id="343430735"},{name="Nightmare Yelling Bursts",id="9125713501"},{name="HORROR SCREAM 07",id="9043345732"},{name="Female Scream Woman Screams",id="9114397912"},{name="Scream1",id="1319496541"},{name="Scream2",id="199978176"},{name="scary maze scream",id="270145703"},{name="SammyClassicSonicFan's Scream",id="143942090"},{name="FNAF 2 Death Scream",id="1572549161"},{name="cod zombie scream",id="8566359672"},{name="Slendytubbies-CaveTubby Scream",id="1482639185"},{name="FNAF 2 Death Scream",id="5537531920"},{name="HORROR SCREAM 15",id="9043346574"},{name="Jumpscare Scream",id="6150329916"},{name="FNaF:Security Breach",id="2050522547"},{name="llllllll",id="5029269312"},{name="loud jumpscare",id="7236490488"},{name="fnaf",id="6982454389"},{name="Pinkamena Jumpscare 1",id="192334186"},{name="Ennard Jumpscare 2",id="629526707"},{name="a sla medo dino",id="125506416092123"},{name="Backrooms Bacteria Pitfalls ",id="81325342128575"},{name="error Infinite",id="3893790326"},{name="Screaming Meme",id="107732411055226"},{name="Jumpscare-SCP CB",id="97098997494905"},{name="mirror jumpscare",id="80005164589425"},{name="PTLD-39 Jumpscare",id="5581462381"},{name="jumpscare:Play()",id="121519648044128"},{name="mimic jumpscare",id="91998575878959"},{name="DOORS Glitch Jumpscare Sound",id="96377507894391"},{name="FNAS 4 Nightmare Mario",id="99804224106385"},{name="Death House I Jumpscare Sound",id="8151488745"},{name="Shinky Jumpscare",id="123447772144411"},{name="FNaTI Jumpscare Oblitus casa",id="18338717319"},{name="fnaf jumpscare loadmode",id="18911896588"},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""}}},"jumpscar")local function tocarMusica(id)local ReplicatedStorage=game:GetService("ReplicatedStorage")local argsRadio={[1]="ToolMusicText",[2]=id}ReplicatedStorage:WaitForChild("RE"):WaitForChild("PlayerToolEvent"):FireServer(unpack(argsRadio))local argsCasa={[1]="PickHouseMusicText",[2]=id}ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Player1sHous1e"):FireServer(unpack(argsCasa))local argsCarro={[1]="PickingCarMusicText",[2]=id}ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Player1sCa1r"):FireServer(unpack(argsCarro))local argsScooter={[1]="PickingScooterMusicText",[2]=id}ReplicatedStorage:WaitForChild("RE"):WaitForChild("1NoMoto1rVehicle1s"):FireServer(unpack(argsScooter))end local function isValidMusicId(value)return value and value~="" and value~="Option 1" and not value:match("novas musica adds")and not value:match("musica brasil")and not value:match("musica do meu interece")and not value:match("musica dls por elas")and not value:match("meme abaixo")and not value:match("estourada")end Tab8:AddTextBox({Name="ID da música",PlaceholderText="Digite o ID e pressione Enter",Callback=function(value)if value and value~="" then tocarMusica(tostring(value))end end})local function createMusicDropdown(title,musicOptions,defaultOption)local musicNames={}local categoryMap={}for category,sounds in pairs(musicOptions)do for _,music in ipairs(sounds)do if music.name~="" then table.insert(musicNames,music.name)categoryMap[music.name]={id=music.id,category=category}end end end local function playMusic(soundId)tocarMusica(tostring(soundId))end Tab8:AddDropdown({Name=title,Description="all",Default=defaultOption,Multi=false,Options=musicNames,Callback=function(selectedSound)if selectedSound and categoryMap[selectedSound]then local soundId=categoryMap[selectedSound].id if soundId and soundId~="" and soundId~="4354908569" then playMusic(soundId)end end end})end createMusicDropdown("Forró",{["forro"]={{name="forró ja cansou",id="74812784884330"},{name="lenbro ate hoje",id="71531533552899"},{name="escolha certa",id="107088620814881"},{name="forró da rezenha",id="120973520531216"},{name="forró dudu",id="74404168179733"},{name="forró sao joao",id="106364874935196"},{name="forró engraçado paia",id="76524290482399"},{name="100%forro vaquejada",id="92295159623916"},{name="PASTOR MIRIM E A LÍNGUA DOS ANJOS",id="71153532555470"},{name="PARA NÃO ESQUECER QUEM SOMOS",id="88937498361674"},{name="Uno zero",id="112959083808887"},{name="Iate do neymar",id="135738534706063"},{name="Batidao na aldeia",id="79953696595578"},{name="",id=""},{name="",id=""}}},"Option 1")createMusicDropdown("Músicas e Memes Aleatório",{["forro"]={{name="ANXIETY(Amapiano Re-fix)",id="101483901475189"},{name="Meu corpo,minhas regras",id="127587901595282"},{name="$$$$gg$$$$gg",id="137471775091253"},{name="Megalovania but its only the melodies",id="104500091160463"},{name="androphono strikes back",id="78312089943968"},{name="Bamm Bamm",id="128730685516895"},{name="chupa cabra",id="132890273173295"},{name="longe de mais",id="124478512057763"},{name="Garoto de Copacabana",id="135648634110254"},{name="CELL!",id="117634275895085"},{name="Boa vibe em Ubatuba",id="139059061493558"},{name="SLIP AWAY",id="126152928520174"},{name="Alone in Motion",id="122379348696948"},{name="Fade Away",id="81002139735874"},{name="Wounds & Wishes",id="109347979566607"},{name="Ascensão do Monarca",id="101864243033211"},{name="carro do ovo",id="3148329638"},{name="ingles bus(fling ou kill bus)",id="123268013026823"},{name="MIKU MIKU HATSUNE",id="112783541496955"},{name="Five Nights at Freddy's",id="110733765539890"},{name="Rat Dance",id="133496635668044"},{name="Escalando a Seleção Brasileira para a Copa",id="116546457407236"},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""}}},"Option 1")createMusicDropdown("Funk",{["Funk"]={{name="sua mulher funk",id="90844637105538"},{name="fuga na viatura",id="131891110268352"},{name="funkphonk fumando verde",id="112143944982807"},{name="cauma xmara",id="95664293972405"},{name="que que sharke",id="129546408528391"},{name="Il Cacto Hipopotamo FUNK",id="104491656009142"},{name="Espressora Signora FUNK",id="123394392737234"},{name="trippi troop funk",id="73049389767013"},{name="bombini funkphonk",id="88814770244609"},{name="pre treino",id="136869502216760"},{name="CVRL",id="124244582950595"},{name="batida Brega Violino(Beat Brega Funk)",id="99399643204701"},{name="Dança do Canguru(Pke Gaz1nh)",id="86876136192157"},{name="espere 30segundos!! Ondas sonoras",id="127757321382838"},{name="MONTAGEM ARABIANA(Pke Gaz1nh)",id="78076624091098"},{name="Manda o papo(NGI)",id="132642647937688"},{name="Viver bem",id="82805460494325"},{name="Faixa estronda",id="121187736532042"},{name="Ritmo Pixelado",id="93928823862203"},{name="Viagem Sonora",id="79349174602261"},{name="Melodia Virtual",id="139147474886402"},{name="Melodia Serena",id="97011217688307"},{name="SENTA",id="124085422276732"},{name="TUNG TUNG TUNG TUNG SAHUR PHONK BRASILEIRO",id="120353876640055"},{name="crazy-lol",id="106958630419629"},{name="V7",id="80348640826643"},{name="UIUAH",id="82894376737849"},{name="meta ritmo",id="110091098283354"},{name="CAPPUCCINO ASSASSINO(SPEDUP)",id="132733033157915"},{name="haha(NGI)",id="122114766584918"},{name="DO PO",id="114207745067816"},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""}}},"Option 1")createMusicDropdown("Phonk",{["phonk"]={{name="wyles",id="85385155970460"},{name="phonk kawai",id="91502410121438"},{name="querendo da a bucet@",id="72720721570850"},{name="vem no pocpoc",id="102333419023382"},{name="tatiu wim",id="122871512353520"},{name="novinha sapeca",id="111668097052966"},{name="novinha representa",id="93786060174790"},{name="phonk1",id="77501611905348"},{name="phonk2",id="126887144190812"},{name="phonk osadia",id="88033569921555"},{name="phonk sarra",id="132436320685732"},{name="relaionamento sem crush",id="105832154444494"},{name="phonk3",id="90323407842935"},{name="novinha dançapanpa",id="132245626038510"},{name="phonk sexoagreçivo",id="111995323199676"},{name="phonk4",id="115016589376700"},{name="phonk5",id="118740708757685"},{name="phonk6",id="139435437308948"},{name="phonk chapaquente",id="109189438638906"},{name="phonk rajada",id="105126065014034"},{name="rede globo",id="138487820505005"},{name="phonk indiano",id="87968531262747"},{name="vapo do vapo",id="106317184644394"},{name="tutatatutata",id="112068892721408"},{name="phonk slower",id="122852029094656"},{name="phonk9",id="91760524161503"},{name="phonk10",id="73140398421340"},{name="phonk11",id="137962454483542"},{name="phonk12",id="84733736048142"},{name="phonk13",id="106322173003761"},{name="phonk14",id="94604796823780"},{name="phonk15",id="118063577904953"},{name="phonk16",id="115567432786512"},{name="phonk toq",id="71304501822029"},{name="phonk hey",id="132218979961283"},{name="phonk17",id="102708912256857"},{name="phonk18",id="140642559093189"},{name="phonk neve",id="13530439660"},{name="phonk19",id="87863924786534"},{name="phonk20",id="133135085604736"},{name="phonk lento",id="97258811783169"},{name="phonk21",id="92308400487695"},{name="tipo wym",id="88064647826500"},{name="estouradassa1",id="92175624643620"},{name="estouradassa2",id="108099943758978"},{name="Naaaaa",id="109784877184952"},{name="trem",id="114608169341947"},{name="eoropa",id="111346133543699"},{name="atimosphekika",id="77857496821844"},{name="phonk ALL THE TIME",id="123809083385992"},{name="Lifelong Memory",id="81929101024622"},{name="Automotivo Blondie(Pke Gaz1nh)",id="74564219749776"},{name="สวัสดีคนไทย v2",id="118225359190317"},{name="MTG TU VAI SENTAR(Pke Gaz1nh)",id="115317874112657"},{name="SARRA FUNK",id="96249826607044"},{name="Catuquanvan",id="88038595663211"},{name="F-D-1(slowed)",id="124958445624871"},{name="Sucessagem",id="88551699463723"},{name="ILOVE phonksla",id="82148953715595"},{name="SPEED SLIDE",id="118959437310311"},{name="TOMA FUNK PHONK",id="126291069838831"},{name="PASSO BEM SOLTO X NEW JAZZ",id="122706595087279"},{name="MONTAGEM BIONICA DIAMANTE",id="122338822665007"},{name="BALA SELVAGEM!",id="96180057167470"},{name="Luz<3",id="74281337525581"},{name="COMO TU",id="86928685812280"},{name="MONTAGEM SOLAR TROPICANO(SPEED UP)",id="116461681407294"},{name="MONTAGEM SOLAR TROPICANO(SLOWED)",id="109308273341422"},{name="YO DE TI",id="125181345407169"},{name="Beauty,(Phonk),Super sped up",id="71123357599630"},{name="MONTAGEM BOOMBOX DO MALA FUNK",id="86537505028256"},{name="BRAZIL DO FUNK",id="133498554139200"},{name="BRR BRR PATAPIM FUNK",id="117170901476451"},{name="MONTAGEM TERRA BELA FUNK",id="134770548505933"},{name="FUNK DO RAVE 1.0",id="137135395010424"},{name=" Portao Funk",id="70900514961735"},{name=" Espaço Funk",id="110519906029322"},{name=" FUTABA",id="91834632690710"},{name=" Melódica Explosão De Melodia",id="98371771055411"},{name=" RASGO",id="98267810117949"},{name=" HIPNOTIZA",id="117668905142866"},{name="CRISTAL NOTURNO",id="103695219371872"},{name=" SKY HIGH",id="123517126955383"},{name="MIKU top",id="102771149931910"},{name=" ACABU SO FUNK",id="127870227978818"},{name="CREATIFE FUNK",id="130525387712209"},{name="GOTH FUNK",id="97662362226511"},{name="PORTUGESE FUNK",id="125858109122379"},{name="SUBURBANA",id="139825057894568"},{name="ESPERA LA NOCHE FUNK",id="139768056738146"},{name="SIN PERMISO FUNK",id="92572896648274"},{name="MONTAGEM DACE RAT",id="98711199754623"},{name=" LOVELY FUNK",id="130633105268814"},{name="STORYMODECOOL",id="87115976125426"},{name="BLACK COFFEE FUNK",id="82705137378395"},{name="KOBALT",id="79381341943021"},{name=" andante bacterial",id="105882833374061"},{name="ANGEL Speed Up",id="139593870988593"},{name="LUTA ÉPICA",id="73966367524216"},{name="MALDITA",id="133814632960968"},{name="DA ZONA NTJ VERSON",id="105770593501071"},{name="HIPNOTIZA",id="132015050363205"},{name="MIDZUKI speed up",id="129151948619922"},{name="movimenta funk",id="114994598691121"},{name="CRISTAL",id="103445348511856"},{name="Letero funkphonk",id="99409598156364"},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""},{name="",id=""}}},"Option 1")Tab8:AddButton({Name="Stop",Description="ALL music",Callback=function()tocarMusica("")end})local Players=game:GetService("Players")local Workspace=game:GetService("Workspace")local RunService=game:GetService("RunService")local ReplicatedStorage=game:GetService("ReplicatedStorage")local LocalPlayer=Players.LocalPlayer local selectedPlayer=nil local isFollowingKill=false local isFollowingPull=false local running=false local connection=nil local flingConnection=nil local originalPosition=nil local savedPosition=nil local originalProperties={}local selectedKillPullMethod=nil local selectedFlingMethod=nil local soccerBall=nil local couch=nil local isSpectating=false local spectatedPlayer=nil local characterConnection=nil local flingToggle=nil local SetNetworkOwnerEvent=Instance.new("RemoteEvent")SetNetworkOwnerEvent.Name="SetNetworkOwnerEvent_" .. tostring(math.random(1000,9999))SetNetworkOwnerEvent.Parent=ReplicatedStorage local serverScriptCode=[[local ReplicatedStorage=game:GetService("ReplicatedStorage")local event=ReplicatedStorage:WaitForChild("]].. SetNetworkOwnerEvent.Name ..[[")event.OnServerEvent:Connect(function(player,part,networkOwner)if part and part:IsA("BasePart")then pcall(function()part:SetNetworkOwner(networkOwner)part.Anchored=false part.CanCollide=true part.CanTouch=true end)end end)]]pcall(function()loadstring(serverScriptCode)()end)local function disableCarClient()local backpack=LocalPlayer:WaitForChild("Backpack")local carClient=backpack:FindFirstChild("CarClient")if carClient and carClient:IsA("LocalScript")then carClient.Disabled=true end end local function enableCarClient()local backpack=LocalPlayer:WaitForChild("Backpack")local carClient=backpack:FindFirstChild("CarClient")if carClient and carClient:IsA("LocalScript")then carClient.Disabled=false end end local function getPlayerNames()local playerNames={}for _,player in ipairs(Players:GetPlayers())do if player~=LocalPlayer then table.insert(playerNames,player.Name)end end return playerNames end local function updateDropdown(dropdown,spectateToggle)pcall(function()local currentValue=dropdown:Get()local playerNames=getPlayerNames()dropdown:Set(playerNames)if currentValue and not table.find(playerNames,currentValue)then dropdown:Set("")selectedPlayer=nil if isSpectating then stopSpectating()if spectateToggle then pcall(function()spectateToggle:Set(false)end)end end if running or isFollowingKill or isFollowingPull then running=false isFollowingKill=false isFollowingPull=false if connection then connection:Disconnect()connection=nil end if flingConnection then flingConnection:Disconnect()flingConnection=nil end if flingToggle then pcall(function()flingToggle:Set(false)end)end end elseif currentValue and table.find(playerNames,currentValue)then dropdown:Set(currentValue)end end)end local function spectatePlayer(playerName)if characterConnection then characterConnection:Disconnect()characterConnection=nil end local targetPlayer=Players:FindFirstChild(playerName)if targetPlayer and targetPlayer~=LocalPlayer then spectatedPlayer=targetPlayer isSpectating=true local function updateCamera()if not isSpectating or not spectatedPlayer then return end if spectatedPlayer.Character and spectatedPlayer.Character:FindFirstChild("Humanoid")then Workspace.CurrentCamera.CameraSubject=spectatedPlayer.Character.Humanoid else Workspace.CurrentCamera.CameraSubject=nil end end updateCamera()characterConnection=RunService.Heartbeat:Connect(function()if not isSpectating then characterConnection:Disconnect()characterConnection=nil return end pcall(updateCamera)end)spectatedPlayer.CharacterAdded:Connect(function()if isSpectating then updateCamera()end end)else isSpectating=false spectatedPlayer=nil end end local function stopSpectating()if characterConnection then characterConnection:Disconnect()characterConnection=nil end isSpectating=false spectatedPlayer=nil if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid")then Workspace.CurrentCamera.CameraSubject=LocalPlayer.Character.Humanoid Workspace.CurrentCamera.CameraType=Enum.CameraType.Custom else Workspace.CurrentCamera.CameraSubject=nil Workspace.CurrentCamera.CameraType=Enum.CameraType.Custom end end local function teleportToPlayer(playerName)local targetPlayer=Players:FindFirstChild(playerName)if targetPlayer and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart")and targetPlayer.Character and targetPlayer.Character:FindFirstChild("HumanoidRootPart")then local myHRP=LocalPlayer.Character:FindFirstChild("HumanoidRootPart")local myHumanoid=LocalPlayer.Character:FindFirstChild("Humanoid")if not myHRP or not myHumanoid then print("Seu personagem não está totalmente carregado para teletransporte.")return end for _,part in ipairs(LocalPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.Velocity=Vector3.zero part.RotVelocity=Vector3.zero part.Anchored=true end end local success,errorMessage=pcall(function()myHRP.CFrame=CFrame.new(targetPlayer.Character.HumanoidRootPart.Position+Vector3.new(0,2,0))end)if not success then warn("Erro ao teletransportar:" .. tostring(errorMessage))return end myHumanoid.Sit=false myHumanoid:ChangeState(Enum.HumanoidStateType.GettingUp)task.wait(0.5)for _,part in ipairs(LocalPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.Anchored=false part.Velocity=Vector3.zero part.RotVelocity=Vector3.zero end end print("Teletransportado para o jogador:" .. playerName .. " com ancoragem segura.")else print("Jogador ou personagem não encontrado para teletransporte.")end end LocalPlayer.CharacterAdded:Connect(function(character)if isSpectating then stopSpectating()pcall(function()SpectateToggleTab10:Set(false)end)end end)local valor_do_nome_do_joagdor local DropdownPlayerTab2=Tab9:AddDropdown({Name="Selecionar Jogador",Description="Escolha um jogador para matar,puxar,visualizar ou aplicar fling",Default="",Multi=false,Options=getPlayerNames(),Flag="player list",Callback=function(selectedPlayerName)valor_do_nome_do_joagdor=selectedPlayerName if selectedPlayerName=="" or selectedPlayerName==nil then selectedPlayer=nil if running or isFollowingKill or isFollowingPull then running=false isFollowingKill=false isFollowingPull=false if connection then connection:Disconnect()end if flingConnection then flingConnection:Disconnect()end if flingToggle then pcall(function()flingToggle:Set(false)end)end end if isSpectating then stopSpectating()end else selectedPlayer=Players:FindFirstChild(selectedPlayerName)if isSpectating then stopSpectating()spectatePlayer(selectedPlayerName)end end end})function UptadePlayers()local playerNames={}for _,player in ipairs(Players:GetPlayers())do if player.Name~=LocalPlayer.Name then table.insert(playerNames,player.Name)end end DropdownPlayerTab2:Set(playerNames)end Tab9:AddButton({"Atualizar lista",function()UptadePlayers()end})UptadePlayers()Tab9:AddButton({Title="Teleportar para Jogador",Desc="Clique para teletransportar para o jogador selecionado",Callback=function()local selectedPlayerName=valor_do_nome_do_joagdor if selectedPlayerName and selectedPlayerName~="" then local success,errorMessage=pcall(teleportToPlayer,selectedPlayerName)if not success then warn("Erro ao teletransportar:" .. tostring(errorMessage))end else print("Selecione um jogador antes de teletransportar.")end end})local SpectateToggleTab10=Tab9:AddToggle({Name="Visualizar Jogador",Description="Ativa/desativa a visualização do jogador selecionado",Default=false,Callback=function(state)if state then if selectedPlayer then pcall(spectatePlayer,selectedPlayer.Name)else SpectateToggleTab10:Set(false)end else pcall(stopSpectating)end end})Players.PlayerRemoving:Connect(function(player)updateDropdown(DropdownPlayerTab2,SpectateToggleTab10)if selectedPlayer==player then selectedPlayer=nil if isSpectating then stopSpectating()end if running then running=false if connection then connection:Disconnect()connection=nil end if flingConnection then flingConnection:Disconnect()flingConnection=nil end if flingToggle then flingToggle:Set(false)end end SpectateToggleTab10:Set(false)DropdownPlayerTab2:Set("")end end)Players.PlayerAdded:Connect(function()task.wait(1)updateDropdown(DropdownPlayerTab2,SpectateToggleTab10)end)updateDropdown(DropdownPlayerTab2,SpectateToggleTab10)local Section=Tab9:AddSection({"Kill"})local DropdownKillPullMethod=Tab9:AddDropdown({Name="Selecionar Método(Matar/Puxar)",Description="Escolha o método para matar ou puxar",Options={"Sofá","Ônibus"},Callback=function(value)selectedKillPullMethod=value end})local function equipSofa()local backpack=LocalPlayer:WaitForChild("Backpack")local sofa=backpack:FindFirstChild("Couch")or LocalPlayer.Character:FindFirstChild("Couch")if not sofa then local args={[1]="PickingTools",[2]="Couch"}local success=pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Too1l"):InvokeServer(unpack(args))end)if not success then return false end repeat sofa=backpack:FindFirstChild("Couch")task.wait()until sofa or task.wait(5)if not sofa then return false end end if sofa.Parent~=LocalPlayer.Character then sofa.Parent=LocalPlayer.Character end return true end local function killWithSofa(targetPlayer)if not targetPlayer or not targetPlayer.Character or not LocalPlayer.Character then return end if not equipSofa()then return end isFollowingKill=true originalPosition=LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position end local function pullWithSofa(targetPlayer)if not targetPlayer or not targetPlayer.Character or not LocalPlayer.Character then return end if not equipSofa()then return end isFollowingPull=true originalPosition=LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position end local function killWithBus(targetPlayer)if not targetPlayer or not targetPlayer.Character or not LocalPlayer.Character then return end local character=LocalPlayer.Character local humanoid=character:FindFirstChildOfClass("Humanoid")local myHRP=character:FindFirstChild("HumanoidRootPart")if not humanoid or not myHRP then return end savedPosition=myHRP.Position pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(1181.83,76.08,-1158.83))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)task.wait(0.5)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)args={[1]="PickingCar",[2]="SchoolBus"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)task.wait(1)local vehiclesFolder=Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then return end local busName=LocalPlayer.Name .. "Car" local bus=vehiclesFolder:FindFirstChild(busName)if not bus then return end pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(1171.15,79.45,-1166.2))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false humanoid:ChangeState(Enum.HumanoidStateType.Seated)end)local sitStart=tick()repeat task.wait()if tick()-sitStart>10 then return end until humanoid.Sit for _,part in ipairs(bus:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false pcall(function()part:SetNetworkOwner(nil)end)end end running=true connection=RunService.Stepped:Connect(function()if not running then return end for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end end)local lastUpdate=tick()local updateInterval=0.05 local startTime=tick()flingConnection=RunService.Heartbeat:Connect(function()if not running then return end local targetCharacter=targetPlayer.Character or targetPlayer.CharacterAdded:Wait()local newTargetHRP=targetCharacter:FindFirstChild("HumanoidRootPart")local newTargetHumanoid=targetCharacter:FindFirstChild("Humanoid")if not newTargetHRP or not newTargetHumanoid then return end if not myHRP or not humanoid then running=false return end if tick()-lastUpdate10 then running=false if connection then connection:Disconnect()connection=nil end if flingConnection then flingConnection:Disconnect()flingConnection=nil end pcall(function()bus:PivotTo(CFrame.new(Vector3.new(-76.6,-401.97,-84.26)))end)task.wait(0.5)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)if character then local myHRP=character:FindFirstChild("HumanoidRootPart")if myHRP and savedPosition then pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(savedPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)end end if character then for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true part.Velocity=Vector3.zero part.RotVelocity=Vector3.zero end end end local myHumanoid=character and character:FindFirstChild("Humanoid")if myHumanoid then myHumanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,true)end for _,seat in ipairs(Workspace:GetDescendants())do if seat:IsA("Seat")or seat:IsA("VehicleSeat")then seat.Disabled=false end end pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clothe1s"):FireServer("CharacterSizeUp",1)end)end end)end local followConnection if followConnection then followConnection:Disconnect()end followConnection=RunService.Heartbeat:Connect(function()if(isFollowingKill or isFollowingPull)and selectedPlayer and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart")and selectedPlayer.Character and selectedPlayer.Character:FindFirstChild("HumanoidRootPart")then pcall(function()local targetPosition=selectedPlayer.Character.HumanoidRootPart.Position LocalPlayer.Character:SetPrimaryPartCFrame(CFrame.new(targetPosition)*CFrame.Angles(math.rad(Workspace.DistributedGameTime*12000),math.rad(Workspace.DistributedGameTime*15000),math.rad(Workspace.DistributedGameTime*18000)))end)end end)local sitCheckConnection if sitCheckConnection then sitCheckConnection:Disconnect()end sitCheckConnection=RunService.Heartbeat:Connect(function()if(isFollowingKill or isFollowingPull)and selectedPlayer and selectedPlayer.Character and selectedPlayer.Character:FindFirstChild("Humanoid")then pcall(function()if selectedPlayer.Character.Humanoid.Sit then if isFollowingKill then if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart")then LocalPlayer.Character:SetPrimaryPartCFrame(CFrame.new(0,-500,0))task.wait(0.5)ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Too1l"):InvokeServer("PickingTools","Couch")task.wait(1)end end isFollowingKill=false isFollowingPull=false if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart")and originalPosition then local myHRP=LocalPlayer.Character:FindFirstChild("HumanoidRootPart")local myHumanoid=LocalPlayer.Character:FindFirstChild("Humanoid")if myHRP then myHRP.Anchored=true myHRP.CFrame=CFrame.new(originalPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if myHumanoid then myHumanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end originalPosition=nil end end end)end end)Tab9:AddButton({Name="Matar",Description="Inicia o matar com o método selecionado",Callback=function()if isFollowingKill or isFollowingPull or running then return end if not selectedPlayer or not selectedKillPullMethod then return end if selectedKillPullMethod=="Sofá" then killWithSofa(selectedPlayer)elseif selectedKillPullMethod=="Ônibus" then killWithBus(selectedPlayer)end end})Tab9:AddButton({Name="Puxar",Description="Inicia o puxar com o método selecionado",Callback=function()if isFollowingKill or isFollowingPull or running then return end if not selectedPlayer or not selectedKillPullMethod or selectedKillPullMethod~="Sofá" then return end pullWithSofa(selectedPlayer)end})Tab9:AddButton({Name="Parar(Matar ou Puxar)",Description="Para o movimento de matar ou puxar",Callback=function()isFollowingKill=false isFollowingPull=false for _,part in ipairs(LocalPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true part.Velocity=Vector3.zero part.RotVelocity=Vector3.zero end end local myHumanoid=LocalPlayer.Character:FindFirstChild("Humanoid")if myHumanoid then myHumanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,true)end for _,seat in ipairs(Workspace:GetDescendants())do if seat:IsA("Seat")or seat:IsA("VehicleSeat")then seat.Disabled=false end end if originalPosition then local myHRP=LocalPlayer.Character:FindFirstChild("HumanoidRootPart")if myHRP then myHRP.Anchored=true myHRP.CFrame=CFrame.new(originalPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if myHumanoid then myHumanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end originalPosition=nil end disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)end})local Section=Tab9:AddSection({" flings"})local DropdownFlingMethod=Tab9:AddDropdown({Name="Selecionar Método de Fling",Description="Escolha o método para aplicar fling",Options={"Sofá","Ônibus","Bola","Bola V2","Barco","Caminhão"},Callback=function(value)selectedFlingMethod=value end})local function flingWithSofa(targetPlayer)if not targetPlayer or not targetPlayer.Character or not LocalPlayer.Character then return end local character=LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")local myHRP=character:FindFirstChild("HumanoidRootPart")if not humanoid or not myHRP then return end savedPosition=myHRP.Position if not equipSofa()then return end task.wait(0.5)couch=character:FindFirstChild("Couch")if not couch then for _,obj in ipairs(Workspace:GetDescendants())do if(obj.Name=="Couch" or obj.Name=="Couch" .. LocalPlayer.Name)and(obj:IsA("BasePart")or obj:IsA("Tool"))then couch=obj break end end end if not couch then return end if couch:IsA("BasePart")then originalProperties={Anchored=couch.Anchored,CanCollide=couch.CanCollide,CanTouch=couch.CanTouch}couch.Anchored=false couch.CanCollide=true couch.CanTouch=true pcall(function()couch:SetNetworkOwner(nil)end)end running=true connection=RunService.Stepped:Connect(function()if not running then return end for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end end)local startTime=tick()local walkFlingInstance=nil flingConnection=RunService.Heartbeat:Connect(function()if not running then return end if not targetPlayer or not targetPlayer.Character then running=false return end local newTargetHRP=targetPlayer.Character:FindFirstChild("HumanoidRootPart")local newTargetHumanoid=targetPlayer.Character:FindFirstChild("Humanoid")if not newTargetHRP or not newTargetHumanoid then running=false return end if not myHRP or not humanoid then running=false return end pcall(function()local targetPosition=newTargetHRP.Position character:SetPrimaryPartCFrame(CFrame.new(targetPosition)*CFrame.Angles(math.rad(Workspace.DistributedGameTime*12000),math.rad(Workspace.DistributedGameTime*15000),math.rad(Workspace.DistributedGameTime*18000)))end)if newTargetHumanoid.Sit or tick()-startTime>10 then running=false flingConnection:Disconnect()flingConnection=nil for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false pcall(function()part:SetNetworkOwner(nil)end)end end walkFlingInstance=Instance.new("BodyVelocity")walkFlingInstance.MaxForce=Vector3.new(math.huge,math.huge,math.huge)walkFlingInstance.Velocity=Vector3.new(math.random(-5,5),5,math.random(-5,5)).Unit*1000000+Vector3.new(0,1000000,0)walkFlingInstance.Parent=myHRP pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(-59599.73,2040070.50,-293391.16))myHRP.Anchored=false end)local spinStart=tick()local spinConnection spinConnection=RunService.Heartbeat:Connect(function()if tick()-spinStart>=0.5 then spinConnection:Disconnect()return end pcall(function()character:SetPrimaryPartCFrame(myHRP.CFrame*CFrame.Angles(math.rad(Workspace.DistributedGameTime*12000),math.rad(Workspace.DistributedGameTime*15000),math.rad(Workspace.DistributedGameTime*18000)))end)end)task.wait(0.5)local args={[1]="PlayerWantsToDeleteTool",[2]="Couch"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clea1rTool1s"):FireServer(unpack(args))end)pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(savedPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)if walkFlingInstance then walkFlingInstance:Destroy()for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true end end end if flingToggle then flingToggle:SetValue(false)end end end)end local function equipBola()local backpack=LocalPlayer:WaitForChild("Backpack")local bola=backpack:FindFirstChild("SoccerBall")or LocalPlayer.Character:FindFirstChild("SoccerBall")if not bola then local args={[1]="PickingTools",[2]="SoccerBall"}local success=pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Too1l"):InvokeServer(unpack(args))end)if not success then return false end repeat bola=backpack:FindFirstChild("SoccerBall")task.wait()until bola or task.wait(5)if not bola then return false end end if bola.Parent~=LocalPlayer.Character then bola.Parent=LocalPlayer.Character end return true end local function flingWithBall(targetPlayer)if not targetPlayer or not targetPlayer.Character then return end local character=LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")local myHRP=character:FindFirstChild("HumanoidRootPart")if not humanoid or not myHRP then return end if not equipBola()then return end task.wait(0.5)local args={[1]="PlayerWantsToDeleteTool",[2]="SoccerBall"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clea1rTool1s"):FireServer(unpack(args))end)local workspaceCom=Workspace:FindFirstChild("WorkspaceCom")if not workspaceCom then return end local soccerBalls=workspaceCom:FindFirstChild("001_SoccerBalls")if not soccerBalls then return end soccerBall=soccerBalls:FindFirstChild("Soccer" .. LocalPlayer.Name)if not soccerBall then return end originalProperties={Anchored=soccerBall.Anchored,CanCollide=soccerBall.CanCollide,CanTouch=soccerBall.CanTouch}soccerBall.Anchored=false soccerBall.CanCollide=true soccerBall.CanTouch=true pcall(function()soccerBall:SetNetworkOwner(nil)end)savedPosition=myHRP.Position for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end if humanoid then humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,false)humanoid.Sit=false end for _,seat in ipairs(Workspace:GetDescendants())do if seat:IsA("Seat")or seat:IsA("VehicleSeat")then seat.Disabled=true end end pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clothe1s"):FireServer("CharacterSizeDown",4)end)running=true local lastFlingTime=0 connection=RunService.Heartbeat:Connect(function()if not running or not targetPlayer.Character then return end local hrp=targetPlayer.Character:FindFirstChild("HumanoidRootPart")local hum=targetPlayer.Character:FindFirstChild("Humanoid")local myHRP=LocalPlayer.Character:FindFirstChild("HumanoidRootPart")if not hrp or not hum or not myHRP then return end local moveDir=hum.MoveDirection local isStill=moveDir.Magnitude<0.1 local isSitting=hum.Sit if isSitting then local y=math.sin(tick()*50)*2 soccerBall.CFrame=CFrame.new(hrp.Position+Vector3.new(0,0.75+y,0))elseif isStill then local z=math.sin(tick()*50)*3 soccerBall.CFrame=CFrame.new(hrp.Position+Vector3.new(0,0.75,z))else local offset=moveDir.Unit*math.clamp(hrp.Velocity.Magnitude*0.15,5,12)soccerBall.CFrame=CFrame.new(hrp.Position+offset+Vector3.new(0,0.75,0))end myHRP.CFrame=CFrame.new(soccerBall.Position+Vector3.new(0,1,0))end)flingConnection=RunService.Heartbeat:Connect(function()if not running or not targetPlayer.Character then return end local hrp=targetPlayer.Character:FindFirstChild("HumanoidRootPart")if not hrp then return end local dist=(soccerBall.Position-hrp.Position).Magnitude if dist<4 and tick()-lastFlingTime>0.4 then lastFlingTime=tick()for _,part in ipairs(targetPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end local fling=Instance.new("BodyVelocity")fling.MaxForce=Vector3.new(math.huge,math.huge,math.huge)fling.Velocity=Vector3.new(math.random(-5,5),5,math.random(-5,5)).Unit*500000+Vector3.new(0,250000,0)fling.Parent=hrp task.delay(0.3,function()fling:Destroy()for _,part in ipairs(targetPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true end end end)end end)end local function flingWithBallV2(targetPlayer)if not targetPlayer or not targetPlayer.Character then return end local character=LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()local myHRP=character:FindFirstChild("HumanoidRootPart")if not myHRP then return end if not equipBola()then return end task.wait(0.5)local args={[1]="PlayerWantsToDeleteTool",[2]="SoccerBall"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clea1rTool1s"):FireServer(unpack(args))end)local workspaceCom=Workspace:FindFirstChild("WorkspaceCom")if not workspaceCom then return end local soccerBalls=workspaceCom:FindFirstChild("001_SoccerBalls")if not soccerBalls then return end soccerBall=soccerBalls:FindFirstChild("Soccer" .. LocalPlayer.Name)if not soccerBall then return end originalProperties={Anchored=soccerBall.Anchored,CanCollide=soccerBall.CanCollide,CanTouch=soccerBall.CanTouch}soccerBall.Anchored=false soccerBall.CanCollide=true soccerBall.CanTouch=true pcall(function()soccerBall:SetNetworkOwner(nil)end)savedPosition=myHRP.Position running=true local lastFlingTime=0 connection=RunService.Heartbeat:Connect(function()if not running or not targetPlayer.Character then return end local hrp=targetPlayer.Character:FindFirstChild("HumanoidRootPart")local hum=targetPlayer.Character:FindFirstChild("Humanoid")if not hrp or not hum then return end local speed=hrp.Velocity.Magnitude local isMoving=hum.MoveDirection.Magnitude>0.05 local isJumping=hum:GetState()==Enum.HumanoidStateType.Jumping local offset if isMoving or isJumping then local extra=math.clamp(speed/1.5,6,15)offset=hrp.CFrame.LookVector*extra+Vector3.new(0,1,0)else local wave=math.sin(tick()*25)*4 local side=math.cos(tick()*20)*1.5 offset=Vector3.new(side,1,wave)end pcall(function()soccerBall.CFrame=CFrame.new(hrp.Position+offset)soccerBall.AssemblyLinearVelocity=Vector3.new(9999,9999,9999)end)end)flingConnection=RunService.Heartbeat:Connect(function()if not running or not targetPlayer.Character then return end local hrp=targetPlayer.Character:FindFirstChild("HumanoidRootPart")if not hrp then return end local dist=(soccerBall.Position-hrp.Position).Magnitude if dist<4 and tick()-lastFlingTime>0.4 then lastFlingTime=tick()for _,part in ipairs(targetPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end local fling=Instance.new("BodyVelocity")fling.MaxForce=Vector3.new(math.huge,math.huge,math.huge)fling.Velocity=Vector3.new(math.random(-5,5),5,math.random(-5,5)).Unit*500000+Vector3.new(0,250000,0)fling.Parent=hrp task.delay(0.3,function()fling:Destroy()for _,part in ipairs(targetPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true end end end)end end)end local function flingWithBus(targetPlayer)if not targetPlayer or not targetPlayer.Character or not LocalPlayer.Character then return end local character=LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")local myHRP=character:FindFirstChild("HumanoidRootPart")if not humanoid or not myHRP then return end savedPosition=myHRP.Position pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(1181.83,76.08,-1158.83))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)task.wait(0.5)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)args={[1]="PickingCar",[2]="SchoolBus"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)task.wait(1)local vehiclesFolder=Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then return end local busName=LocalPlayer.Name .. "Car" local bus=vehiclesFolder:FindFirstChild(busName)if not bus then return end pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(1171.15,79.45,-1166.2))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false humanoid:ChangeState(Enum.HumanoidStateType.Seated)end)local sitStart=tick()repeat task.wait()if tick()-sitStart>10 then return end until humanoid.Sit for _,part in ipairs(bus:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false pcall(function()part:SetNetworkOwner(nil)end)end end running=true connection=RunService.Stepped:Connect(function()if not running then return end for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end end)local startTime=tick()local walkFlingInstancePlayer=nil flingConnection=RunService.Heartbeat:Connect(function()if not running then return end if not targetPlayer or not targetPlayer.Character then running=false return end local newTargetHRP=targetPlayer.Character:FindFirstChild("HumanoidRootPart")local newTargetHumanoid=targetPlayer.Character:FindFirstChild("Humanoid")if not newTargetHRP or not newTargetHumanoid then running=false return end if not myHRP or not humanoid then running=false return end local offset=Vector3.new(math.random(-10,10),0,math.random(-10,10))pcall(function()local targetPosition=newTargetHRP.Position+offset bus:PivotTo(CFrame.new(targetPosition)*CFrame.Angles(math.rad(Workspace.DistributedGameTime*12000),math.rad(Workspace.DistributedGameTime*15000),math.rad(Workspace.DistributedGameTime*18000)))end)local playerSeated=false for _,seat in ipairs(bus:GetDescendants())do if(seat:IsA("Seat")or seat:IsA("VehicleSeat"))and seat.Name~="VehicleSeat" then if seat.Occupant==newTargetHumanoid then playerSeated=true break end end end if playerSeated or tick()-startTime>10 then running=false flingConnection:Disconnect()flingConnection=nil pcall(function()bus:PivotTo(CFrame.new(Vector3.new(-59599.73,2040070.50,-293391.16)))end)walkFlingInstancePlayer=Instance.new("BodyVelocity")walkFlingInstancePlayer.MaxForce=Vector3.new(math.huge,math.huge,math.huge)walkFlingInstancePlayer.Velocity=Vector3.new(math.random(-5,5),5,math.random(-5,5)).Unit*1000000+Vector3.new(0,1000000,0)walkFlingInstancePlayer.Parent=myHRP task.wait(0.5)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)if walkFlingInstancePlayer then walkFlingInstancePlayer:Destroy()for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true end end end pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(savedPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)if flingToggle then flingToggle:Set(false)end end end)end local function flingWithBoat(targetPlayer)if not targetPlayer or not targetPlayer.Character or not LocalPlayer.Character then return end local character=LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")local myHRP=character:FindFirstChild("HumanoidRootPart")if not humanoid or not myHRP then return end savedPosition=myHRP.Position pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(-3359.52,-5.05,-501.94))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)task.wait(0.4)args={[1]="PickingBoat",[2]="MilitaryBoatFree"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)task.wait(1.5)local vehiclesFolder=Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then return end local boatName=LocalPlayer.Name .. "Car" local boat=vehiclesFolder:FindFirstChild(boatName)if not boat then return end pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(-3358.85,5.25,-521.95))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false humanoid:ChangeState(Enum.HumanoidStateType.Seated)end)local sitStart=tick()repeat task.wait()if tick()-sitStart>10 then return end until humanoid.Sit for _,part in ipairs(boat:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false pcall(function()part:SetNetworkOwner(nil)end)end end running=true connection=RunService.Stepped:Connect(function()if not running then return end for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end end)local startTime=tick()flingConnection=RunService.Heartbeat:Connect(function()if not running then return end if not targetPlayer or not targetPlayer.Character then running=false return end local newTargetHRP=targetPlayer.Character:FindFirstChild("HumanoidRootPart")local newTargetHumanoid=targetPlayer.Character:FindFirstChild("Humanoid")if not newTargetHRP or not newTargetHumanoid then running=false return end if not myHRP or not humanoid then running=false return end local offset=Vector3.new(math.random(-10,10),0,math.random(-10,10))pcall(function()local targetPosition=newTargetHRP.Position+offset boat:PivotTo(CFrame.new(targetPosition)*CFrame.Angles(math.rad(Workspace.DistributedGameTime*12000),math.rad(Workspace.DistributedGameTime*15000),math.rad(Workspace.DistributedGameTime*18000)))end)local playerSeated=false for _,seat in ipairs(boat:GetDescendants())do if(seat:IsA("Seat")or seat:IsA("VehicleSeat"))and seat.Name~="VehicleSeat" then if seat.Occupant==newTargetHumanoid then playerSeated=true break end end end if playerSeated or tick()-startTime>10 then running=false if connection then connection:Disconnect()connection=nil end if flingConnection then flingConnection:Disconnect()flingConnection=nil end pcall(function()boat:PivotTo(CFrame.new(Vector3.new(-76.6,-401.97,-84.26)))end)task.wait(0.5)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)if character then local myHRP=character:FindFirstChild("HumanoidRootPart")if myHRP and savedPosition then pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(savedPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)end end if character then for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true part.Velocity=Vector3.zero part.RotVelocity=Vector3.zero end end end local myHumanoid=character and character:FindFirstChild("Humanoid")if myHumanoid then myHumanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,true)end for _,seat in ipairs(Workspace:GetDescendants())do if seat:IsA("Seat")or seat:IsA("VehicleSeat")then seat.Disabled=false end end pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clothe1s"):FireServer("CharacterSizeUp",1)end)if flingToggle then flingToggle:Set(false)end end end)end local function flingWithTruck(targetPlayer)if not targetPlayer or not targetPlayer.Character or not LocalPlayer.Character then return end local character=LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()local humanoid=character:FindFirstChildOfClass("Humanoid")local myHRP=character:FindFirstChild("HumanoidRootPart")if not humanoid or not myHRP then return end savedPosition=myHRP.Position pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(1181.83,76.08,-1158.83))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)task.wait(0.5)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)args={[1]="PickingCar",[2]="Semi"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)task.wait(1)local vehiclesFolder=Workspace:FindFirstChild("Vehicles")if not vehiclesFolder then return end local truckName=LocalPlayer.Name .. "Car" local truck=vehiclesFolder:FindFirstChild(truckName)if not truck then return end pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(Vector3.new(1176.56,79.90,-1166.65))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false humanoid:ChangeState(Enum.HumanoidStateType.Seated)end)local sitStart=tick()repeat task.wait()if tick()-sitStart>10 then return end until humanoid.Sit for _,part in ipairs(truck:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false pcall(function()part:SetNetworkOwner(nil)end)end end running=true connection=RunService.Stepped:Connect(function()if not running then return end for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end end)local startTime=tick()local lastFlingTime=0 flingConnection=RunService.Heartbeat:Connect(function()if not running then return end if not targetPlayer or not targetPlayer.Character then running=false return end local newTargetHRP=targetPlayer.Character:FindFirstChild("HumanoidRootPart")local newTargetHumanoid=targetPlayer.Character:FindFirstChild("Humanoid")if not newTargetHRP or not newTargetHumanoid then running=false return end if not myHRP or not humanoid then running=false return end local trailer=truck:FindFirstChild("Body")and truck.Body:FindFirstChild("Trailer")if not trailer then return end local verticalOffset=math.sin(tick()*30)*5 pcall(function()local targetPosition=newTargetHRP.Position+Vector3.new(0,verticalOffset,0)trailer:PivotTo(CFrame.new(targetPosition))end)local dist=(trailer.Position-newTargetHRP.Position).Magnitude if dist<5 and tick()-lastFlingTime>0.4 then lastFlingTime=tick()for _,part in ipairs(targetPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=false end end local fling=Instance.new("BodyVelocity")fling.MaxForce=Vector3.new(math.huge,math.huge,math.huge)fling.Velocity=Vector3.new(math.random(-10,10),50,math.random(-10,10)).Unit*10000000+Vector3.new(0,5000000,0)fling.Parent=newTargetHRP task.delay(0.5,function()fling:Destroy()for _,part in ipairs(targetPlayer.Character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true end end end)end local playerSeated=false for _,seat in ipairs(truck:GetDescendants())do if(seat:IsA("Seat")or seat:IsA("VehicleSeat"))and seat.Name~="VehicleSeat" then if seat.Occupant==newTargetHumanoid then playerSeated=true break end end end if playerSeated or tick()-startTime>10 then running=false if connection then connection:Disconnect()connection=nil end if flingConnection then flingConnection:Disconnect()flingConnection=nil end pcall(function()truck:PivotTo(CFrame.new(Vector3.new(-59599.73,2040070.50,-293391.16)))end)task.wait(0.5)disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)if character then local myHRP=character:FindFirstChild("HumanoidRootPart")if myHRP and savedPosition then pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(savedPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)end end if character then for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true part.Velocity=Vector3.zero part.RotVelocity=Vector3.zero end end end local myHumanoid=character and character:FindFirstChild("Humanoid")if myHumanoid then myHumanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,true)end for _,seat in ipairs(Workspace:GetDescendants())do if seat:IsA("Seat")or seat:IsA("VehicleSeat")then seat.Disabled=false end end pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clothe1s"):FireServer("CharacterSizeUp",1)end)if flingToggle then flingToggle:Set(false)end end end)end local function stopFling()running=false if connection then connection:Disconnect()connection=nil end if flingConnection then flingConnection:Disconnect()flingConnection=nil end if soccerBall then soccerBall.Anchored=originalProperties.Anchored soccerBall.CanCollide=originalProperties.CanCollide soccerBall.CanTouch=originalProperties.CanTouch end if couch and couch:IsA("BasePart")then couch.Anchored=originalProperties.Anchored couch.CanCollide=originalProperties.CanCollide couch.CanTouch=originalProperties.CanTouch end disableCarClient()local args={[1]="DeleteAllVehicles"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Ca1r"):FireServer(unpack(args))end)task.wait(0.2)local character=LocalPlayer.Character if character then for _,part in ipairs(character:GetDescendants())do if part:IsA("BasePart")then part.CanCollide=true part.Velocity=Vector3.zero part.RotVelocity=Vector3.zero end end end local myHumanoid=character and character:FindFirstChild("Humanoid")if myHumanoid then myHumanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,true)end for _,seat in ipairs(Workspace:GetDescendants())do if seat:IsA("Seat")or seat:IsA("VehicleSeat")then seat.Disabled=false end end pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clothe1s"):FireServer("CharacterSizeUp",1)end)if savedPosition then local myHRP=character and character:FindFirstChild("HumanoidRootPart")if myHRP then pcall(function()myHRP.Anchored=true myHRP.CFrame=CFrame.new(savedPosition+Vector3.new(0,5,0))task.wait(0.2)myHRP.Velocity=Vector3.zero myHRP.RotVelocity=Vector3.zero myHRP.Anchored=false if myHumanoid then myHumanoid:ChangeState(Enum.HumanoidStateType.GettingUp)end end)end end end flingToggle=Tab9:AddToggle({Name="Ativar Fling",Description="Ativa ou desativa o fling com o método selecionado",Default=false,Callback=function(state)if state then if isFollowingKill or isFollowingPull or running then flingToggle:Set(false)return end if selectedFlingMethod=="Sofá" then flingWithSofa(selectedPlayer)elseif selectedFlingMethod=="Bola" then flingWithBall(selectedPlayer)elseif selectedFlingMethod=="Bola V2" then flingWithBallV2(selectedPlayer)elseif selectedFlingMethod=="Barco" then flingWithBoat(selectedPlayer)elseif selectedFlingMethod=="Caminhão" then flingWithTruck(selectedPlayer)elseif selectedFlingMethod=="Ônibus" then flingWithBus(selectedPlayer)end else stopFling()end end})local Section=Tab9:AddSection({" fling ALL e desligue os RGB antes de usar"})local Players=game:GetService("Players")local LocalPlayer=Players.LocalPlayer local Workspace=game:GetService("Workspace")local ReplicatedStorage=game:GetService("ReplicatedStorage")local RunService=game:GetService("RunService")local StarterGui=game:GetService("StarterGui")orbitando=false orbitConn=nil allFling=false allConn=nil currentPlayerList=nil currentPlayerIndex=nil lastSwitchTime=nil allFling2=false allConn2=nil soccerBall=nil originalProperties=nil excludedPlayers={}local function getPlayerThumbnail(userId)local thumbType=Enum.ThumbnailType.HeadShot local thumbSize=Enum.ThumbnailSize.Size420x420 local success,result=pcall(function()return Players:GetUserThumbnailAsync(userId,thumbType,thumbSize)end)if success then return result else warn("Erro ao obter thumbnail:" .. tostring(result))return nil end end local function findPlayerByPartialName(partialName)partialName=partialName:lower()for _,plr in ipairs(Players:GetPlayers())do if plr.Name:lower():find(partialName)then return plr end end return nil end local function showNotification(title,description,icon)pcall(function()StarterGui:SetCore("SendNotification",{Title=title,Text=description,Icon=icon or "",Duration=5})end)end Tab9:AddTextBox({Name="adicionar jogador na whaitelist",Description="Digite parte do nome do jogador",PlaceholderText="Ex.:rt para(player123)",Callback=function(Value)if Value=="" then showNotification("Nenhuma Ação","Digite um nome para adicionar um jogador.",nil)return end local player=findPlayerByPartialName(Value)if player then for _,excluded in ipairs(excludedPlayers)do if excluded==player then showNotification("Jogador Já esta na whaitelist","Jogador " .. player.Name .. " já foi adicionado.",getPlayerThumbnail(player.UserId))return end end table.insert(excludedPlayers,player)local thumbnail=getPlayerThumbnail(player.UserId)showNotification("Jogador adicionado","Jogador " .. player.Name .. " foi removido dos flings.",thumbnail)else showNotification("Jogador Não Encontrado","Nenhum jogador encontrado com '" .. Value .. "'.",nil)end end})Tab9:AddButton({"Verificar Excluídos",function()if#excludedPlayers==0 then showNotification("Nenhum na whaitelist","Nenhum jogador está removido dos flings.",nil)return end for i,player in ipairs(excludedPlayers)do local thumbnail=getPlayerThumbnail(player.UserId)showNotification("Jogador adicionado " .. i,"Jogador " .. player.Name .. " está removido dos flings.",thumbnail)task.wait(0.5)end end})Tab9:AddButton({"Remover Excluídos",function()if#excludedPlayers==0 then showNotification("Nenhum removido","Nenhum jogador para remover da whaitelist.",nil)return end excludedPlayers={}showNotification("whaitelists Removidas","Todos os jogadores foram removidos da whaitelist.",nil)end})Tab9:AddButton({"Bola Fling Orbitando",function()if orbitando then return end if not equipBola()then return end task.wait(0.5)local character=LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()local myHRP=character:FindFirstChild("HumanoidRootPart")if not myHRP then return end local workspaceCom=Workspace:FindFirstChild("WorkspaceCom")local soccerBalls=workspaceCom and workspaceCom:FindFirstChild("001_SoccerBalls")soccerBall=soccerBalls and soccerBalls:FindFirstChild("Soccer" .. LocalPlayer.Name)if not soccerBall then return end originalProperties={Anchored=soccerBall.Anchored,CanCollide=soccerBall.CanCollide,CanTouch=soccerBall.CanTouch}soccerBall.Anchored=false soccerBall.CanCollide=true soccerBall.CanTouch=true pcall(function()soccerBall:SetNetworkOwner(nil)end)orbitando=true orbitConn=RunService.Heartbeat:Connect(function()if not orbitando or not soccerBall or not soccerBall.Parent or not myHRP or not myHRP.Parent or not character or not character.Parent then if orbitConn then orbitConn:Disconnect()orbitConn=nil end orbitando=false if soccerBall and originalProperties then soccerBall.Anchored=originalProperties.Anchored soccerBall.CanCollide=originalProperties.CanCollide soccerBall.CanTouch=originalProperties.CanTouch end soccerBall=nil originalProperties=nil return end local t=tick()*10 local radius=3 local offset=Vector3.new(math.cos(t)*radius,-1,math.sin(t)*radius)soccerBall.CFrame=CFrame.new(myHRP.Position+offset)soccerBall.AssemblyLinearVelocity=Vector3.new(9999,9999,9999)end)end})Tab9:AddButton({"Fling Bola ALL V1",function()if allFling then return end if not equipBola()then return end task.wait(0.5)local args={[1]="PlayerWantsToDeleteTool",[2]="SoccerBall"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clea1rTool1s"):FireServer(unpack(args))end)local workspaceCom=Workspace:FindFirstChild("WorkspaceCom")local soccerBalls=workspaceCom and workspaceCom:FindFirstChild("001_SoccerBalls")soccerBall=soccerBalls and soccerBalls:FindFirstChild("Soccer" .. LocalPlayer.Name)if not soccerBall then return end originalProperties={Anchored=soccerBall.Anchored,CanCollide=soccerBall.CanCollide,CanTouch=soccerBall.CanTouch}soccerBall.Anchored=false soccerBall.CanCollide=true soccerBall.CanTouch=true pcall(function()soccerBall:SetNetworkOwner(nil)end)allFling=true local function getShuffledPlayers()local playerList={}for _,plr in ipairs(Players:GetPlayers())do local isExcluded=false for _,excluded in ipairs(excludedPlayers)do if plr==excluded then isExcluded=true break end end if plr~=LocalPlayer and not isExcluded and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart")then table.insert(playerList,plr)end end for i=#playerList,2,-1 do local j=math.random(i)playerList[i],playerList[j]=playerList[j],playerList[i]end return playerList end allConn=RunService.Heartbeat:Connect(function()if not allFling or not soccerBall or not soccerBall.Parent then if allConn then allConn:Disconnect()allConn=nil end allFling=false if soccerBall and originalProperties then soccerBall.Anchored=originalProperties.Anchored soccerBall.CanCollide=originalProperties.CanCollide soccerBall.CanTouch=originalProperties.CanTouch end soccerBall=nil originalProperties=nil currentPlayerList=nil currentPlayerIndex=nil lastSwitchTime=nil return end if not currentPlayerList or#currentPlayerList==0 then currentPlayerList=getShuffledPlayers()currentPlayerIndex=1 lastSwitchTime=tick()end if#currentPlayerList==0 then return end if tick()-lastSwitchTime>=4 then currentPlayerIndex=currentPlayerIndex+1 if currentPlayerIndex>#currentPlayerList then currentPlayerList=getShuffledPlayers()currentPlayerIndex=1 end lastSwitchTime=tick()end local target=currentPlayerList[currentPlayerIndex]if not target or not target.Character then return end local targetChar=target.Character if targetChar and targetChar:FindFirstChild("HumanoidRootPart")and targetChar:FindFirstChild("Humanoid")then local hrp=targetChar.HumanoidRootPart local humanoid=targetChar.Humanoid local velocity=hrp.Velocity local speed=velocity.Magnitude local isJumping=humanoid:GetState()==Enum.HumanoidStateType.Jumping local isMoving=humanoid.MoveDirection.Magnitude>0.05 local offset if isMoving or isJumping then local moveDir=hrp.CFrame.LookVector local extraDist=math.clamp(speed/1.5,6,18)offset=moveDir*extraDist+Vector3.new(0,1,0)else local waveZ=math.sin(tick()*25)*4 local sideX=math.cos(tick()*20)*1.5 offset=Vector3.new(sideX,1,waveZ)end soccerBall.CFrame=CFrame.new(hrp.Position+offset)soccerBall.AssemblyLinearVelocity=Vector3.new(9999,9999,9999)if(soccerBall.Position-hrp.Position).Magnitude<4 then local fling=Instance.new("BodyVelocity")fling.MaxForce=Vector3.new(math.huge,math.huge,math.huge)fling.Velocity=Vector3.new(math.random(-5,5),5,math.random(-5,5)).Unit*500000+Vector3.new(0,250000,0)fling.Parent=hrp task.delay(0.3,function()fling:Destroy()end)end end end)end})Tab9:AddButton({"Fling Bola ALL V2",function()if allFling2 then return end if not equipBola()then return end task.wait(0.5)local args={[1]="PlayerWantsToDeleteTool",[2]="SoccerBall"}pcall(function()ReplicatedStorage:WaitForChild("RE"):WaitForChild("1Clea1rTool1s"):FireServer(unpack(args))end)local workspaceCom=Workspace:FindFirstChild("WorkspaceCom")local soccerBalls=workspaceCom and workspaceCom:FindFirstChild("001_SoccerBalls")soccerBall=soccerBalls and soccerBalls:FindFirstChild("Soccer" .. LocalPlayer.Name)if not soccerBall then return end originalProperties={Anchored=soccerBall.Anchored,CanCollide=soccerBall.CanCollide,CanTouch=soccerBall.CanTouch}soccerBall.Anchored=false soccerBall.CanCollide=true soccerBall.CanTouch=true pcall(function()soccerBall:SetNetworkOwner(nil)end)allFling2=true allConn2=RunService.Heartbeat:Connect(function()if not allFling2 or not soccerBall or not soccerBall.Parent then if allConn2 then allConn2:Disconnect()allConn2=nil end allFling2=false if soccerBall and originalProperties then soccerBall.Anchored=originalProperties.Anchored soccerBall.CanCollide=originalProperties.CanCollide soccerBall.CanTouch=originalProperties.CanTouch end soccerBall=nil originalProperties=nil return end local playerList={}for _,plr in ipairs(Players:GetPlayers())do local isExcluded=false for _,excluded in ipairs(excludedPlayers)do if plr==excluded then isExcluded=true break end end if plr~=LocalPlayer and not isExcluded and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart")then table.insert(playerList,plr)end end for i=#playerList,2,-1 do local j=math.random(i)playerList[i],playerList[j]=playerList[j],playerList[i]end for _,target in ipairs(playerList)do if not allFling2 then break end local targetChar=target.Character if targetChar and targetChar:FindFirstChild("HumanoidRootPart")and targetChar:FindFirstChild("Humanoid")then local hrp=targetChar.HumanoidRootPart local humanoid=targetChar.Humanoid local velocity=hrp.Velocity local speed=velocity.Magnitude local isJumping=humanoid:GetState()==Enum.HumanoidStateType.Jumping local isMoving=humanoid.MoveDirection.Magnitude>0.05 local offset if isMoving or isJumping then local moveDir=hrp.CFrame.LookVector local extraDist=math.clamp(speed/1.5,6,18)offset=moveDir*extraDist+Vector3.new(0,1,0)else local waveZ=math.sin(tick()*25)*4 local sideX=math.cos(tick()*20)*1.5 offset=Vector3.new(sideX,1,waveZ)end soccerBall.CFrame=CFrame.new(hrp.Position+offset)soccerBall.AssemblyLinearVelocity=Vector3.new(9999,9999,9999)if(soccerBall.Position-hrp.Position).Magnitude<4 then local fling=Instance.new("BodyVelocity")fling.MaxForce=Vector3.new(math.huge,math.huge,math.huge)fling.Velocity=Vector3.new(math.random(-5,5),5,math.random(-5,5)).Unit*1000000+Vector3.new(0,1000000,0)fling.Parent=hrp task.delay(0.3,function()fling:Destroy()end)end end task.wait(0.1)end end)end})Tab9:AddButton({"Parar Tudo",function()orbitando=false if orbitConn then orbitConn:Disconnect()orbitConn=nil end allFling=false if allConn then allConn:Disconnect()allConn=nil end currentPlayerList=nil currentPlayerIndex=nil lastSwitchTime=nil allFling2=false if allConn2 then allConn2:Disconnect()allConn2=nil end if soccerBall and originalProperties then soccerBall.Anchored=originalProperties.Anchored soccerBall.CanCollide=originalProperties.CanCollide soccerBall.CanTouch=originalProperties.CanTouch end soccerBall=nil originalProperties=nil showNotification("Tudo Parado","Todas as funções foram desativadas.",nil)end})Tab11:AddButton({Name="FE Jerk Off Hub Matrix",Description="Universal",Callback=function()loadstring(game:HttpGet("https://raw.githubusercontent.com/ExploitFin/AquaMatrix/refs/heads/AquaMatrix/AquaMatrix"))()end})Tab11:AddButton({Name="FE HUGG",Description="Universal",Callback=function()loadstring(game:HttpGet("https://raw.githubusercontent.com/JSFKGBASDJKHIOAFHDGHIUODSGBJKLFGDKSB/fe/refs/heads/main/FEHUGG"))()end})Tab11:AddButton({Name="Buraco Negro",Description="Universal",Callback=function()loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/main/BringFlingPlayers"))("More Scripts:t.me/arceusxscripts")end})local Section=Tab11:AddSection({"esse system broochk e voidProtection"})Tab11:AddButton({Name="System Broochk",Description="Universal",Callback=function()loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/script"))()end})Tab11:AddButton({Name="Roships",Description="Universal",Callback=function()loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-rochips-universal-18294"))()end})Tab11:AddButton({Name="Sander X",Description="Somente para Brookhaven",Callback=function()loadstring(game:HttpGet("https://raw.githubusercontent.com/kigredns/SanderXV4.2.2/refs/heads/main/New.lua"))()end})Tab11:AddButton({Name="Reverso",Description="Universal",Callback=function()loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/L"))()end})Tab11:AddButton({Name="RD4",Description="Somente para Brookhaven",Callback=function()loadstring(game:HttpGet("https://raw.githubusercontent.com/M1ZZ001/BrookhavenR4D/main/Brookhaven%20R4D%20Script"))()end})Tab4:AddParagraph({Title="Painel Adm",Content="O painel será adicionado sem breve Aguarde..."})