Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do you set a mesh as a starter character? [closed]

Asked by 4 years ago

I tried making a mesh as a starter character and it didn't work im tired and need advice

0
This site is not a request site, please it attempt first! Also, i don't think this has any relation to roblox LUA scripting BashGuy10 384 — 4y

Closed as Too Broad by User#5423

This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.

Why was this question closed?

2 answers

Log in to vote
0
Answered by
N43FGXL 169
4 years ago

You go to Game Settings > Avatar. Then you can select some clothes.

Or if you want a specific mesh you can also do something like this:

game.Players.PlayerAdded(function(plr)
    local mesh = instance.new("MeshPart")
    mesh.Parent = plr
end)

Please note that this isn't a request site as BashGuy10 stated, but this script isn't perfect.

You may do this to find the player in the Workspace:

game.Players.PlayerAdded(function(plr)
    local playerinworkspace = game.Workspace:FindFirstChild(plr)
    local mesh = instance.new("MeshPart")
    mesh.Parent = playerinworkspace
end)

My scripts may not be perfect but this is something for inspiration/thought to do.

Ad
Log in to vote
0
Answered by 4 years ago

Not related to scripting but Ill try help anyway.

Name is "StarterCharacter" Then move it into StarterPlayer