Problems with StarterCharacter

For some reason my StarterCharacter model won’t stick to the player.

Here is the issue in video:

Anyone know why this happens?

1 Like

You haven’t really given us much information to work with here :thinking: Like do you have a script to show us? And if so, could you please provide it?

Also have you looked at this tutorial?

https://education.roblox.com/en-us/resources/education/arcade/customCharacter

It seems that the Model doesn’t get moved into ServerStorage now that I see it.

The model is also animated, including an idle animation, and I’m not sure if that can interfere with the custom character.

Here is the script for the animation:

local humanoid = character:WaitForChild("Humanoid")

local idleAnim = script:WaitForChild("Idle")
local idleAnimTrack = humanoid.Animator:LoadAnimation(idleAnim)

humanoid.Running:Connect(function(speed)
	if speed > 0 then
		if not idleAnimTrack.IsPlaying then
			idleAnimTrack:Play()
		end
	else
		if idleAnimTrack.IsPlaying then
			idleAnimTrack:Stop()
		end
	end
end)

can you show the model properties and children?