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()