game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) character.Head.Transparency = 1 character:FindFistChild("Right Arm")Tranparency = 1 end) end)
That didn't seem to work, am I doing something wrong?
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) if character ~= nil then character.Head.Transparency = 1 character:FindFistChild("Right Arm").Tranparency = 1 end end) end)
Well you forgot the dot