How would I make a model face a player? I made a script that moves the model to the humanoid root part and moves back a little so it's out of the players face. I now need the model to also face the player as well. Thank you for your time. - VSP
Give your model a PrimaryPart, then
local runService = game:GetService("RunService") while true do model:SetPrimaryPartCFrame(CFrame.new( model.PrimaryPart.Position, -- position player.Character.HumanoidRootPart.Position -- look at )) runService.Stepped:Wait() end
This makes the model look at the player's HumanoidRootPart