local player = game.Players.LocalPlayer while task.wait(0.5) do local character = player.Character local pastaStuds = workspace:FindFirstChild("Studs") if character and character:FindFirstChild("HumanoidRootPart") and pastaStuds then local root = character.HumanoidRootPart for _, stud in ipairs(pastaStuds:GetChildren()) do if stud:IsA("BasePart") then -- Essa função especial força o jogo a registrar o toque na mesma hora! firetouchinterest(root, stud, 0) -- O 0 avisa que você encostou no bloco firetouchinterest(root, stud, 1) -- O 1 avisa que você parou de encostar end end end end