print("Script running") local hrp = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") print(hrp and "hrp exists") for a,b in pairs(game.Workspace:GetChildren()) do if b:IsA("Model") then for i,v in pairs(b:GetChildren()) do if v.Name == "winpad" then print("winpad exists") local cf=hrp.CFrame hrp.CFrame = v.CFrame wait(0.001) hrp.CFrame=cf print("done") end end end end