local player = game.Players.LocalPlayer local rootPart = player.Character and player.Character:FindFirstChild("HumanoidRootPart") local entryPart = workspace.ObstacleCourse.ObstacleEntries.Part local endPart = workspace.ObstacleCourse.ObstacleEnd.Part while true do if rootPart and entryPart and endPart then firetouchinterest(rootPart, entryPart, 0) firetouchinterest(rootPart, endPart, 0) task.wait(0.1) firetouchinterest(rootPart, entryPart, 1) firetouchinterest(rootPart, endPart, 1) end task.wait(0.01) end