Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.
Or you can use this one that is easy to understand the code
wait(3)
function PlayerEntered(player)
while player.Character:FindFirstChild("Shirt") == nil do wait() end
local Arm1 = player.Character:FindFirstChild("Left Arm")
local Arm2 = player.Character:FindFirstChild("Right Arm")
local LArm = Arm1:clone()
local RArm = Arm2:clone()
LArm.formFactor = 3 --Custom, new feature added as of late 2010
RArm.formFactor = 3
LArm.Size = Vector3.new(1, 2, 1)
RArm.Size = Vector3.new(1, 2, 1)
Arm1.Transparency = 0.5 --shhh, trust me.
Arm2.Transparency = 0.5
local shirt = player.Character:FindFirstChild("Shirt")
local pants = player.Character:FindFirstChild("Pants")
local s = shirt:clone()
local p = pants:clone()
local m = Instance.new("Model")
m.Name = player.Name.."'s Body Model"
local Arm1Weld = Instance.new("Weld")
Arm1Weld.Part0 = Arm1
Arm1Weld.Part1 = LArm
local Arm2Weld = Instance.new("Weld")
Arm2Weld.Part0 = Arm2
Arm2Weld.Part1 = RArm
local human = player.Character:FindFirstChild("Humanoid"):Clone()
if m.Parent ~= game.Workspace then
m.Parent = game.Workspace
human.Parent = m
s.Parent = m
p.Parent = m
Arm1Weld.Parent = Arm1
Arm2Weld.Parent = Arm2
LArm.Parent = m
RArm.Parent = m
end
human.Died:connect(function() m:Remove() end)
player.Changed:connect(function(prop) if prop:lower() == "character" then PlayerEntered(player) end end)
end
game.Players.PlayerAdded:connect(PlayerEntered)
PlayerEntered(game.Players.LocalPlayer)
Just don't edit anything else and you are good to go mate hopefully i helped you.