Need help with a custom character

Hello I have this script that turns the player into a dinosaur model. Well it does that but for some reason the dinosaur doesn’t move when pressing forward and I think the issue here is that the humanoid isn’t working of the model but I don’t see any problems. This can also be said that humanoid shows the display name on his head but I have no idea why movement isn’t working.

Here are some pictures of the model. If you know what’s wrong with it then feel free to comment.


here’s the script I used
‘’'lua
game.Players.PlayerAdded:Connect(function(player)
wait(10)
local model = game.ReplicatedStorage.Acrocanthosaurus:Clone()
local char = player.Character
model.Name = “StarterCharacter”
model.Parent = game.StarterPlayer
model.Humanoid.HipHeight = 2
player:LoadCharacter()

end)
‘’’

Try to set the humanoid root part network owner to the player.

I don’t understand. Can you tell me how to do that? Humanoid Root Part Network Owner? Never heard of that.

game.Players.PlayerAdded:Connect(function(player)
wait(10)
local model = game.ReplicatedStorage.Acrocanthosaurus:Clone()
local char = player.Character
model.Name = “StarterCharacter”
model.Parent = game.StarterPlayer

player:LoadCharacter()
task.wait(1)
player.Character.Humanoid.HipHeight = 2
player.Character.HumanoidRootPart:SetNetworkOwner(player)

end)

It doesn’t work. It should move forward when held w but it doesn’t.

1 Like

Are you missing the ‘LeftHand’ and ‘RightHand’ limbs?

Are any parts of the model Anchored?

nope chrsssssssssssssssssssssssss

i did lefthand and right hand now and it still doesnt work as you can see
image