How to create character with scripts?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? I want to spawn a character. Like Instance.new(“Character”)

  2. What is the issue? idk how to do this

  3. What solutions have you tried so far? Tried looking for the solution but no

I want to do like:
Instance.new(“Torso”)
Instance.new(“Head”)
Instance.new(“Left Arm”)
Instance.new(“Right Arm”)
Instance.new(“Left Leg”)
Instance.new(“Right Leg”)

1 Like

How about using :Clone() on a blank character somewhere in ReplicatedStorage?

What are you attempting to achieve? Creating a new player model? Making an NPC?

You can use this all this stuff are mesh parts btw you can do instance.new("mesh part) but you can’t do instance.new(“character”) to spawn NPCs you need to clone those models from repli storage

One time I was looking around the Players’ service methods and learned we could do this:

local Players = game.GetService("Players")
local Model = Players:CreateHumanoidModelFromUserId(Id)
Model.Parent = workspace

You can also do it with a humanoid description

Everything works guys! I cant just solution everything :smiley:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.