I want to do a bull morph

  1. What do i want to achieve? I want to do a bull morph (in a level)

  2. What is the issue? The scipt that i do (with a tutorial) gives me this error
    image
    (Line 6)

Here is the script.

game.Workspace.Spain.Disk.ProximityPrompt.Triggered:Connect(function(player)
	local oldchar = player.Character
	local newchar = game.Workspace.bull:Clone()
	
	newchar.HumanoidRootPart.Anchored = false
	newchar:SetPrimaryPartCFrame(oldchar.PrimaryPart.CFrame)
	
	player.Character = newchar
	newchar.Parent = workspace
end)

image
and this is the bull model.

All answers are welcome : D

The “bull” model doesn’t contain a Primary Part set in, so you need to click on the property and then click the HumanoidRootPart

1 Like

uh right sry i totally forgot about it TYSM