Well im triying to make a npc teleport into serverstorage if he touches a wall but this doesnt work
game.Workspace.RunTO.Touched:Connect(function(hit)
if hit:FindFirstChild("RakeHumanoid") then
game.Workspace.Npc.Parent = game.ServerStorage
end
end)