I got a error message saying Shirt is not a valid member of Model
.
I knew that the Instance were valid but lua just returns not valid.
player = game.Players.LocalPlayer Model = Instance.new("Model",game.Workspace) Humanoid = Instance.new("Humanoid",Model) Shirt = player.Character.Shirt:Clone() Shirt.Parent = Model BodyColors = player.Character["Body Colors"]:Clone() BodyColors.Parent = Model
I think lua is been silly.
Lua is never silly you Did something wrong.
player = game.Players.LocalPlayer Model = Instance.new("Model", game.Workspace) Humanoid = Instance.new("Humanoid", game.Workspace.Model) Shirt=Instance.new("Shirt", game.Workspace.Model) Shirt.ShirtTemplate = 0 -- Add the shirt ID Pants=Instance.new("Pants", game.Workspace.Model) Pants.PantsTemplate = 0 -- Add the Pants ID P = Instance.new("Part", game.Workspace.Model) Model.Name = "Name it here"
here is a Corrected version of your script.