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

How do i make a custom character loader?

Asked by 6 years ago

Hey i wanna make a custom character loader, But i don't know how. Can you please help me how to make them spawn as a custom character?

0
You have to start off by changing the character's shirt and pants ID and make a clickable GUI to switch clothes. hellmatic 1523 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

Do something like this:

game:GetService("Players").PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function(char)
        char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=227457580"
        char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=227458244"
    -- You get the idea. :P
    end)
end)
Ad

Answer this question