local player = game:GetService("Players").LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart") local function wreston(part) for _,ti in ipairs(part:GetChildren()) do if ti:IsA("TouchTransmitter") then firetouchinterest(hrp, part, 0) task.wait(0.1) firetouchinterest(hrp, part, 1) end end end for _,p in ipairs(workspace.Brainrots:GetChildren()) do if p:IsA("BasePart") then wreston(p) end end workspace.Brainrots.ChildAdded:Connect(function(p) if p:IsA("BasePart") then wreston(p) end end)