My rig for a upcoming game

Anyone know how to make this into a starter character?

1 Like

Does this rig have all the necessary body parts, and is named correctly?
Does it have a Humanoid, and HumanoidRootPart?

If it has all humanoid characteristics, name it StarterCharacter and put it in StarterPlayer If they have limbs like leftarm rightarm then you should be good. Make sure to add a humanoid also.

When I tried this, it doesn’t seem to let me walk. I did make a script as a solution.

Make a new script in ServerScriptService, place the rig model inside the script, and put the following code into the script:

local model = script:FindFirstChildOfClass("Model")
if not model:FindFirstChild("HAS_MORPH") then
	local val = Instance.new("BoolValue")
	val.Name="HAS_MORPH"
	val.Parent=model
end

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		if not char:FindFirstChild("HAS_MORPH") then
			wait()
			local cframe = char.HumanoidRootPart.CFrame
			local morph = model:Clone()
			morph.Name = plr.Name
			plr.Character = morph
			morph.HumanoidRootPart.CFrame = cframe
			morph.Parent=workspace
		end
	end)	
end)

Make sure your rig has a HumanoidRootPart

Okay, I will try to do these things.

it has all parts. Humanoid, and root part.

Have you tried either @XxScottieBoixX or my solution?

Yes, XXScottie’s worked but didn’t let me move.

I also had that issue. Try making a Script inside of ServerScriptService, then putting in the code I sent you.

Make sure to place the rig model inside of the script, and add the value called “HAS_MORPH”

It should look like this:

Okay. I will try that. [characters]

Do I use a object value? [Characters]

I used a BoolValue, but the value you use does not matter. Only the name matters.

it still doesn’t work.[characters]

Are there any errors? Please also show a screenshot of the explorer with your rig inside the script.

What happens when you test this?

I spawn as my normal character.

Hmm. Can you confirm that no errors occur in the console?

it says 2 errors.[five characters]