Use the constructor CFrame.new (Vector3 position, Vector3 point) It makes an object point toward a given point which can be the nearest player. For example:
1 | local pos 1 = game.Players.LocalPlayer.Character.Head |
2 | local pos 2 = game.Workspace.Part 1 |
4 | pos 1. CFrame = CFrame.new(pos 1. Position,pos 2. Position) |
or --//game.Players.LocalPlayer.Character.Head.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Head, game.Workspace.Part1.Position)
If you want a working script I will make it.
01 | local part = Instance.new( "Part" ,workspace); |
03 | part.CFrame = CFrame.new( 0 , 10 , 0 ) |
06 | local function getClosest(max) |
07 | for i,v in pairs (workspace:GetChildren()) do |
08 | if v:IsA( "BasePart" ) and v:FindFirstChild( "Humanoid" ) and v:FindFirstChild( "Humanoid" ).Parent:FindFirstChild( "Head" ) then |
09 | dis = (part.Position - v.Position).magnitude |
20 | part.CFrame = CFrame.new(part.Position,getClosest( 60 ).Position) |