Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I make a brick facing the player all the time?

Asked by 9 years ago

For example, a game presented a big head with eyes, where ever the player move, the eyes will stair at the player. For like a security camera, it moves as the player moves.

1 answer

Log in to vote
0
Answered by 9 years ago

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:

1local pos1= game.Players.LocalPlayer.Character.Head
2local pos2 = game.Workspace.Part1
3 
4pos1.CFrame = CFrame.new(pos1.Position,pos2.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.

01local part = Instance.new("Part",workspace); -- part for test
02part.Anchored = true
03part.CFrame = CFrame.new(0,10,0) -- sets part CFrame
04 
05 
06local function getClosest(max) -- checks closest Humanoid and assumes it has a head.
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
10            if dis <= max then
11                return v
12            end
13        end
14 
15    end
View all 21 lines...
Ad

Answer this question