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

How Do I Have All Characters Spawn In With A Certain Outfit? [closed]

Asked by 8 years ago

How exactly would i be able to have all players spawn in with that same hat,face,shirt,and pants? If you know the answer please do tell me and if you can please give me the script that contains all from above.Thank you for reading :)

Closed as Too Broad by Goulstem and TheHospitalDev

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?

1 answer

Log in to vote
0
Answered by 8 years ago

this isn't a request site ... but put this into a script and place it in workspace

01game.Workspace.ChildAdded:connect(function(plr)
02local name = plr.Name
03local playerinplayers = game.Players:FindFirstChild(plr.Name)
04if playerinplayers ~= nil then
05playerinplayers.CanLoadCharacterAppearance = false
06plr.Head.face.Texture = "" -- put the face texture here
07local bodycolors = Instance.new("BodyColors", plr)
08bodycolors.RightArmColor = BrickColor.new("")
09bodycolors.LeftArmColor = BrickColor.new("")
10bodycolors.LeftLegColor = BrickColor.new("")
11bodycolors.RightLegColor = BrickColor.new("")
12bodycolors.TorsoColor = BrickColor.new("")
13bodycolors.HeadColor = BrickColor.new("")
14-- put the colors you want in those
15 
View all 42 lines...

you will need to figure out how to remove your old hat// accessory yourself, but this should work just fine for you with a little work.

Ad