Anyone know how I can do a thing where whenever a npc killers kills a player it then looks like that player?
Hello,
Assuming you already have some sort of AI just put this in your model/npc and it should work
local PlayersService = game:GetService("Players") script.Parent:FindFirstChild("Humanoid").Touched:Connect(function(hit) if hit and hit.Parent:FindFirstChild("Humanoid") and PlayersService:GetPlayerFromCharacter(hit.Parent) then local player = PlayersService:GetPlayerFromCharacter(hit.Parent) local userId = player.UserId local description = PlayersService:GetHumanoidDescriptionFromUserId(userId) script.Parent:FindFirstChild("Humanoid"):ApplyDescription(description) end end)